/* Blog / News / Release Notes Styles */
.posts-container {
    max-width: 1600px;
    margin: 40px auto;
    padding: 20px;
}

.page-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.page-title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #dc3545;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(220, 53, 69, 0.15);
    border-color: #555;
}

.post-image-link {
    flex-shrink: 0;
    width: 280px;
    position: relative;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: #dc3545;
}

.post-title {
    font-family: 'Pirata One', cursive;
    font-size: 2rem;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.post-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.post-title a:hover {
    color: #dc3545;
}

.post-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Empty State */
.empty-posts-state {
    text-align: center;
    padding: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
}

.empty-posts-state i {
    font-size: 4rem;
    color: #333;
    margin-bottom: 20px;
}

.empty-posts-state h3 {
    color: #fff;
    margin-bottom: 10px;
}

.empty-posts-state p {
    color: #888;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-text {
    display: flex;
    align-items: center;
    color: #888;
    padding: 0 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .post-card {
        flex-direction: column;
    }

    .post-image-link {
        width: 100%;
        height: 200px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .post-title {
        font-size: 1.8rem;
    }
}