/* Pet Suppliers Brazil category landing pages */
:root {
    --primary-dark: #064533;
    --primary: #007f5f;
    --primary-light: #13a37f;
    --accent: #f2b705;
    --white: #ffffff;
    --bg-light: #f4fbf7;
    --bg-section: #f8fcf9;
    --blue-soft: #e5f6ef;
    --text-dark: #2f3b4f;
    --text-body: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 4px rgba(6, 69, 51, .06);
    --shadow-md: 0 8px 24px rgba(6, 69, 51, .10);
    --shadow-lg: 0 20px 48px rgba(6, 69, 51, .14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: 0; cursor: pointer; font: inherit; }
.container { width: calc(100% - 40px); max-width: var(--container); margin: 0 auto; }
h1, h2, h3 { font-family: "Outfit", "Inter", sans-serif; color: var(--text-dark); line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(36px, 5.7vw, 68px); font-weight: 800; }
h2 { font-size: clamp(27px, 3.3vw, 40px); font-weight: 760; }
h3 { font-size: 21px; font-weight: 720; }
h1,
h2,
h3,
.hero-single figcaption { overflow-wrap: anywhere; }
p { color: var(--text-body); }

.site-header {
    position: relative;
    z-index: 50;
    height: var(--header-h);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 52px; height: 52px; padding: 4px; border-radius: 50%; object-fit: contain; background: var(--white); box-shadow: var(--shadow-sm); }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: "Outfit", "Inter", sans-serif; color: var(--primary); font-size: 21px; }
.brand-text span { color: var(--text-light); font-size: 12px; font-weight: 650; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a,
.nav-more-button {
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 14.5px;
    font-weight: 650;
    background: transparent;
    white-space: nowrap;
}
.main-nav a:hover,
.nav-more-button:hover,
.nav-more.is-open .nav-more-button { color: var(--primary); background: var(--bg-light); }
.nav-more { position: relative; }
.nav-more-button::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-more-button { display: inline-flex; align-items: center; gap: 2px; }
.nav-more-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu,
.nav-more.is-open .nav-more-menu { display: grid; gap: 2px; }
.nav-more-menu a { display: block; white-space: nowrap; }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--primary-dark);
    align-items: center;
    justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 750;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); box-shadow: 0 10px 26px rgba(0, 127, 95, .20); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); border: 2px solid var(--accent); box-shadow: 0 10px 24px rgba(255, 152, 0, .22); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--primary-dark); border: 1.5px solid rgba(0, 127, 95, .26); }
.btn-outline:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.hero {
    padding: 70px 0 70px;
    background:
        linear-gradient(90deg, rgba(245, 249, 255, .98), rgba(245, 249, 255, .88), rgba(245, 249, 255, .55)),
        url("images/hero-supply-bg.webp") center right / cover no-repeat,
        var(--bg-light);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--text-light); font-size: 13px; font-weight: 650; }
.breadcrumbs a { color: var(--primary); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); gap: 48px; align-items: center; }
.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(234, 244, 255, .92);
    border: 1px solid rgba(19, 163, 127, .22);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hero h1 span { color: var(--primary); }
