/* Global Styles & Variables */
:root {
    --primary-blue: #0056b3;
    --secondary-blue: #004494;
    --light-blue: #e3f2fd;
    --accent-blue: #2196f3;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --background-gray: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Blog Styles (Dicas) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-info {
    padding: 1.5rem;
}

.blog-info h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.blog-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: 1.2rem 0;
    /* Increased padding slightly (approx +3px) */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

/* Scoped Header for Dicas Page - Removed display:none, using custom header now */





.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* New Logo Style */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon-container img {
    height: 40px;
    /* Restored standard size */
    width: auto;
}

/* Scoped Logo size for Dicas Page */
body.dicas-page .logo-icon-container img {
    height: 24px;
    /* Even smaller logo only for Dicas */
}

body.dicas-page .logo-text {
    font-size: 0.9rem;
    /* Smaller text */
}

body.dicas-page .nav-links a {
    font-size: 0.9rem;
    /* Smaller nav links */
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-contact {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: var(--secondary-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1001;
    /* Ensure it's above the menu */
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 60px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* New Hero Section */
.hero-new {
    background: linear-gradient(105deg, #eff6ff 0%, #eff6ff 55%, #e0f2fe 55%, #e0f2fe 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-new {
        background: #eff6ff;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .hero-content {
        width: 50%;
        padding: 4rem 2rem 4rem calc((100vw - var(--max-width)) / 2 + 2rem);
        z-index: 1;
    }

    .hero-visual-new {
        width: 50%;
        position: relative;
        height: 85vh;
        background: #e0f2fe;
        border-top-left-radius: 80px;
        border-bottom-left-radius: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dbeafe;
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.sans-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary-hero:hover {
    background-color: var(--secondary-blue);
}

.btn-outline-hero {
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d1d5db;
    transition: var(--transition);
}

.btn-outline-hero:hover {
    border-color: var(--text-dark);
    background-color: #f9fafb;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #eff6ff;
    margin-right: -10px;
    object-fit: cover;
}

.social-proof span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 10px;
}

.hero-visual-new img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 0.75rem;
    color: #888;
}

/* Mobile Adjustments for New Hero */
@media (max-width: 1024px) {
    .hero-new {
        flex-direction: column;
        background: #eff6ff;
        padding-top: 2rem;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-visual-new {
        display: none;
    }
}

/* History Section */
.history-section {
    padding: 4rem 2rem;
    background-color: var(--background-gray);
}

.history-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.history-text {
    flex: 1;
}

.history-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.history-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.history-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 400px;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media (max-width: 768px) {
    .history-container {
        flex-direction: column;
    }

    .history-carousel {
        width: 100%;
        max-height: 300px;
    }
}

/* Responsive for Hero */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
        text-align: center;
    }

    .hero-container {
        flex-direction: column-reverse;
        /* Text on bottom, image on top */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Hide hero logo on mobile */
    .hero-visual {
        display: none;
    }
}

/* Pharmacist Section */
.pharmacist-section {
    padding: 6rem 2rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.pharmacist-card {
    display: flex;
    background-color: #eff6ff;
    /* Light blue background */
    border-radius: 30px;
    padding: 3rem;
    max-width: var(--max-width);
    width: 100%;
    /* Ensure full width up to max */
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.pharmacist-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pharmacist-photo {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    /* Soft square/rounded */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
    /* White border effect */
}

.pharmacist-content {
    flex: 1.5;
}

.pharmacist-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pharmacist-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #0f172a;
    /* Dark navy/almost black */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.pharmacist-quote {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    /* Matches reference vibe */
}

.pharmacist-credentials {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.pharmacist-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--accent-blue);
    opacity: 0.8;
}

@media (max-width: 900px) {
    .pharmacist-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .pharmacist-image-container {
        width: 100%;
    }

    .pharmacist-photo {
        width: 250px;
        height: 250px;
    }

    .pharmacist-credentials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .pharmacist-name {
        font-size: 2.25rem;
    }
}



/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: var(--background-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--light-blue);
    background: var(--white);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Shared Styles */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Contact & Map Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--background-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background-color: var(--primary-blue);
    color: var(--white);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.info-item p {
    font-size: 1.1rem;
}

.map-container {
    flex: 2;
    min-width: 300px;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shop CTA Section */
.shop-cta-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.shop-cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-cta-content {
    max-width: 600px;
    z-index: 1;
}

.shop-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.shop-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.shop-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-shop-cta {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-shop-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.shop-cta-icon {
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 20rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    color: white;
}

@media (max-width: 768px) {
    .shop-cta-container {
        padding: 3rem 2rem;
        flex-direction: column;
        text-align: center;
    }

    .shop-cta-content h2 {
        font-size: 2rem;
    }

    .shop-cta-icon {
        display: none;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}


/* Global Header Tweaks */
header {
    padding: 0.25rem 0;
    /* Ultra thin */
}

.logo-icon-container img {
    height: 28px;
    /* Even smaller logo */
}

/* Blog Page Specifics */
.blog-header-section {
    padding: 1rem 2rem;
    background-color: var(--white);
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Align label/title neatly if needed, or just center */
    flex-direction: column;
    text-align: center;
}

.blog-label {
    margin-bottom: 0.25rem;
    font-size: 0.6rem;
}

.blog-title {
    font-size: 1.75rem;
    margin-bottom: 0;
}

/* New Featured Section */
.blog-featured-section {
    padding: 2rem 2rem;
    background-color: var(--white);
}

/* Featured Post */
.featured-post {
    display: flex;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
    /* Remove bottom margin if it's the only thing in section */
    max-height: none;
    /* Allow natural height */
    min-height: 300px;
    text-decoration: none;
    /* Make sure it doesn't look like a link */
    color: inherit;
    /* inherit text color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    flex: 1.2;
    min-height: 300px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 2rem;
    /* Restore padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-category::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    /* Standard article title */
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    display: block;
    /* Remove line clamp */
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info div {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.author-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.read-time {
    margin-left: auto;
    font-size: 0.8rem;
    color: #94a3b8;
}

.read-more-link {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: auto;
}

/* Blog Main Layout */
.blog-main-section {
    background-color: #f8fafc;
    padding: 4rem 2rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
}

.tab.active,
.tab:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Articles Grid */
.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    /* transition: var(--transition); Removed hover lift to keep clean layout */
}

.article-thumb {
    position: relative;
    height: 220px;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.article-body {
    padding: 1.5rem;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-body p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.read-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}



.pharmacist-widget {
    text-align: center;
    border-top: 3px solid var(--primary-blue);
}

.widget-profile {
    position: relative;
    width: 80px;
    margin: 0 auto 1rem;
}

.widget-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.online-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--primary-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid white;
}

.pharmacist-widget .role {
    font-size: 0.7rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.pharmacist-widget p {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1rem;
}



.btn-load-more {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}


.blog-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Responsive Blog */
@media (max-width: 900px) {
    .featured-post {
        flex-direction: column;
        min-height: auto;
    }

    .featured-image {
        min-height: 200px;
        height: 250px;
        flex: none;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 2.5rem;
    }
}

/* Story Section (New Design) */
.story-section-new {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.story-container {
    background-color: #f0f9ff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.story-image {
    width: 45%;
    align-self: stretch;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.story-content {
    width: 55%;
    padding: 3rem 4rem;
}

.story-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.story-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1d4ed8;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.story-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* Mobile Responsive for Story Section */
@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .story-image {
        width: 100%;
        height: 300px;
    }

    .story-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }

    .story-headline {
        font-size: 2rem;
    }

    .story-btn {
        margin: 0 auto;
    }
}