/* =========================================
   FASHION HERO — PREMIUM DESIGN
========================================= */

.fashion-home {
    background: #0a0a0a;
    color: #fff;
}

.fashion-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 5%;
    box-sizing: border-box;
}

.fashion-logo {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.fashion-nav {
    display: flex;
    gap: 35px;
}

.fashion-nav a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.fashion-nav a:hover {
    opacity: 0.55;
}

.fashion-menu {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.fashion-menu span {
    width: 17px;
    height: 1px;
    background: #fff;
}

.fashion-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=2200&q=90");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.32) 50%,
            rgba(0,0,0,0.15) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.75) 0%,
            transparent 55%
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    padding: 0 5% 110px;
}

.hero-category {
    margin: 0 0 22px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(60px, 9vw, 145px);
    line-height: 0.85;
    font-weight: 500;
    letter-spacing: -6px;
}

.hero-content h1 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero-description {
    max-width: 440px;
    margin: 35px 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,0.65);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.35s ease;
}

.hero-button span {
    font-size: 18px;
}

.hero-button:hover {
    background: #fff;
    color: #000;
}

.hero-bottom {
    position: absolute;
    z-index: 5;
    bottom: 30px;
    left: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 9px;
    letter-spacing: 3px;
}

.hero-line {
    height: 1px;
    flex: 1;
    background: rgba(255,255,255,0.4);
}

/* Mobile */

@media (max-width: 768px) {

    .fashion-header {
        padding: 22px 6%;
    }

    .fashion-nav {
        display: none;
    }

    .fashion-hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 6% 100px;
    }

    .hero-content h1 {
        font-size: clamp(55px, 17vw, 90px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 330px;
    }

    .hero-bottom {
        left: 6%;
        right: 6%;
    }
}
/* =========================================
   HERO POLISH
========================================= */

.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.35);
}

.hero-content h1 em {
    color: #ffffff;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-category {
    color: rgba(255, 255, 255, 0.9);
}

