/* =========================================================
   FASHIONSTORE NEWS
   Ivory + Champagne Gold + Charcoal + Beige
   ========================================================= */

.fashionstore-news-page {
    background: #f5efe5;
    color: #24211e;
    padding-bottom: 0;
}

/* =========================================================
   NEWS HERO
   ========================================================= */

.fashionstore-news-page .news-hero {
    padding: 100px 20px 75px;
    text-align: center;
    background: #eee6da;
    border-bottom: 1px solid #ddd2c3;
}

.fashionstore-news-page .news-hero .news-kicker {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a88a62;
}

.fashionstore-news-page .news-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1px;
    color: #24211e;
}

.fashionstore-news-page .news-hero p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #6e675f;
}


/* =========================================================
   NEWS SECTION
   ========================================================= */

.fashionstore-news-page .news-section {
    padding: 90px 20px 100px;
    background: #f5efe5;
}

.fashionstore-news-page .container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.fashionstore-news-page .news-section-header {
    margin-bottom: 55px;
    text-align: center;
}

.fashionstore-news-page .news-section-header span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a88a62;
}

.fashionstore-news-page .news-section-header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #24211e;
}


/* =========================================================
   NEWS GRID
   ========================================================= */

.fashionstore-news-page .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}


/* =========================================================
   NEWS CARD
   ========================================================= */

.fashionstore-news-page .news-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ddd4c8;

    transition:
        transform .45s ease,
        background-color .45s ease,
        color .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/* =========================================================
   NEWS IMAGE
   ========================================================= */

.fashionstore-news-page .news-card .news-image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e8dfd2;
}

.fashionstore-news-page .news-card .news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .45s ease;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.fashionstore-news-page .news-card-content {
    padding: 30px 30px 32px;

    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;

    transition:
        background-color .45s ease,
        color .45s ease;
}

.fashionstore-news-page .news-card-date {
    display: block;
    margin-bottom: 13px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #a88a62;

    transition: color .4s ease;
}

.fashionstore-news-page .news-card h3 {
    margin: 0 0 24px;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;

    min-height: 89px;
}


/* =========================================================
   READ MORE
   ========================================================= */

.fashionstore-news-page .news-read-more {
    display: inline-block;

    padding: 12px 22px;

    border: 1px solid #24211e;

    color: #24211e;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color .35s ease,
        color .35s ease,
        border-color .35s ease;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.fashionstore-news-page .news-card:hover {
    background: #292522;
    color: #ffffff;

    transform: translateY(-10px);

    border-color: #292522;

    box-shadow:
        0 24px 50px rgba(45, 35, 25, .18);
}


/* =========================================================
   HOVER - TEXT COLOR
   ========================================================= */

/* Semua teks di dalam kartu menjadi ivory saat hover */
.fashionstore-news-page .news-card:hover .news-card-content,
.fashionstore-news-page .news-card:hover .news-card-content h3,
.fashionstore-news-page .news-card:hover .news-card-content h3 a {
    color: #f7f1e8;
}


/* Image zoom */

.fashionstore-news-page .news-card:hover .news-image img {
    transform: scale(1.07);
}


/* Image overlay */

.fashionstore-news-page .news-card:hover .news-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(35, 29, 25, .08);

    pointer-events: none;
}


/* Date */

.fashionstore-news-page .news-card:hover .news-card-date {
    color: #c9aa7a;
}


/* Read More */

.fashionstore-news-page .news-card:hover .news-read-more {
    border-color: #c9aa7a;
    color: #c9aa7a;
}


/* Read More - hover */

.fashionstore-news-page .news-card:hover .news-read-more:hover {
    background: #c9aa7a;
    border-color: #c9aa7a;
    color: #24211e;
}
/* =========================================================
   EMPTY STATE
   ========================================================= */

.fashionstore-news-page .news-empty {
    padding: 60px;

    text-align: center;

    background: #ffffff;
    border: 1px solid #ddd4c8;

    color: #6e675f;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .fashionstore-news-page .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fashionstore-news-page .news-section {
        padding: 70px 20px 80px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .fashionstore-news-page .news-hero {
        padding: 70px 20px 55px;
    }

    .fashionstore-news-page .news-hero h1 {
        font-size: 40px;
    }

    .fashionstore-news-page .news-hero p {
        font-size: 14px;
    }

    .fashionstore-news-page .news-section {
        padding: 60px 16px 70px;
    }

    .fashionstore-news-page .news-section-header {
        margin-bottom: 35px;
    }

    .fashionstore-news-page .news-section-header h2 {
        font-size: 28px;
    }

    .fashionstore-news-page .news-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fashionstore-news-page .news-card-content {
        padding: 22px;
    }

    .fashionstore-news-page .news-card h3 {
        font-size: 21px;
    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .fashionstore-news-page .news-card,
    .fashionstore-news-page .news-card img,
    .fashionstore-news-page .news-read-more {
        transition: none;
    }

}