/* =========================================
   DAISY DEVOTION BLOG
   ========================================= */

:root {
    --teal: #007580;
    --teal-dark: #005f68;
    --cream: #f8f4ec;
    --cream-dark: #eee8dc;
    --ink: #17383d;
    --muted: #66777a;
    --white: #ffffff;
    --line: #ded8cc;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */

.announcement {
    background: var(--teal);
    color: var(--white);
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.announcement-inner {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 10px 24px;
    text-align: center;
}

.announcement-divider {
    opacity: 0.65;
}

.announcement strong {
    font-weight: 700;
}


/* =========================================
   HEADER
   ========================================= */

.blog-header {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.blog-nav {
    width: min(1400px, calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.blog-brand {
    display: flex;
    align-items: center;
}

.blog-brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.blog-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}

.blog-nav-links a {
    transition: opacity 0.2s ease;
}

.blog-nav-links a:hover {
    opacity: 0.6;
}

.blog-nav-store {
    background: var(--teal);
    color: var(--white);
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 600;
}

.blog-nav-store:hover {
    opacity: 1 !important;
    background: var(--teal-dark);
}


/* =========================================
   ARTICLE HERO
   ========================================= */

.blog-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 75px 24px 45px;
    text-align: center;
}

.blog-tag {
    display: inline-block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-title {
    max-width: 1000px;
    margin: 0 auto;

    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.blog-meta {
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================
   HERO IMAGE
   ========================================= */

.blog-hero-image-wrap {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto 70px;
    overflow: hidden;
    border-radius: 24px;
}

.blog-hero-image {
    width: 100%;
    height: min(650px, 55vw);
    min-height: 380px;
    object-fit: cover;
}


/* =========================================
   ARTICLE CONTENT
   ========================================= */

.blog-content {
    width: min(820px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 90px;
}

.blog-content p {
    color: #30494d;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.blog-content .blog-intro {
    font-size: 21px;
    line-height: 1.75;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-content h2 {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.2;
    color: var(--ink);
    margin: 48px 0 16px;
}

.blog-content h2:first-of-type {
    margin-top: 35px;
}


/* =========================================
   CTA
   ========================================= */

.blog-cta {
    background: var(--teal);
    color: var(--white);

    margin: 65px 0 45px;
    padding: 45px;
    border-radius: 24px;

    text-align: center;
}

.blog-cta h3 {
    font-family: var(--serif);
    font-size: 32px;
    margin-bottom: 12px;
}

.blog-cta p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.9);
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--teal);

    padding: 13px 24px;
    border-radius: 999px;

    font-weight: 700;
    font-size: 14px;

    transition: transform 0.2s ease;
}

.shop-btn:hover {
    transform: translateY(-2px);
}


/* =========================================
   BACK LINK
   ========================================= */

.back-link {
    display: inline-flex;
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}


/* =========================================
   FOOTER
   ========================================= */

.blog-footer {
    background: #123b40;
    color: var(--white);
}

.blog-footer-inner {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0 25px;
}

.blog-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 55px;
}

.blog-footer-brand {
    max-width: 360px;
}

.blog-footer-brand img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.blog-footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.blog-footer-links {
    display: flex;
    gap: 100px;
}

.blog-footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-footer-links strong {
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.blog-footer-links a:hover {
    color: var(--white);
}

.blog-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .announcement-inner {
        font-size: 10px;
        gap: 7px;
        padding: 9px 12px;
    }

    .blog-nav {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .blog-brand img {
        width: 48px;
        height: 48px;
    }

    .blog-nav-links {
        gap: 14px;
        font-size: 12px;
    }

    .blog-nav-store {
        padding: 9px 13px;
    }

    .blog-hero {
        padding: 55px 18px 35px;
    }

    .blog-title {
        font-size: clamp(36px, 10vw, 54px);
    }

    .blog-hero-image-wrap {
        width: calc(100% - 28px);
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .blog-hero-image {
        height: 60vw;
        min-height: 280px;
    }

    .blog-content {
        width: calc(100% - 32px);
    }

    .blog-content p {
        font-size: 16px;
    }

    .blog-content .blog-intro {
        font-size: 19px;
    }

    .blog-content h2 {
        font-size: 28px;
        margin-top: 38px;
    }

    .blog-cta {
        padding: 35px 22px;
        border-radius: 18px;
    }

    .blog-cta h3 {
        font-size: 27px;
    }

    .blog-footer-inner {
        width: calc(100% - 32px);
    }

    .blog-footer-top {
        flex-direction: column;
        gap: 45px;
    }

    .blog-footer-links {
        gap: 55px;
    }

    .blog-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


@media (max-width: 560px) {

    .announcement-inner {
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .blog-nav-links {
        gap: 9px;
    }

    .blog-nav-links a:nth-child(1),
    .blog-nav-links a:nth-child(2) {
        display: none;
    }

    .blog-nav-store {
        font-size: 11px;
        padding: 8px 12px;
    }

    .blog-hero {
        padding-top: 45px;
    }

    .blog-title {
        font-size: 38px;
    }

    .blog-hero-image {
        height: 72vw;
        min-height: 250px;
    }

    .blog-footer-links {
        flex-direction: column;
        gap: 30px;
    }
}