/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================
   ADVERTORIAL BAR
   ===================== */
.advertorial-bar {
    background-color: #3b3b3b;
    color: #9e9d9d;
    text-align: center;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif !important;
}


/* =====================
Header Logo
   ===================== */
.logo-wrapper {
    display: flex;
    justify-content: center; 
    align-items: center;    
    width: 100%;            
    padding: 20px 0;       
    background-color: #ffffff; 
}

/* 3. Control the logo size */
.logo-wrapper img {
    height: 35px;           
    width: auto;            
}


/* =====================
   MAIN LAYOUT
   ===================== */
.main-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 16px;
}

/* =====================
   LEFT CONTENT
   ===================== */
.left-content {
    flex: 2;
    min-width: 0;
}

.left-content > img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================
   HEADLINE
   ===================== */
.main-headline {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* =====================
   DATE
   ===================== */
.article-date {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

/* =====================
   WARNING BANNER
   ===================== */
.warning-banner {
    background: #cfe0ec;
    padding: 15px;
    font-size: 14px;
}

/* =====================
   ARTICLE BODY
   ===================== */
.article-body {
    margin-top: 40px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-body img {
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.article-extra p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.article-extra-large p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.6;
}

/* =====================
   NUTRITION COMPARE
   ===================== */
.nutrition-compare-wrap {
    display: flex;
    gap: 20px;
    margin: 30px 0 10px;
    font-family: 'Montserrat', sans-serif;
    align-items: flex-start;
}

/* =====================
   CARD
   ===================== */
.nutrition-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* =====================
   CARD HEADER
   ===================== */
.nutrition-card-header {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.nutrition-card.standard .nutrition-card-header {
    background-color: #2c2c2c;
}

.nutrition-card.premium .nutrition-card-header {
    background-color: #1a3d2e;
}

/* =====================
   ROWS
   ===================== */
.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.nutrition-row:last-child {
    border-bottom: none;
}

/* Alternating row background */
.nutrition-card.standard .nutrition-row:nth-child(odd) {
    background-color: #fff5f5;
}

.nutrition-card.standard .nutrition-row:nth-child(even) {
    background-color: #ffffff;
}

.nutrition-card.premium .nutrition-row:nth-child(odd) {
    background-color: #f0faf5;
}

.nutrition-card.premium .nutrition-row:nth-child(even) {
    background-color: #ffffff;
}

/* =====================
   LABEL & VALUE
   ===================== */
.nutrition-label {
    color: #444444;
    font-size: 13px;
    font-weight: 400;
}

.nutrition-value {
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.nutrition-value.bad {
    color: #cc2200;
}

.nutrition-value.good {
    color: #1a6e3c;
}

.nutrition-value.neutral {
    color: #222222;
    font-weight: 700;
}

/* =====================
   FOOTNOTE
   ===================== */
.nutrition-footnote {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #393838;
    margin-top: 8px;
    line-height: 1.2;
}


/* =====================
   CTA BUTTON
   ===================== */
.cta-wrap {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: white;
    padding: 20px 70px;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    margin-top: 10px;
}

.cta-btn .arrow {
    margin-left: 12px;
    font-size: 24px;
    line-height: 1.1;
}

/* =====================
   UPDATE BOX
   ===================== */
.update-box {
    background-color: #fdf8d9;
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto 0;
    border-top: 10px solid #a3c9e2;
}

.update-box-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.update-text {
    flex: 2;
    color: #333;
    line-height: 1.5;
    font-size: 18px;
}

.update-text p {
    margin-bottom: 10px;
}

.update-text p:last-child {
    margin-bottom: 0;
}

.update-image {
    flex: 1;
    text-align: center;
}

.update-image img {
    width: 100%;
    height: auto;
}

/* =====================
   REVIEW CARDS
   ===================== */
.review-card {
    background-color: #e9f5ff;
    border: 1px solid #c2e0ff;
    border-radius: 20px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif !important;
    color: #444;
    line-height: 1.6;
    font-size: 18px;
    max-width: 950px;
    margin: 20px auto;
}

/* =====================
   SIDEBAR
   ===================== */
.sidebar {
    flex: 1;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    height: fit-content;
}

.sidebar img {
    width: 80%;
    height: auto;
    max-height: 95vh;
    display: block;
}

/* =====================
   FOOTER
   ===================== */
.footer-links {
    width: 100%;
    background-color: #d8e4f1;
    margin-top: 10px;
    padding: 30px 16px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-links .copyright {
    white-space: nowrap;
    color: #8a8989;
    font-size: 18px;
}

.footer-links a {
    color: #000000;
    text-decoration: underline;
    white-space: nowrap;
}

/* =====================
   DISCLAIMER
   ===================== */
.disclaimer {
    font-family: 'Montserrat', sans-serif !important;
    color: #777;
    font-size: 13px;

    line-height: 1.6;
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.disclaimer p {
    margin-bottom: 25px;
}

.disclaimer p:last-of-type {
    margin-bottom: 10px;
}

.disclaimer a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

/* =====================
   RESPONSIVE — TABLET (max 900px)
   ===================== */
@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
    }

    .sidebar {
        display: none;
        /* hide sticky sidebar on mobile/tablet */
    }

    .main-headline {
        font-size: 26px;
    }

    .cta-btn {
        padding: 16px 40px;
        font-size: 22px;
    }

    .update-box-inner {
        flex-direction: column;
    }

    .update-image {
        width: 60%;
        margin: 0 auto;
    }
}

/* =====================
   RESPONSIVE — MOBILE (max 600px)
   ===================== */
@media (max-width: 600px) {
    .advertorial-bar {
        font-size: 14px;
    }

    .main-wrapper {
        margin: 12px auto;
        gap: 12px;
        padding: 0 12px;
    }

    .main-headline {
        font-size: 20px;
        line-height: 1.3;
    }

    .article-date {
        font-size: 14px;
    }

    .warning-banner {
        font-size: 13px;
    }

    .article-body p,
    .article-extra p,
    .update-text,
    .review-card {
        font-size: 15px;
    }

    .article-extra-large p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .review-card {
        font-size: 15px;
        padding: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 50px;
    }

    .footer-links .copyright {
        font-size: 14px;
    }

    .disclaimer {
        font-size: 12px;
        padding: 0 14px;
    }

    .update-image {
        width: 80%;
    }
}

/*=====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 600px) {
    .nutrition-compare-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .nutrition-card {
        width: 100%;
    }

    .nutrition-card-header {
        font-size: 14px;
        padding: 12px 14px;
    }

    .nutrition-row {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nutrition-label {
        font-size: 12px;
    }

    .nutrition-value {
        font-size: 12px;
    }

    .nutrition-footnote {
        font-size: 12px;
    }
}