.hero-lead { max-width: 660px; margin: 22px 0 30px; color: #43536b; font-size: clamp(17px, 2vw, 20px); }
.source-note { max-width: 680px; margin: -12px 0 28px; padding: 12px 14px; border-left: 3px solid var(--accent); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .78); color: var(--text-light); font-size: 14px; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: 24px; margin-bottom: 14px; }
.hero-card ul { display: grid; gap: 12px; }
.hero-card li { padding-left: 20px; position: relative; color: var(--text-body); font-size: 15px; }
.hero-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.section-pad { padding: 78px 0; }
.section-soft { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 810px; margin: 0 auto 38px; text-align: center; }
.section-head p { margin-top: 13px; color: var(--text-light); font-size: 17px; }
.kicker { display: inline-block; margin-bottom: 11px; color: #b86b00; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-card, .product-card, .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.info-card { padding: 24px; }
.info-card h3 { margin-bottom: 9px; font-size: 20px; }
.info-card p { color: var(--text-light); font-size: 14.8px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(19, 163, 127, .34); }
.product-image { aspect-ratio: 4 / 3; background: var(--blue-soft); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.product-image a { display: block; width: 100%; height: 100%; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-body { padding: 20px; }
.product-body h3 { margin-bottom: 9px; font-size: 20px; }
.product-body h3 a { color: inherit; transition: color .2s ease; }
.product-body h3 a:hover { color: var(--primary); }
.product-body p { color: var(--text-light); font-size: 14.5px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0 18px; }
.product-meta span { padding: 6px 9px; border-radius: 999px; background: var(--bg-light); color: var(--primary-dark); font-size: 12px; font-weight: 750; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 38px; align-items: start; }
.copy-block p { margin-top: 14px; color: var(--text-light); }
.copy-list { display: grid; gap: 12px; margin-top: 20px; }
.copy-list li { padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-body); }
.city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.city-card { padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.city-card h3 { margin-bottom: 8px; font-size: 19px; }
.city-card p { color: var(--text-light); font-size: 14.5px; }
.city-card a { display: inline-flex; margin-top: 14px; color: var(--primary); font-weight: 800; }
.city-card a:hover { color: var(--primary-light); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.faq-item { padding: 22px; }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: var(--text-light); font-size: 14.5px; }
.faq-page-intro { display: grid; gap: 12px; max-width: 900px; margin: 0 0 28px; }
.faq-page-intro p { color: var(--text-light); font-size: 17px; }
.faq-grid-full { align-items: stretch; }
.faq-grid-full .faq-item { min-height: 154px; }
.cta-band { background: var(--primary-dark); color: var(--white); padding: 58px 0; }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner p { margin-top: 10px; opacity: .82; max-width: 760px; }

.site-footer { background: #053326; color: rgba(255, 255, 255, .86); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr .75fr; gap: 32px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; padding: 4px; border-radius: 50%; object-fit: contain; background: var(--white); }
.footer-brand strong, .footer-col h3 { color: var(--white); }
.footer-col h3 { margin-bottom: 14px; font-size: 17px; }
.footer-col p, .footer-col a { color: rgba(255, 255, 255, .74); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-links { display: grid; gap: 9px; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--white); font-weight: 800; }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { color: rgba(255, 255, 255, .68); font-size: 13px; }

.topline { background: var(--primary-dark); color: rgba(255, 255, 255, .88); font-size: 13.5px; font-weight: 650; }
.topline-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topline span { min-width: 0; overflow-wrap: anywhere; }
.topline strong { color: var(--white); }
.topline a { color: var(--white); font-weight: 800; white-space: nowrap; }

.hero-panel { overflow: hidden; padding: 14px; border-radius: var(--radius-md); background: var(--primary-dark); box-shadow: var(--shadow-lg); }
.hero-single { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--blue-soft); aspect-ratio: 4 / 3; }
.hero-single img { width: 100%; height: 100%; object-fit: cover; }
.hero-single figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 12px; border-radius: var(--radius-sm); background: rgba(6, 69, 51, .88); color: var(--white); font-size: 14px; font-weight: 800; }
.panel-body { padding: 19px 4px 4px; }
.panel-body h2 { margin-bottom: 10px; color: var(--white); font-size: 23px; }
.panel-body p { color: rgba(255, 255, 255, .78); font-size: 14.5px; }
.market-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(0, 127, 95, .18); border-left: 6px solid var(--accent); background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-md); }
.market-strip div { padding: 18px 20px; border-right: 1px solid var(--border); }
.market-strip div:last-child { border-right: 0; }
.market-strip strong { display: block; color: var(--text-dark); font-size: 21px; line-height: 1.15; }
.market-strip span { color: var(--text-light); font-size: 13px; font-weight: 750; }

