/*
Theme Name: Seller Cost Guide Child
Theme URI: https://sellercostguide.com/
Description: Child theme for Seller Cost Guide, built on GeneratePress.
Author: Seller Cost Guide
Author URI: https://sellercostguide.com/
Template: generatepress
Version: 0.1.0
Text Domain: sellercostguide-child
*/

/* =========================================================
   Seller Cost Guide - Child Theme v0.1.0
   Base visual layer only.
   Calculator logic and tool-specific styles should live in
   the seller-cost-guide-tools plugin.
========================================================= */

:root {
    --scg-color-primary: #243b53;
    --scg-color-primary-dark: #102a43;
    --scg-color-accent: #16a34a;
    --scg-color-accent-soft: #ecfdf3;
    --scg-color-warning: #f59e0b;
    --scg-color-bg-soft: #f8fafc;
    --scg-color-border: #e2e8f0;
    --scg-color-text: #111827;
    --scg-color-muted: #64748b;
    --scg-radius: 12px;
    --scg-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   Base
========================================================= */

body {
    color: var(--scg-color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    background: #f5f8fb;
}

a {
    color: var(--scg-color-primary);
}

a:hover,
a:focus {
    color: var(--scg-color-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.15em;
}

/* =========================================================
   Header, branding and navigation
========================================================= */

.site-header {
    background: #f5f8fb;
    border-bottom: 1px solid #d9e2ec;
}

.site-branding .main-title a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1;
    text-decoration: none;
}

.site-branding .main-title a::before {
    content: "$";
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: #86efac;
    background: #0f172a;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.site-branding .main-title a:hover,
.site-branding .main-title a:focus {
    color: #14532d;
}

.site-branding .site-description {
    color: #64748b;
    font-size: 0.95rem;
}

.main-navigation {
    background: transparent;
}

.main-navigation .main-nav ul li a {
    color: #1f3a5f;
    font-size: 0.96rem;
    font-weight: 700;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus > a,
.main-navigation .main-nav ul li.sfHover > a,
.main-navigation .main-nav ul li.current-menu-item > a {
    color: #1f9d7a;
    background: transparent;
}

/* Dropdown menu */

.main-navigation ul ul {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.main-navigation ul ul li a {
    padding: 12px 18px;
    font-size: 0.94rem;
    font-weight: 600;
}

.main-navigation ul ul li:hover > a {
    background: #f5f8fb;
    color: #1f9d7a;
}

/* =========================================================
   Main content and footer
========================================================= */

.site-content {
    padding-top: 48px;
    padding-bottom: 48px;
}

.inside-article {
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #d9e2ec;
    color: #64748b;
    font-size: 0.95rem;
}

/* =========================================================
   Reusable layout helpers
========================================================= */

.scg-section {
    margin: 48px 0;
}

.scg-section-small {
    margin: 28px 0;
}

.scg-card {
    background: #ffffff;
    border: 1px solid var(--scg-color-border);
    border-radius: var(--scg-radius);
    box-shadow: var(--scg-shadow-soft);
    padding: 28px;
}

.scg-card-soft {
    background: var(--scg-color-bg-soft);
    border: 1px solid var(--scg-color-border);
    border-radius: var(--scg-radius);
    padding: 28px;
}

.scg-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--scg-color-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.scg-muted {
    color: var(--scg-color-muted);
}

/* Buttons */

.scg-button,
a.scg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--scg-color-primary);
    color: #ffffff;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.scg-button:hover,
.scg-button:focus,
a.scg-button:hover,
a.scg-button:focus {
    background: var(--scg-color-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.scg-button-secondary,
a.scg-button-secondary {
    background: #ffffff;
    color: var(--scg-color-primary);
    border: 1px solid var(--scg-color-border);
}

.scg-button-secondary:hover,
.scg-button-secondary:focus,
a.scg-button-secondary:hover,
a.scg-button-secondary:focus {
    background: var(--scg-color-bg-soft);
    color: var(--scg-color-primary-dark);
}

/* Simple grids */

.scg-grid-2,
.scg-grid-3 {
    display: grid;
    gap: 24px;
}

.scg-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scg-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========================================================
   Internal page titlebar and breadcrumbs
========================================================= */

/* Hide older breadcrumb container if it still exists from previous tests. */
.scg-breadcrumbs-wrap {
    display: none;
}

body.page:not(.home) .inside-article {
    padding-top: 0;
}

body.page:not(.home) .entry-content {
    margin-top: 0;
}

.scg-page-titlebar {
    margin-bottom: 26px;
    padding: 28px 12px 6px;
}

.scg-page-breadcrumbs {
    margin-bottom: 14px;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 700;
}

.scg-page-breadcrumbs a {
    color: #166534;
    text-decoration: none;
}

.scg-page-breadcrumbs a:hover,
.scg-page-breadcrumbs a:focus {
    color: #14532d;
    text-decoration: underline;
}

.scg-page-breadcrumbs .separator {
    color: #94a3b8;
}

.scg-page-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.15rem, 4.5vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

/* =========================================================
   Tool page content sections
========================================================= */

.scg-page-content {
    margin-top: 34px;
}

.scg-page-section {
    margin: 28px 0;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.scg-page-section h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -0.025em;
}

.scg-page-section p {
    color: #475569;
}

.scg-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.scg-info-card {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.scg-info-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.08rem;
}

.scg-info-card ul {
    margin-bottom: 0;
}

.scg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.scg-related-card {
    display: block;
    padding: 18px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.scg-related-card span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.scg-related-card:hover,
.scg-related-card:focus {
    background: #f0fdf4;
    border-color: #86efac;
    color: #14532d;
    transform: translateY(-1px);
}

/* FAQ accordion */

.scg-faq-list {
    margin-top: 18px;
}

.scg-faq-item {
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.scg-faq-item summary {
    cursor: pointer;
    padding: 16px 18px;
    color: #0f172a;
    font-weight: 850;
    list-style: none;
}

.scg-faq-item summary::-webkit-details-marker {
    display: none;
}

.scg-faq-item summary::after {
    content: "+";
    float: right;
    color: #16a34a;
    font-weight: 900;
}

.scg-faq-item[open] summary::after {
    content: "-";
}

.scg-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #475569;
}

/* =========================================================
   Home page
========================================================= */

.scg-home {
    margin-top: 0;
}

.scg-home-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 56px 42px;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.28), transparent 34%),
        linear-gradient(135deg, #0f172a 0%, #111827 54%, #064e3b 100%);
    border: 1px solid #1e293b;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.scg-home-hero > * {
    position: relative;
    z-index: 3;
}

.scg-home-hero h1,
.scg-home-hero p,
.scg-home-actions,
.scg-home-kicker {
    max-width: 560px;
}

/* Blurred dashboard-style visual on the right side of the hero. */
.scg-home-hero::before {
    content: "";
    position: absolute;
    right: 44px;
    top: 50%;
    z-index: 2;
    width: 292px;
    height: 205px;
    transform: translateY(-50%) rotate(-2deg);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(134, 239, 172, 0.95) 0 36%, transparent 36% 100%) 26px 38px / 165px 16px no-repeat,
        linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0 48%, transparent 48% 100%) 26px 72px / 215px 12px no-repeat,
        linear-gradient(90deg, rgba(255, 255, 255, 0.40) 0 68%, transparent 68% 100%) 26px 98px / 225px 10px no-repeat,
        radial-gradient(circle at 73% 57%, rgba(134, 239, 172, 0.95) 0 21%, rgba(167, 139, 250, 0.85) 22% 35%, rgba(255, 255, 255, 0.12) 36% 40%, transparent 41%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(226, 232, 240, 0.18);
    box-shadow: 0 26px 55px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(8px);
    opacity: 0.9;
}

.scg-home-hero::after {
    content: "";
    position: absolute;
    right: -76px;
    top: -88px;
    z-index: 1;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 38%, rgba(134, 239, 172, 0.95) 0, rgba(134, 239, 172, 0.28) 28%, transparent 58%),
        radial-gradient(circle at 72% 66%, rgba(167, 139, 250, 0.68) 0, transparent 44%);
    filter: blur(20px);
    opacity: 0.88;
}

.scg-home-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(134, 239, 172, 0.32);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.scg-home-hero h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.scg-home-hero p {
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.65;
}

.scg-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scg-home-button,
a.scg-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    color: #052e16;
    background: #86efac;
    border: 1px solid #86efac;
    border-radius: 10px;
    font-weight: 850;
    text-decoration: none;
}

.scg-home-button:hover,
.scg-home-button:focus {
    color: #052e16;
    background: #bbf7d0;
    border-color: #bbf7d0;
}

.scg-home-button-secondary,
a.scg-home-button-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 232, 240, 0.22);
}

