/* =========================================
   LUXURY BLOG SECTION
========================================= */

.luxury-blog-section {
    width: 100%;
    padding: 90px 7% 2px;
    background: #F7F3EA;
}


/* =========================================
   BLOG INTRO
========================================= */

.blog-intro {
    max-width: 850px;
    margin: 0 auto 90px;
    text-align: center;
}

.blog-small-title {
    display: inline-block;
    margin-bottom: 18px;

    color: #c9a063;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
}

.blog-intro h2 {
    margin: 0 0 10px;

    color: #0e4b4e;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 50px);
    font-weight: 600;
    line-height: .95;
}

.blog-intro p {
    max-width: 650px;
    margin: 0 auto;

    color: #777;

    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    line-height: 1.8;
}


/* =========================================
   BLOG STORY
========================================= */

.blog-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    max-width: 1450px;
    min-height: 420px;

    margin: 0 auto 70px;

    background: #fff;

    box-shadow: 0 15px 50px rgba(14, 75, 78, .07);

    overflow: hidden;

    opacity: 0;
    transform: translateY(50px);

    animation: blogFadeUp .9s ease forwards;
}


/* Alternate layout */

.blog-story.reverse {
    grid-template-columns: 1fr 1fr;
}

.blog-story.reverse .blog-image {
    order: 2;
}

.blog-story.reverse .blog-content {
    order: 1;
}


/* =========================================
   BLOG IMAGE
========================================= */

.blog-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.blog-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.blog-story:hover .blog-image img {
    transform: scale(1.04);
}


/* =========================================
   BLOG CONTENT
========================================= */

.blog-content {
    padding: 50px 55px;
}

.blog-number {
    display: block;

    margin-bottom: 12px;

    color: #c9a063;

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
}

.blog-category {
    display: block;

    margin-bottom: 20px;

    color: #999;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.blog-content h3 {
    margin: 0 0 25px;

    color: #0e4b4e;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 35px);
    font-weight: 1000;
    line-height: 1.05;
}

.blog-content p {
    margin: 0 0 30px;

    color: #777;

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
   READ MORE
========================================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 6px;

    color: #0e4b4e;

    border-bottom: 1px solid #c9a063;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;

    text-decoration: none;

    transition: all .3s ease;
}

.blog-read-more span {
    font-size: 18px;

    transition: transform .3s ease;
}

.blog-read-more:hover {
    color: #c9a063;
}

.blog-read-more:hover span {
    transform: translateX(6px);
}


/* =========================================
   ANIMATION
========================================= */

@keyframes blogFadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   STAGGER EFFECT
========================================= */

.blog-story:nth-child(2) {
    animation-delay: .1s;
}

.blog-story:nth-child(3) {
    animation-delay: .2s;
}

.blog-story:nth-child(4) {
    animation-delay: .3s;
}

.blog-story:nth-child(5) {
    animation-delay: .4s;
}

.blog-story:nth-child(6) {
    animation-delay: .5s;
}

.blog-story:nth-child(7) {
    animation-delay: .6s;
}

.blog-story:nth-child(8) {
    animation-delay: .7s;
}

.blog-story:nth-child(9) {
    animation-delay: .8s;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .luxury-blog-section {
        padding: 70px 4% 90px;
    }

    .blog-content {
        padding: 45px;
    }

    .blog-content h3 {
        font-size: 36px;
    }

    .blog-content p {
        font-size: 16px;
    }

    .blog-image {
        height: 460px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .luxury-blog-section {
        padding: 55px 16px 70px;
    }


    /* Intro */

    .blog-intro {
        margin-bottom: 50px;
    }

    .blog-small-title {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .blog-intro h2 {
        font-size: 38px;
        line-height: 1;
    }

    .blog-intro p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Blog card */

    .blog-story,
    .blog-story.reverse {
        display: flex;
        flex-direction: column;

        min-height: auto;

        margin-bottom: 35px;
    }


    /* Image always first */

    .blog-story .blog-image,
    .blog-story.reverse .blog-image {
        order: 1;

        width: 100%;
        height: 280px;
    }


    /* Content */

    .blog-story .blog-content,
    .blog-story.reverse .blog-content {
        order: 2;

        padding: 32px 25px 38px;
    }


    .blog-number {
        font-size: 20px;
    }

    .blog-category {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 2px;
    }

    .blog-content h3 {
        font-size: 30px;
        line-height: 1.05;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 1.75;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .luxury-blog-section {
        padding: 45px 12px 60px;
    }

    .blog-intro h2 {
        font-size: 32px;
    }

    .blog-intro p {
        font-size: 15px;
    }

    .blog-story {
        margin-bottom: 25px;
    }

    .blog-image {
        height: 240px !important;
    }

    .blog-content {
        padding: 28px 20px 32px !important;
    }

    .blog-content h3 {
        font-size: 26px;
    }

    .blog-content p {
        font-size: 15px;
    }

}