:root {
    --primary: #c5a059;
    --primary-dark: #b38f4d;
    --secondary: #1a1a1a;
    --charcoal: #4d4d4d;
    --text: #333333;
    --muted: #666666;
    --bg-light: #f7f5f2;
    --white: #ffffff;
    --header-h: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Header ---------- */
header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.logo img {
    height: 48px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

nav a {
    margin-left: 22px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 28px !important;
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 20px;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    padding: calc(var(--header-h) + 40px) 8% 80px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.35) 100%),
        url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(197, 160, 89, 0.18), transparent 45%),
        linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-brand {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: lowercase;
    margin-bottom: 18px;
}

.hero-brand .gold {
    color: var(--primary);
}

.hero-brand .gray {
    color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    max-width: 16ch;
}

.hero p {
    font-size: 1.05rem;
    max-width: 520px;
    opacity: 0.9;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    transition: 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 8%;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.hero-scroll::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--primary);
}

/* ---------- Shared ---------- */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 1px;
}

.section-bar {
    width: 40px;
    height: 4px;
    background: var(--primary);
    margin: 16px auto 50px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Quem Somos ---------- */
#quem-somos {
    padding: 120px 8%;
    background:
        linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 40%;
    left: -16px;
    bottom: -16px;
    background: var(--primary);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-content .bar {
    width: 40px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* ---------- Serviços ---------- */
#servicos {
    padding: 100px 8%;
    background:
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 40%),
        var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 42px 30px;
    text-align: left;
    border: 1px solid #ebe7df;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(197, 160, 89, 0.45);
}

.card:hover::after {
    transform: scaleX(1);
}

.card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 22px;
    display: block;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ---------- Números ---------- */
#numeros {
    padding: 100px 8%;
    background:
        radial-gradient(circle at 15% 20%, rgba(197, 160, 89, 0.15), transparent 35%),
        var(--secondary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number-wrapper {
    display: block;
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Blog ---------- */
#blog {
    padding: 100px 8%;
    background:
        linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border: 1px solid #ebe7df;
    transition: 0.4s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.blog-card:hover .blog-image {
    transform: scale(1.04);
}

.blog-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 22px;
    flex: 1;
}

.read-more {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--primary);
}

/* ---------- Clientes ---------- */
.carousel-section {
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.carousel-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 36px;
    opacity: 0.7;
}

.slider-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.slider {
    display: flex;
    width: max-content;
    animation: scroll 28s linear infinite;
}

.slider:hover {
    animation-play-state: paused;
}

.slide {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(0.9);
    opacity: 0.7;
    transition: 0.3s;
}

.slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ---------- Contato / Footer ---------- */
footer {
    background:
        radial-gradient(circle at bottom left, rgba(197, 160, 89, 0.12), transparent 40%),
        var(--secondary);
    color: var(--white);
    padding: 100px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 18px;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    background: #2a2a2a;
    color: white;
    width: 100%;
    outline: none;
    font-size: 0.8rem;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.contact-meta {
    margin-top: 18px;
    font-size: 0.8rem;
    opacity: 0.55;
    line-height: 1.8;
}

.contact-meta a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
}

.contact-meta a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 70px auto 0;
    padding-top: 28px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    opacity: 0.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Animations ---------- */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 5)); }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.12); }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 6%;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 24px 6% 32px;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
    }

    nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    nav a,
    .nav-cta {
        margin-left: 0 !important;
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }

    .nav-cta {
        margin-top: 12px !important;
        text-align: center;
        border-bottom: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: calc(var(--header-h) + 50px) 6% 90px;
        align-items: flex-start;
        min-height: 92vh;
    }

    .hero-scroll {
        left: 6%;
    }

    #quem-somos,
    #servicos,
    #numeros,
    #blog,
    footer {
        padding-left: 6%;
        padding-right: 6%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .about-content .bar {
        margin: 0 auto 30px;
    }

    .about-image::before {
        left: 12px;
        bottom: -12px;
    }

    .about-image img {
        height: 320px;
    }

    .services-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ---------- Artigo ---------- */
body.article-page {
    background: #faf8f5;
}

.article-hero {
    position: relative;
    min-height: 58vh;
    margin-top: var(--header-h);
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.article-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.article-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.78) 70%, rgba(10, 10, 10, 0.92) 100%),
        radial-gradient(circle at 15% 20%, rgba(197, 160, 89, 0.22), transparent 40%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 8% 56px;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.65);
}

.article-breadcrumb a {
    color: var(--primary);
    transition: color 0.3s;
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-breadcrumb span {
    opacity: 0.5;
}

.article-hero-content h1 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    max-width: 18ch;
}

.article-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 62ch;
    opacity: 0.9;
    margin-bottom: 28px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.article-meta strong {
    color: var(--primary);
    font-weight: 700;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 8% 100px;
}

.article-body {
    background: var(--white);
    border: 1px solid #ebe7df;
    padding: clamp(32px, 5vw, 56px);
}

.article-body > p:first-of-type::first-letter {
    float: left;
    font-size: 3.4rem;
    line-height: 0.85;
    font-weight: 800;
    color: var(--primary);
    padding-right: 10px;
    margin-top: 6px;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.4rem;
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin: 2.4rem 0 1rem;
}

.article-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1.8rem 0 0.8rem;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.5rem 1.2rem;
    color: #444;
}

.article-body li {
    margin-bottom: 0.7rem;
    line-height: 1.75;
    font-size: 1.02rem;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 22px 26px;
    border-left: 4px solid var(--primary);
    background: #faf8f5;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.6;
}

.article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    font-style: normal;
}

.article-cta-box {
    margin-top: 2.8rem;
    padding: 32px;
    background: var(--secondary);
    color: var(--white);
}

.article-cta-box h3 {
    color: var(--white);
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.article-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid #ebe7df;
    padding: 28px;
}

.sidebar-card h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ece4;
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.related-list a {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.45;
    transition: color 0.3s;
}

.related-list a:hover {
    color: var(--primary);
}

.related-list span {
    display: block;
    margin-top: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.share-list {
    display: flex;
    gap: 10px;
}

.share-list a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3efe8;
    color: var(--secondary);
    border-radius: 50%;
    transition: 0.3s;
}

.share-list a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-card {
    cursor: pointer;
}

.blog-card a.card-link {
    color: inherit;
}

.blog-card h3 a {
    transition: color 0.3s;
}

.blog-card:hover h3 a {
    color: var(--primary);
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .article-hero-content {
        padding: 48px 6% 44px;
    }

    .article-layout {
        padding: 48px 6% 80px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-hero-content h1 {
        max-width: none;
    }
}
