/*
Category Detail custom styles
*/

/* =====================
   CATEGORY PAGE STYLES
   ===================== */

/* === Header de categoría === */
.archive .page-header {
    color: #fff;
    height: 25vh;
    min-height: 180px;
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
}
@media screen and (min-width: 768px) {
    .archive .page-header {
        height: 50vh;
        min-height: 320px;
    }
}
.archive .page-header .page-title {
    font-family: 'IBM Plex Sans', 'Jost', sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
    text-transform: uppercase;
    margin: 0 auto 0rem auto;
    padding: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}
.archive .page-header .page-title:after {
    content: "";
    width: 120px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* === Container general === */
.category-detail-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 48px 20px 40px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* === Grid de posts === */
.category-detail-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
  .category-detail-posts {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === Card de post === */
.category-detail-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.category-detail-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.category-detail-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.category-detail-card-content {
    padding: 24px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.category-detail-card-title {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    font-family: 'Jost', sans-serif;
}
.category-detail-card-title a {
    color: #222;
    text-decoration: none;
}
.category-detail-card-excerpt {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
    flex: 1;
}

/* === Mensajes y paginación === */
.category-detail-no-posts {
    grid-column: 1/-1;
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    padding: 40px 0;
}
.category-detail-pagination {
    margin: 48px 0 0 0;
    text-align: center;
}
.category-detail-error {
    color: #c00;
    text-align: center;
    margin: 60px 0;
    font-size: 1.3rem;
}
