/* ============================
   RESET & BASE STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --peach: #FFF5E6;
    --cream: #FEF9F5;
    --white: #FFFFFF;
    --soft-green: #A8E6CF;
    --mint: #DCEDC1;
    --coral: #FF6B6B;
    --teal: #4DB6AC;
    --gradient-peach: #FFEEDB;
    --gradient-cream: #FFF9F0;
    --text-dark: #2C3E50;
    --text-gray: #6B7280;
    --shadow: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--peach);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 50%, var(--gradient-peach) 100%);
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--soft-green), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--mint), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--coral), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.glow-text {
    background: linear-gradient(90deg, var(--soft-green), var(--teal), var(--coral), var(--teal), var(--soft-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(168, 230, 207, 0.4);
    font-family: 'Orbitron', sans-serif;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 40px rgba(168, 230, 207, 0.6);
}

.cta-button:hover .button-glow {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--teal);
    border-radius: 20px;
    position: relative;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes scroll-dot {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 35px;
        opacity: 0;
    }
}

/* ============================
   SECTIONS
   ============================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-dark);
}

.highlight {
    color: var(--coral);
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

/* ============================
   ARTICLES SECTION
   ============================ */
.articles {
    background: linear-gradient(180deg, var(--peach) 0%, var(--cream) 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--gradient-cream) 100%);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(220, 237, 193, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.08);
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(168, 230, 207, 0.3);
}

.article-card:hover .card-glow {
    opacity: 1;
    animation: border-shimmer 2s linear infinite;
}

@keyframes border-shimmer {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
    color: var(--teal);
    filter: drop-shadow(0 2px 8px rgba(77, 182, 172, 0.3));
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Orbitron', sans-serif;
}

.card-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
}

.card-link.primary {
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    color: var(--white);
    box-shadow: 0 3px 15px rgba(168, 230, 207, 0.3);
}

.card-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 230, 207, 0.5);
}

.card-link.secondary {
    color: var(--teal);
    border: 2px solid var(--teal);
    background: transparent;
}

.card-link.secondary:hover {
    color: var(--white);
    background: var(--teal);
    border-color: var(--teal);
}

.card-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.card-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    background: linear-gradient(180deg, var(--cream) 0%, var(--gradient-peach) 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-wrapper {
    text-align: left;
}

.about-text-wrapper .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(168, 230, 207, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 230, 207, 0.1) 100%);
    border-color: var(--soft-green);
    box-shadow: 0 4px 20px rgba(168, 230, 207, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================
   FULL ARTICLE SECTION
   ============================ */
.full-article {
    background: var(--white);
    padding: 6rem 0;
}

.article-header-inline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.article-meta-inline {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.article-date {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.article-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle-main {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-gray);
    line-height: 1.6;
}

.article-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.article-main-content {
    background: var(--white);
}

.featured-image-inline {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px var(--shadow);
}

.featured-image-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--coral);
}

.article-main-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-main-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-main-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.article-main-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.inline-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--soft-green);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.inline-link:hover {
    color: var(--coral);
    border-bottom-color: var(--coral);
}

.highlight-box {
    background: linear-gradient(135deg, var(--gradient-cream), var(--white));
    border-left: 5px solid var(--soft-green);
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.highlight-box.success {
    border-left-color: var(--coral);
    background: linear-gradient(135deg, #FFF5F5, var(--white));
}

.highlight-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-top: 0 !important;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-box p {
    margin-bottom: 0;
}

.numbered-list {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.list-item .number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
}

.list-content h4 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.list-content p {
    margin-bottom: 0;
}

.article-list {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: none;
    padding: 0;
}

.article-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--soft-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.article-cta-inline {
    background: linear-gradient(135deg, var(--soft-green), var(--mint));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0 2rem;
    box-shadow: 0 8px 30px rgba(168, 230, 207, 0.3);
}

.article-cta-inline h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-top: 0 !important;
    margin-bottom: 1rem;
}

.article-cta-inline p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.article-cta-inline .cta-button {
    background: var(--white);
    color: var(--teal);
}

/* Sidebar Inline */
.article-sidebar-inline {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(168, 230, 207, 0.3);
}

.sidebar-widget h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-top: 0 !important;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--gradient-cream);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--soft-green);
    font-weight: 700;
}

.highlight-widget {
    background: linear-gradient(135deg, var(--gradient-peach), var(--gradient-cream));
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ingredient-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.ingredient-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.ingredient-use {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq {
    background: var(--peach);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(168, 230, 207, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px var(--shadow);
}

.faq-item:hover {
    border-color: var(--soft-green);
    box-shadow: 0 4px 25px rgba(168, 230, 207, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Orbitron', sans-serif;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--teal);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
    background: linear-gradient(180deg, var(--peach) 0%, var(--cream) 100%);
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    margin-top: 2rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: linear-gradient(135deg, var(--gradient-peach), var(--cream));
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid var(--soft-green);
}

.footer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--coral);
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
    .article-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar-inline {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text-wrapper {
        text-align: center;
    }

    .about-text-wrapper .section-title {
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .full-article {
        padding: 4rem 0;
    }

    .article-title-main {
        font-size: 2rem;
    }

    .featured-image-inline {
        height: 250px;
        margin-bottom: 2rem;
    }

    .lead-paragraph {
        font-size: 1.05rem;
        padding-left: 1rem;
    }

    .article-main-content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-main-content h4 {
        font-size: 1.15rem;
    }

    .article-main-content p {
        font-size: 1rem;
    }

    .numbered-list {
        gap: 1.2rem;
    }

    .list-item {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .article-cta-inline {
        padding: 2rem;
    }

    .article-sidebar-inline {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .gradient-orb {
        filter: blur(80px);
    }

    .orb-1 {
        width: 250px;
        height: 250px;
    }

    .orb-2 {
        width: 300px;
        height: 300px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .article-meta-inline {
        flex-direction: column;
        gap: 0.8rem;
    }

    .article-title-main {
        font-size: 1.6rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .article-cta-inline h4 {
        font-size: 1.4rem;
    }
}
