/* Category landing pages — stacked hero sections */

/* Override main padding so sections go edge-to-edge */
main {
    padding: 0 !important;
    background: #f4f0eb !important;
}

.cat-page {
    width: 100%;
}

.cat-section {
    width: 100%;
    padding: 80px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.cat-section--light {
    background: #ffffff;
}

.cat-section--warm {
    background: #f9f5f0;
}

.cat-section--dark {
    background: #2c2421;
    color: #f0ebe4;
}

.cat-inner {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

/* Flip: image on left, text on right */
.cat-section--flip .cat-inner {
    flex-direction: row-reverse;
}

.cat-media {
    flex: 0 0 320px;
    text-align: center;
}

.cat-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.cat-content {
    flex: 1;
}

.cat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a85c32;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.cat-section--dark .cat-label {
    color: #d98e4a;
}

.cat-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c2421;
    margin: 0 0 6px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.cat-section--dark .cat-content h2 {
    color: #f0ebe4;
}

.cat-subtitle {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 20px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.cat-section--dark .cat-subtitle {
    color: #c0b8b0;
}

.cat-date {
    font-size: 16px;
    color: #999;
    font-family: Georgia, serif;
    font-style: italic;
    margin: -14px 0 20px;
}

.cat-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.cat-section--dark .cat-content p {
    color: #c8bfb6;
}

.cat-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #a85c32;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s ease;
    margin-bottom: 32px;
}

.cat-btn:hover {
    background: #2c2421;
    color: #fff;
    text-decoration: none;
}

.cat-section--dark .cat-btn {
    background: #d98e4a;
    color: #fff;
}

.cat-section--dark .cat-btn:hover {
    background: #fff;
    color: #2c2421;
}

.cat-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e8e0d8;
    padding-top: 20px;
}

.cat-sublist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe4;
    font-size: 15px;
    color: #555;
    font-family: Arial, sans-serif;
}

.cat-sublist li a {
    color: #a85c32;
    text-decoration: none;
    font-weight: 600;
}

.cat-sublist li a:hover {
    text-decoration: underline;
}

.cat-soon {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    border: 1px solid #ddd;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

@media (max-width: 720px) {
    .cat-section {
        padding: 48px 20px;
    }

    .cat-inner,
    .cat-section--flip .cat-inner {
        flex-direction: column;
        gap: 32px;
    }

    .cat-media {
        flex: none;
        width: 100%;
        max-width: 280px;
    }

    .cat-content h2 {
        font-size: 28px;
    }
}