.blog-entry-strip { padding: 34px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.blog-entry-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr) auto; gap: 20px; align-items: center; }
.blog-entry-inner h2 { margin-bottom: 8px; font-size: clamp(25px, 2.5vw, 34px); }
.blog-entry-inner p { max-width: 660px; color: var(--text-light); font-size: 16px; }
.blog-entry-card { display: grid; gap: 5px; padding: 17px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-section); box-shadow: var(--shadow-sm); }
.blog-entry-card span { color: #b86b00; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.blog-entry-card strong { color: var(--text-dark); font-size: 18px; line-height: 1.3; }
.blog-entry-card em { color: var(--primary); font-style: normal; font-weight: 850; }

.section-head h2 { font-size: clamp(30px, 3vw, 46px); line-height: 1.14; }
.buyer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.buyer-card { min-height: 188px; padding: 23px; background: var(--white); border: 1px solid var(--border); border-top: 4px solid rgba(0, 127, 95, .72); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.buyer-card .num { color: var(--accent); font-size: 14px; font-weight: 900; }
.buyer-card h3 { margin: 15px 0 10px; font-size: 20px; }
.buyer-card p { color: var(--text-light); font-size: 14.5px; }

.product-layout { display: grid; grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); gap: 28px; align-items: start; }
.product-aside { position: sticky; top: 104px; padding: 24px; border-radius: var(--radius-sm); background: linear-gradient(180deg, var(--primary-dark), #1e293b); color: var(--white); }
.product-aside h2,
.product-aside p { color: var(--white); }
.product-aside p { margin-top: 12px; opacity: .8; }
.product-layout .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-layout .product-card { display: grid; grid-template-columns: 176px minmax(0, 1fr); min-height: 188px; }
.product-layout .product-image { aspect-ratio: auto; height: 100%; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tag-row span { padding: 5px 8px; border-radius: var(--radius-sm); background: var(--blue-soft); color: var(--primary-dark); font-size: 12px; font-weight: 800; }

.route-list { display: grid; gap: 12px; counter-reset: route; }
.route-list li { counter-increment: route; position: relative; padding: 18px 18px 18px 58px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.route-list li::before { content: counter(route); position: absolute; left: 18px; top: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--primary-dark); color: var(--white); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr); gap: 42px; align-items: start; }
.contact-copy p { margin-top: 14px; color: var(--text-light); }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-list li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; align-items: start; }
.contact-list svg { width: 38px; height: 38px; padding: 8px; color: var(--primary); background: var(--blue-soft); border-radius: var(--radius-sm); }
.contact-list a { color: var(--primary); font-weight: 800; }
.form-card { padding: 26px; background: var(--white); border: 1px solid var(--border); border-top: 5px solid var(--primary); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-card label:not(.hp-field) { display: grid; gap: 7px; color: var(--text-dark); font-size: 13px; font-weight: 800; }
.form-card label[data-field="message"] { margin-top: 16px; }
.form-card input,
.form-card textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 13px; color: var(--text-dark); background: var(--white); outline: none; font: inherit; }
.form-card textarea { min-height: 156px; resize: vertical; }
.form-card input:focus,
.form-card textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 127, 95, .14); }
.form-card label.invalid input,
.form-card label.invalid textarea { border-color: #d92d20; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.form-note { color: var(--text-light); font-size: 13px; }
.form-status { margin-top: 14px; min-height: 22px; color: var(--primary-dark); font-weight: 850; }
.form-status.error { color: #b42318; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; padding: 24px; background: rgba(15, 23, 42, .56); }
.modal.open { display: grid; }
.modal-box { width: min(100%, 420px); padding: 28px; text-align: center; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.modal-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: var(--radius-sm); background: var(--blue-soft); color: var(--primary); }
.modal-icon svg { width: 30px; height: 30px; }
.modal-box p { margin: 10px 0 18px; color: var(--text-light); }

.footer-col { min-width: 0; }
.footer-market .footer-links { grid-template-columns: repeat(2, max-content); column-gap: 42px; row-gap: 8px; }
.footer-market .footer-links a { white-space: nowrap; }
.footer-col p,
.footer-col a { overflow-wrap: anywhere; }
.hero-grid,
.hero-panel,
.hero-single,
.hero-grid > *,
.contact-grid > *,
.product-layout > *,
.blog-entry-inner > *,
.market-strip > div { min-width: 0; }
.hero-lead,
.source-note,
.panel-body p,
.product-body p,
.buyer-card p,
.contact-copy p,
.contact-list span,
.form-note { overflow-wrap: anywhere; }

@media (max-width: 980px) {
    .hero-grid, .split { grid-template-columns: 1fr; }
    .content-grid, .product-grid, .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .topline-inner, .product-layout, .contact-grid, .blog-entry-inner { display: grid; grid-template-columns: 1fr; align-items: start; }
    .buyer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-aside { position: static; }
    .market-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .market-strip div:nth-child(2) { border-right: 0; }
    .market-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 740px) {
    .container { width: calc(100% - 28px); max-width: var(--container); }
    .site-header, .header-inner { height: 68px; }
    .brand img { width: 46px; height: 46px; padding: 3px; }
    .brand-text span { display: none; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        top: 68px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }
    body.menu-open .main-nav { display: flex; }
    .main-nav a,
    .nav-more-button { width: 100%; padding: 13px 14px; text-align: left; }
    .nav-more { width: 100%; }
    .nav-more-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 4px 0 0 12px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    .nav-more:hover .nav-more-menu,
    .nav-more:focus-within .nav-more-menu { display: none; }
    .nav-more.is-open .nav-more-menu { display: grid; gap: 2px; }
    .nav-more-menu a { white-space: normal; }
    h1 { font-size: 32px; line-height: 1.12; }
    .hero { padding-top: 48px; }
    .hero-grid { gap: 30px; }
    .hero-panel { max-width: 100%; padding: 10px; }
    .hero-single figcaption { left: 10px; right: 10px; bottom: 10px; font-size: 12px; line-height: 1.3; }
    .hero-actions .btn, .product-actions .btn, .cta-inner .btn { width: 100%; }
    .content-grid, .product-grid, .city-grid, .faq-grid, .footer-grid, .buyer-grid, .form-grid, .market-strip { grid-template-columns: 1fr; }
    .product-layout .product-card { grid-template-columns: 1fr; }
    .product-layout .product-image { aspect-ratio: 4 / 3; }
    .market-strip div { border-right: 0; border-bottom: 1px solid var(--border); }
    .market-strip div:last-child { border-bottom: 0; }
    .footer-market .footer-links { grid-template-columns: 1fr; }
    .topline-inner { gap: 6px; padding: 8px 0; }
    .topline a { white-space: normal; }
    .section-pad { padding: 62px 0; }
}
