/* Category Page Styles */
.hero-landing-mini {
    background: linear-gradient(135deg, #b89b72 0%, #866651 100%);
    padding: 20px;
}

.hero-card-mini {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.mini-logo {
    height: 50px;
    width: auto;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: #094792;
    margin: 0;
}

/* Category Section */
.category-section {
    background-color: #ffffff;
    padding: 40px 20px;
    min-height: 60vh;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.post-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

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

.page-current {
    background: #094792;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.page-link,
.page-next {
    background: #f5f5f5;
    color: #000000;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.page-link:hover,
.page-next:hover {
    background: #e0e0e0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state h2 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.search-box button {
    padding: 12px 25px;
    background: #094792;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #073670;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 22px;
    }

    .post-title {
        font-size: 18px;
    }

    .mini-logo {
        height: 40px;
    }

    .site-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-link {
        flex-direction: column;
        gap: 10px;
    }

    .category-section {
        padding: 30px 15px;
    }

    .post-card {
        padding: 15px;
    }

    .search-box {
        flex-direction: column;
    }
}