.scg-home-button-secondary:hover,
.scg-home-button-secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(226, 232, 240, 0.36);
}

.scg-home-section {
    margin-top: 34px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.scg-home-section h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    letter-spacing: -0.035em;
}

.scg-home-section > p {
    max-width: 760px;
    color: #475569;
}

.scg-home-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.scg-home-tool-card {
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 22px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.scg-home-tool-card:hover,
.scg-home-tool-card:focus {
    color: #0f172a;
    background: #f0fdf4;
    border-color: #86efac;
    transform: translateY(-2px);
}

.scg-home-tool-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.scg-home-tool-card p {
    margin-bottom: 16px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
}

.scg-home-tool-card span {
    margin-top: auto;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 850;
}

.scg-home-grid-2,
.scg-home-grid-3 {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.scg-home-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scg-home-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scg-home-info-card {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.scg-home-info-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.08rem;
}

.scg-home-info-card p,
.scg-home-info-card li {
    color: #475569;
}

.scg-home-info-card ul {
    margin-bottom: 0;
}

.scg-home-note {
    margin-top: 28px;
    padding: 18px 20px;
    color: #78350f;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    font-size: 0.95rem;
}

/* =========================================================
   Responsive refinements
========================================================= */

@media (max-width: 1020px) {
    .scg-home-hero::before {
        right: 20px;
        width: 250px;
        height: 178px;
        opacity: 0.52;
    }

    .scg-home-hero::after {
        opacity: 0.55;
    }
}

@media (max-width: 900px) {
    .scg-home-hero {
        min-height: auto;
        padding: 34px 28px;
    }

    .scg-home-hero h1,
    .scg-home-hero p,
    .scg-home-actions,
    .scg-home-kicker {
        max-width: none;
    }

    .scg-home-hero::before,
    .scg-home-hero::after {
        display: none;
    }

    .scg-home-tools-grid,
    .scg-home-grid-3 {
        grid-template-columns: 1fr;
    }

    .scg-home-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .site-content {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .inside-article {
        border-radius: 14px;
    }

    .site-branding .main-title a {
        font-size: 1.3rem;
    }

    .site-branding .main-title a::before {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 0.95rem;
    }

    .scg-card,
    .scg-card-soft {
        padding: 22px;
    }

    .scg-grid-2,
    .scg-grid-3 {
        grid-template-columns: 1fr;
    }

    .scg-section {
        margin: 36px 0;
    }

    .scg-page-titlebar {
        padding: 22px 4px 6px;
        margin-bottom: 22px;
    }

    .scg-page-title {
        font-size: clamp(1.9rem, 9vw, 2.45rem);
    }

    .scg-page-breadcrumbs {
        font-size: 0.8rem;
    }

    .scg-page-section {
        padding: 22px;
    }

    .scg-page-grid,
    .scg-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .scg-home-hero,
    .scg-home-section {
        padding: 24px;
    }

    .scg-home-actions {
        flex-direction: column;
    }

    .scg-home-button,
    a.scg-home-button {
        width: 100%;
    }
}

/* =========================================================
   Seller Cost Guide - Calculators hub
========================================================= */

.scg-calculators-hub {
    margin-top: 0;
}

.scg-calculators-intro {
    margin-bottom: 28px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 66%, #f0fdf4 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.scg-calculators-intro p {
    max-width: 760px;
    margin-bottom: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

.scg-calculators-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.scg-calculator-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.scg-calculator-card:hover,
.scg-calculator-card:focus {
    color: #0f172a;
    border-color: #86efac;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.scg-calculator-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 5px 10px;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.scg-calculator-card h2,
.scg-calculator-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
}

.scg-calculator-card p {
    margin-bottom: 18px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.58;
}

.scg-calculator-card ul {
    margin: 0 0 18px;
    padding-left: 18px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
}

.scg-calculator-card__action {
    margin-top: auto;
    color: #166534;
    font-size: 0.92rem;
    font-weight: 900;
}

.scg-calculator-card--featured {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 36%),
        #ffffff;
    border-color: #bbf7d0;
}

.scg-calculators-section {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.scg-calculators-section h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    letter-spacing: -0.035em;
}

.scg-calculators-section > p {
    max-width: 760px;
    color: #475569;
}

.scg-planned-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.scg-planned-card {
    padding: 18px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
}

.scg-planned-card strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 1rem;
}

.scg-planned-card span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 8px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.scg-planned-card p {
    margin-bottom: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.scg-calculators-note {
    margin-top: 24px;
    padding: 18px 20px;
    color: #78350f;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .scg-calculators-grid,
    .scg-planned-grid {
        grid-template-columns: 1fr;
    }

    .scg-calculator-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .scg-calculators-intro,
    .scg-calculators-section {
        padding: 22px;
    }

    .scg-calculator-card {
        padding: 22px;
    }
}

/* =========================================================
   Seller Cost Guide - Footer menu
========================================================= */

.scg-footer-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    color: #64748b;
    font-size: 0.9rem;
}

.scg-footer-copy {
    color: #64748b;
    font-size: 0.9rem;
}

.scg-footer-menu {
    margin: 0;
}

.scg-footer-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.scg-footer-menu__list a {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.scg-footer-menu__list a:hover,
.scg-footer-menu__list a:focus {
    color: #166534;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .scg-footer-inline {
        flex-direction: column;
        gap: 8px;
    }
}