.awb-cat-section {
    width: 100%;
    margin: 0 auto;
}

.awb-cat-header {
    text-align: center;
    margin-bottom: 48px;
}

.awb-cat-title {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--awb-text, #1C1C1C);
    margin: 0 0 16px 0;
}

.awb-cat-subtitle {
    font-family: var(--awb-body-font, 'DM Sans'), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #756E72;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.awb-cat-grid {
    display: grid;
    max-width: 1280px;
    margin: 0 auto;
}

.awb-cat-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.awb-cat-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.awb-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.awb-cat-card:hover .awb-cat-img {
    transform: scale(1.05);
}

.awb-cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
    z-index: 1;
}

.awb-cat-label-wrap {
    display: block;
    padding: 16px 0 0;
}

.awb-cat-label {
    display: block;
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--awb-text, #1C1C1C);
    text-align: center;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .awb-cat-label {
        font-size: 17px;
        padding-top: 12px;
    }
}

@media screen and (max-width: 480px) {
    .awb-cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .awb-cat-label {
        font-size: 14px;
        padding-top: 8px;
    }
}