.hero-button {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.hero-button:hover {
    background: #ffffff;
    color: #000000;
}
/* =========================================
   HERO ENTRANCE ANIMATIONS
========================================= */

.fashion-header {
    animation: headerReveal 1s ease 0.2s both;
}

.hero-image {
    animation: heroZoom 2s ease-out both;
}

.hero-category {
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-content h1 {
    animation: fadeUp 1s ease 0.7s both;
}

.hero-description {
    animation: fadeUp 0.9s ease 0.9s both;
}

.hero-button {
    animation: fadeUp 0.9s ease 1.1s both;
}

.hero-bottom {
    animation: fadeUp 0.8s ease 1.3s both;
}

@keyframes heroZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.02);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   FEATURED STORIES
========================================= */

.featured-stories {
    background: #f4f2ee;
    color: #111;
    padding: 130px 5%;
}

.featured-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.section-label {
    display: block;
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #777;
}

.featured-heading h2 {
    margin: 0;
    font-size: clamp(45px, 6vw, 90px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -4px;
}

.featured-heading h2 em {
    font-family: Georgia, serif;
}

.view-all {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #111;
    padding-bottom: 8px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    gap: 50px;
}

.featured-main {
    margin: 0;
}

.story-image {
    overflow: hidden;
    aspect-ratio: 1.15 / 1;
}

.story-image img,
.small-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.featured-main:hover .story-image img,
.small-story:hover .small-story-image img {
    transform: scale(1.06);
}

.story-info {
    padding-top: 25px;
}

.story-info span,
.small-story-info span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #777;
}

.story-info h3 {
    margin: 14px 0;
    font-size: clamp(32px, 4vw, 58px);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -2px;
}

.story-info p {
    max-width: 470px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-info strong,
.small-story-info strong {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.small-story-image {
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
}

.small-story-info {
    padding-top: 18px;
}

.small-story-info h3 {
    margin: 10px 0 15px;
    font-size: clamp(25px, 2.5vw, 38px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1px;
}

/* Mobile */

@media (max-width: 768px) {

    .featured-stories {
        padding: 90px 6%;
    }

    .featured-heading {
        display: block;
        margin-bottom: 45px;
    }

    .featured-heading h2 {
        letter-spacing: -2px;
    }

    .view-all {
        display: inline-block;
        margin-top: 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .featured-side {
        gap: 50px;
    }
}
/* FEATURED STORIES FORCE FIX */

section.featured-stories {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #f4f2ee !important;
    color: #111 !important;
    padding: 130px 5% !important;
}

section.featured-stories .featured-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr) !important;
    gap: 50px !important;
}

section.featured-stories .featured-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 60px !important;
}

section.featured-stories img {
    display: block !important;
    width: 100% !important;
}
/* =========================================
   FEATURED STORIES MOTION
========================================= */

.featured-stories .featured-heading {
    animation: featuredReveal 0.9s ease both;
}

.featured-stories .featured-main {
    animation: featuredReveal 1s ease 0.15s both;
}

.featured-stories .small-story {
    animation: featuredReveal 1s ease 0.3s both;
}

.featured-stories .small-story:nth-child(2) {
    animation-delay: 0.45s;
}

@keyframes featuredReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   LATEST STORIES
========================================= */

.latest-stories {
    background: #0b0b0b;
    color: #fff;
    padding: 140px 5%;
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 75px;
}

.latest-header > span {
    font-size: 10px;
    letter-spacing: 3px;
    color: #888;
}

.latest-header h2 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(48px, 6vw, 90px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -4px;
}

.latest-header h2 em {
    font-family: Georgia, serif;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.latest-card {
    min-width: 0;
}

.latest-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.latest-card:hover .latest-image img {
    transform: scale(1.06);
}

.latest-info {
    padding-top: 25px;
}

.latest-info > span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #888;
}

.latest-info h3 {
    margin: 14px 0;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1px;
}

.latest-info p {
    max-width: 330px;
    margin: 0 0 25px;
    color: #999;
    font-size: 13px;
    line-height: 1.7;
}

.latest-info strong {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile */

@media (max-width: 768px) {

    .latest-stories {
        padding: 90px 6%;
    }

    .latest-header {
        display: block;
        margin-bottom: 50px;
    }

    .latest-header h2 {
        margin-top: 25px;
        letter-spacing: -2px;
    }

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .latest-image {
        height: 450px;
    }
}
/* LATEST STORIES TEXT FIX */

section.latest-stories .latest-header h2,
section.latest-stories .latest-header h2 em,
section.latest-stories .latest-info h3,
section.latest-stories .latest-info a {
    color: #ffffff !important;
}

section.latest-stories .latest-header > span,
section.latest-stories .latest-info > span {
    color: #999999 !important;
}

section.latest-stories .latest-info p {
    color: #b5b5b5 !important;
}

section.latest-stories .latest-info strong {
    color: #ffffff !important;
}
/* =========================================
   FEATURED STORIES — DARK MODE
========================================= */

section.featured-stories,
section.featured-stories a {
    color: #ffffff !important;
}

section.featured-stories .section-label,
section.featured-stories .story-info span,
section.featured-stories .small-story-info span {
    color: #999999 !important;
}

section.featured-stories .featured-heading h2,
section.featured-stories .featured-heading h2 em,
section.featured-stories .story-info h3,
section.featured-stories .small-story-info h3 {
    color: #ffffff !important;
}

section.featured-stories .story-info p {
    color: #b5b5b5 !important;
}

section.featured-stories .story-info strong,
section.featured-stories .small-story-info strong {
    color: #ffffff !important;
}

section.featured-stories .view-all {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.5);
}
/* =========================================
   FEATURED STORIES — FINAL LAYOUT
========================================= */

section.featured-stories {
    width: 100% !important;
    box-sizing: border-box !important;
    background: #0b0b0b !important;
    color: #fff !important;
    padding: 130px 5% !important;
    overflow: hidden !important;
}

/* Heading */
section.featured-stories > div:first-child {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 70px !important;
}

/* Main 2-column layout */
section.featured-stories > div:nth-child(2) {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr) !important;
    gap: 50px !important;
    align-items: start !important;
}

/* Left story */
section.featured-stories > div:nth-child(2) > article {
    width: 100% !important;
    min-width: 0 !important;
}

/* Left image */
section.featured-stories > div:nth-child(2) > article img {
    width: 100% !important;
    height: 620px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Right column */
section.featured-stories > div:nth-child(2) > div {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 55px !important;
}

/* Right story images */
section.featured-stories > div:nth-child(2) > div article img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Text colors */
section.featured-stories span {
    color: #999 !important;
}

section.featured-stories h2,
section.featured-stories h2 em,
section.featured-stories h3,
section.featured-stories p,
section.featured-stories strong,
section.featured-stories a {
    color: #fff !important;
}

/* Description */
section.featured-stories p {
    color: #b5b5b5 !important;
}

/* Image hover */
section.featured-stories img {
    transition: transform .8s ease !important;
}

section.featured-stories article:hover img {
    transform: scale(1.04) !important;
}

/* Mobile */
@media (max-width: 768px) {

    section.featured-stories {
        padding: 90px 6% !important;
    }

    section.featured-stories > div:first-child {
        display: block !important;
        margin-bottom: 45px !important;
    }

    section.featured-stories > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 55px !important;
    }

    section.featured-stories > div:nth-child(2) > article img {
        height: 450px !important;
    }

    section.featured-stories > div:nth-child(2) > div article img {
        height: 350px !important;
    }

    section.featured-stories h2 {
        font-size: 40px !important;
    }

}
/* =========================================
   PREMIUM SECTION ANIMATIONS
========================================= */

.featured-stories .featured-heading,
.featured-stories .featured-main,
.featured-stories .small-story,
.latest-stories .latest-header,
.latest-stories .latest-card {
    animation: fashionReveal 0.9s ease both;
}

.featured-stories .featured-main {
    animation-delay: 0.15s;
}

.featured-stories .small-story:nth-child(1) {
    animation-delay: 0.3s;
}

.featured-stories .small-story:nth-child(2) {
    animation-delay: 0.45s;
}

.latest-stories .latest-header {
    animation-delay: 0.15s;
}

.latest-stories .latest-card:nth-child(1) {
    animation-delay: 0.25s;
}

.latest-stories .latest-card:nth-child(2) {
    animation-delay: 0.4s;
}

.latest-stories .latest-card:nth-child(3) {
    animation-delay: 0.55s;
}

@keyframes fashionReveal {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   PREMIUM POST HOVER ANIMATION
========================================= */

/* Featured + Latest cards */
.featured-stories article,
.latest-stories article {
    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        box-shadow 0.45s ease !important;
}

/* Card moves upward */
.featured-stories article:hover,
.latest-stories article:hover {
    transform: translateY(-10px) !important;
}

/* Images */
.featured-stories article img,
.latest-stories article img {
    transition:
        transform 0.8s cubic-bezier(.22,1,.36,1),
        filter 0.5s ease !important;
}

/* Image zoom */
.featured-stories article:hover img,
.latest-stories article:hover img {
    transform: scale(1.07) !important;
    filter: brightness(1.05) !important;
}

/* Story links */
.featured-stories article strong,
.latest-stories article strong {
    display: inline-block !important;
    transition:
        transform 0.35s ease,
        letter-spacing 0.35s ease !important;
}

/* Read Story / Explore moves */
.featured-stories article:hover strong,
.latest-stories article:hover strong {
    transform: translateX(7px) !important;
    letter-spacing: 1.5px !important;
}

/* Titles */
.featured-stories article h3,
.latest-stories article h3 {
    transition: transform 0.4s ease !important;
}

.featured-stories article:hover h3,
.latest-stories article:hover h3 {
    transform: translateX(4px) !important;
}

/* Image wrapper */
.featured-stories .story-image,
.featured-stories .small-story-image,
.latest-stories .latest-image {
    overflow: hidden !important;
}