
/* --- Root Variables & Fonts --- */
        :root {
            --bg-milky: #FAF9F6;
            --primary-pink: #C13584;
            --text-gray: #5F5F5F;
            --surface-powdery: #FDF5E6;
            --dark-background: #1a1a1a;
            --dark-card: #262626;
            --light-gray: #e0e0e0;
            --header-font: 'Georgia', 'Times New Roman', Times, serif;
            --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* --- General & Reset --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--body-font);
            background-color: var(--bg-milky);
            color: var(--text-gray);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            color: #333;
            line-height: 1.3;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.5rem; }

        p {
            margin-bottom: 1rem;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        a {
            color: var(--primary-pink);
            text-decoration: none;
            font-weight: 600;
        }

        .container-fluid {
            width: 100%;
            padding: 4rem 2rem;
        }

        .container-standard {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* --- Animations --- */
        .reveal-element {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal-element.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header & Navigation --- */
        .site-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            background-color: rgba(250, 249, 246, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #eee;
        }

        .site-header-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-logo-link {
            font-family: var(--header-font);
            font-size: 1.75rem;
            color: #222;
            text-decoration: none;
        }

        .site-main-nav {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .site-main-nav li {
            margin-left: 2.5rem;
        }

        .site-main-nav a,
        .dropdown-trigger-label {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }

        .site-main-nav a:hover,
        .dropdown-trigger-label:hover {
            color: var(--primary-pink);
        }

        .site-main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-pink);
            transition: width 0.4s ease;
        }

        .site-main-nav a:hover::after {
            width: 100%;
        }

        /* Dropdown Component */
        .dropdown-component {
            position: relative;
        }

        .dropdown-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .dropdown-arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .dropdown-content-pane {
            display: none;
            position: absolute;
            top: 150%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--bg-milky);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 1rem;
            min-width: 220px;
            z-index: 1001;
        }

        .dropdown-content-pane a {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-gray);
            font-weight: 400;
            border-radius: 5px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .dropdown-content-pane a:hover {
            background-color: var(--surface-powdery);
            color: var(--primary-pink);
        }

        .dropdown-content-pane.is-open {
            display: block;
        }

        .dropdown-component.is-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* --- Hero Section --- */
        .hero-vista {
            padding-top: 150px;
            padding-bottom: 80px;
            text-align: center;
            background-image: linear-gradient(to top, var(--surface-powdery) 0%, var(--bg-milky) 100%);
        }

        .hero-vista h1 {
            color: #222;
            max-width: 800px;
            margin: 0 auto 1.5rem auto;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            color: var(--text-gray);
        }

        .cta-button-primary {
            display: inline-block;
            background-color: var(--primary-pink);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(193, 53, 132, 0.2);
        }
        
        /* --- Dark Section with Cards --- */
        .dark-stratum {
            background-color: var(--dark-background);
        }

        .dark-stratum h2 {
            color: var(--bg-milky);
            text-align: center;
            margin-bottom: 3rem;
        }

        .results-grid-core {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .result-tile {
            background-color: var(--dark-card);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .result-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }

        .result-tile-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--primary-pink);
        }

        .result-tile h3 {
            color: #f0f0f0;
            margin-bottom: 1rem;
        }

        .result-tile p {
            color: var(--light-gray);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* --- Testimonials Section --- */
        .testimonials-stratum h2 {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .testimonials-grid-core {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .testimonial-card-panel {
            background-color: #fff;
            border: 1px solid #eee;
            padding: 2rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .testimonial-card-panel p {
            font-style: italic;
            color: #444;
            flex-grow: 1;
        }

        .testimonial-author-nexus {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .author-name-title {
            line-height: 1.2;
        }

        .author-name {
            font-weight: 700;
            color: #333;
        }

        .author-status {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary-pink);
            opacity: 0.1;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
        }
        
        /* --- Article Block --- */
        .article-stratum {
            background-color: var(--surface-powdery);
        }

        .article-stratum .section-heading {
             font-family: var(--header-font);
             font-size: 2.2rem;
             text-align: center;
             color: #333;
             margin-bottom: 2rem;
        }
        
        .article-content-wrapper {
            background: #fff;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .article-content-wrapper h2 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-pink);
            display: inline-block;
        }

        .article-content-wrapper ul {
            list-style-position: inside;
            margin-left: 1rem;
            margin-bottom: 1rem;
        }
        
        .article-content-wrapper li {
            margin-bottom: 0.5rem;
        }

        .article-content-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
        }

        .article-content-wrapper th, .article-content-wrapper td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        .article-content-wrapper th {
            background-color: var(--surface-powdery);
            color: #333;
            font-weight: 700;
        }
        
        .article-content-wrapper strong {
            color: #222;
        }

        /* --- How It Works Section --- */
        .process-stratum h2 {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .process-flow {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .process-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: #ddd;
            z-index: -1;
        }

        .process-step-node {
            width: 30%;
            text-align: center;
        }

        .step-orb {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--surface-powdery);
            border: 2px solid var(--primary-pink);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            font-family: var(--header-font);
            font-size: 2rem;
            color: var(--primary-pink);
            font-weight: bold;
        }

        .process-step-node h3 {
            margin-bottom: 0.5rem;
        }
        
        /* --- FAQ Section --- */
        .faq-stratum {
            background-color: var(--surface-powdery);
        }

        .faq-stratum h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-nexus {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item-capsule {
            background-color: var(--bg-milky);
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
            overflow: hidden;
        }

        .faq-trigger-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            width: 100%;
        }

        .faq-trigger-header h3 {
            margin: 0;
            font-size: 1.2rem;
        }

        .faq-icon-glyph {
            width: 24px;
            height: 24px;
            color: var(--primary-pink);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .faq-answer-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-item-capsule.is-active .faq-icon-glyph {
            transform: rotate(45deg);
        }

        /* --- Final CTA & Guarantees --- */
        .final-cta-stratum {
            background-color: var(--dark-card);
            color: var(--light-gray);
            text-align: center;
        }
        .final-cta-stratum h2, .final-cta-stratum p {
            color: #fff;
        }
        .final-cta-stratum h2 {
            margin-bottom: 1rem;
        }
        .final-cta-stratum p {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2rem;
        }

        .email-form-nexus {
             display: flex;
             justify-content: center;
             gap: 1rem;
             margin-bottom: 1.5rem;
        }

        .email-input-field {
            background-color: #444;
            border: 1px solid #666;
            padding: 1rem;
            border-radius: 50px;
            color: #fff;
            width: 100%;
            max-width: 350px;
            font-size: 1rem;
        }

        .guarantees-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .guarantee-icon {
            width: 32px;
            height: 32px;
            color: var(--primary-pink);
        }

        /* --- Footer --- */
        .site-footer-wrapper {
            background-color: var(--dark-background);
            color: var(--light-gray);
            font-size: 0.9rem;
            padding: 4rem 0 2rem 0;
        }

        .footer-grid-core {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
        }

        .footer-about-block h4 {
            font-family: var(--header-font);
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-column-block h5 {
            font-family: var(--header-font);
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.75rem;
        }
        .footer-links-list a {
            color: var(--light-gray);
            font-weight: 400;
            transition: color 0.3s ease;
        }
        .footer-links-list a:hover {
            color: var(--primary-pink);
        }
        
        .footer-bottom-bar {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        
        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .site-main-nav {
                display: none; /* Simplification for this example. A real site would use a hamburger menu. */
            }
            .process-flow {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            .process-flow::before {
                display: none;
            }
            .process-step-node {
                width: 80%;
            }
            .footer-grid-core {
                grid-template-columns: 1fr 1fr;
            }
            .footer-about-block {
                grid-column: 1 / -1;
            }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            .container-fluid {
                padding: 3rem 1rem;
            }
            .hero-vista {
                padding-top: 120px;
                padding-bottom: 60px;
            }
            .email-form-nexus {
                flex-direction: column;
                align-items: center;
            }
            .email-input-field, .cta-button-primary {
                width: 100%;
                max-width: 350px;
            }
            .guarantees-grid {
                flex-direction: column;
                align-items: flex-start;
                max-width: 250px;
                margin-left: auto;
                margin-right: auto;
            }
             .footer-grid-core {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-column-block {
               margin-top: 2rem;
            }
        }


.contact-page-stratum {
            padding: 4rem 2rem;
            background-color: var(--bg-milky);
        }
        .contact-grid-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            background-color: #fff;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .contact-details-panel h2, .contact-form-panel h2 {
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-pink);
            display: inline-block;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .contact-info-item .icon-wrapper {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: var(--surface-powdery);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-info-item .icon-wrapper svg {
            width: 24px;
            height: 24px;
            color: var(--primary-pink);
        }
        .contact-info-item .info-text h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        .contact-info-item .info-text p, .contact-info-item .info-text a {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--text-gray);
            font-weight: 400;
            margin-bottom: 0;
        }
        .contact-info-item .info-text a:hover {
            color: var(--primary-pink);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: var(--body-font);
            font-size: 1rem;
            background-color: var(--bg-milky);
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-pink);
            box-shadow: 0 0 0 3px rgba(193, 53, 132, 0.1);
        }
        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-submit-btn {
            display: inline-block;
            background-color: var(--primary-pink);
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(193, 53, 132, 0.2);
        }
        .map-stratum {
            background-color: var(--surface-powdery);
        }
        .map-stratum h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #e0e0e0;
            border: 1px solid #ddd;
        }
        @media (max-width: 992px) {
            .contact-grid-wrapper {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .contact-grid-wrapper {
                padding: 2rem 1.5rem;
            }
        }

.page-title-stratum {
            padding-top: 150px;
            padding-bottom: 50px;
            background-color: var(--surface-powdery);
        }
        .page-title-stratum h1 {
            text-align: center;
            color: #222;
        }
        .content-stratum {
            padding-top: 3rem;
            padding-bottom: 4rem;
            background-color: var(--bg-milky);
        }
        .content-wrapper {
             background: #fff;
             padding: 3rem;
             border-radius: 12px;
             box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .content-wrapper h2 {
             margin-top: 2rem;
             margin-bottom: 1rem;
             font-size: 1.8rem;
         }
        .content-wrapper h2:first-of-type {
            margin-top: 0;
        }
        .content-wrapper h3 {
             margin-top: 1.5rem;
             margin-bottom: 0.75rem;
             color: #444;
         }
        .content-wrapper ul {
            list-style-type: disc;
            list-style-position: outside;
            margin-left: 2rem;
            padding-left: 1rem;
         }
        .content-wrapper li {
            margin-bottom: 0.5rem;
        }
        .content-wrapper strong {
            color: #222;
        }
        .content-wrapper a {
            color: var(--primary-pink);
            text-decoration: underline;
        }

.hero-vista-small {
            padding-top: 140px;
            padding-bottom: 70px;
            text-align: center;
        }
        .hero-vista-small h1 {
            color: #222;
        }
        .hero-vista-small .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1.5rem auto 0 auto;
        }
        .contact-prompt-stratum {
            text-align: center;
            padding-top: 4rem;
            padding-bottom: 4rem;
            background-color: var(--dark-background);
        }
        .contact-prompt-stratum h2 {
            color: var(--bg-milky);
            margin-bottom: 1.5rem;
        }
        .contact-prompt-stratum p {
            color: var(--light-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }
        .cta-button-secondary {
            display: inline-block;
            background-color: transparent;
            color: #fff;
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s;
            border: 2px solid var(--primary-pink);
        }
        .cta-button-secondary:hover {
            background-color: var(--primary-pink);
            color: #fff;
        }

.article-stratum {
            padding-top: 150px;
            padding-bottom: 80px;
        }
        .sitemap-page-h1 {
            text-align: center;
            border-bottom: none !important;
            display: block !important;
            margin-bottom: 2.5rem;
            font-size: 3rem;
        }
        .sitemap-category {
            margin-bottom: 3rem;
        }
        .sitemap-category:last-child {
            margin-bottom: 0;
        }
        .sitemap-category h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-pink);
            display: inline-block;
        }
        .sitemap-links {
            list-style: none;
            padding: 0;
            column-count: 2;
            column-gap: 2.5rem;
        }
        .sitemap-links li {
            margin-bottom: 1rem;
            -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
            break-inside: avoid;
        }
        .sitemap-links a {
            font-weight: 500;
            color: var(--text-gray);
            transition: color 0.2s ease;
            display: inline-block;
        }
        .sitemap-links a:hover {
            color: var(--primary-pink);
        }

        @media screen and (min-width: 992px) {
            .sitemap-category.blog-category .sitemap-links {
                column-count: 3;
            }
        }
        @media screen and (max-width: 768px) {
            .article-stratum {
                padding-top: 120px;
            }
            .sitemap-page-h1 {
                font-size: 2.5rem;
            }
            .sitemap-links {
                column-count: 1;
            }
        }

.about-section {
            padding: 4rem 1rem;
        }
        .about-section p {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            font-size: 1.1rem;
        }
        .team-grid-core {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .team-card {
            text-align: center;
            background-color: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 1px solid #eee;
        }
        .team-card h3 {
            margin-bottom: 0.25rem;
            font-size: 1.3rem;
        }
        .team-card .role {
            font-weight: 600;
            color: var(--primary-pink);
            margin-bottom: 0;
            font-family: var(--body-font);
        }




/* --- Blog Page --- */
.blog-grid-stratum {
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.blog-grid-core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}
.blog-post-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.blog-card-image-link {
    display: block;
    line-height: 0;
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.blog-card-content {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}
.blog-card-content h3 a {
    color: #333;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-card-content h3 a:hover {
    color: var(--primary-pink);
}
.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.blog-card-readmore {
    display: inline-block;
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    transition: text-decoration 0.2s;
}
.blog-card-readmore:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-grid-core {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
