/* Manchete Brasil - layout publico clean, verde e responsivo */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #f3f7f4;
    --bg-card: #ffffff;
    --primary: #0b6b43;
    --primary-dark: #06452c;
    --primary-soft: #e7f4ed;
    --secondary: #e5b700;
    --secondary-soft: #fff7d1;
    --text-main: #1b2420;
    --text-muted: #66736d;
    --border: #dce7e1;
    --border-strong: #bfd2c8;
    --shadow-sm: 0 1px 2px rgba(18, 57, 39, .06);
    --shadow-md: 0 12px 28px rgba(18, 57, 39, .09);
    --radius: 8px;
    --radius-lg: 10px;
    --container: 1180px;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    color: #ffffff;
    border-bottom: 4px solid var(--secondary);
    box-shadow: 0 8px 22px rgba(7, 52, 31, .16);
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    padding-bottom: 12px;
}

.logo-link {
    color: #ffffff;
}

.logo-link:hover {
    color: #ffffff;
}

.logo-text {
    color: #ffffff !important;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.logo-text::first-word,
.logo-text span {
    color: var(--secondary) !important;
}

.search-box-widget {
    width: 100%;
    max-width: 340px;
}

.search-box-widget form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.search-box-widget input,
.search-box-widget select {
    min-width: 0;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #ffffff;
    color: var(--text-main);
    padding: 10px 12px;
    outline: none;
}

.search-box-widget input:focus,
.search-box-widget select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 107, 67, .12);
}

.search-box-widget button,
.btn,
.btn-primary {
    border: 0;
    border-radius: 7px;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 16px !important;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a {
    color: rgba(255, 255, 255, .9);
    border-bottom: 2px solid transparent;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    border-bottom-color: var(--secondary);
}

/* Breaking ticker */
.breaking-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 22px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.breaking-label {
    flex: 0 0 auto;
    background: var(--primary);
    color: #ffffff;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.breaking-ticker {
    min-width: 0;
    overflow: hidden;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Home */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, .85fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 34px;
}

.hero-main {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #0c2117;
    box-shadow: var(--shadow-md);
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    opacity: .78;
    transition: transform .25s ease;
}

.hero-main:hover .hero-img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 70%;
    padding: clamp(20px, 4vw, 34px);
    color: #ffffff;
    background: linear-gradient(to top, rgba(5, 24, 15, .94), rgba(5, 24, 15, .45), transparent);
}

.hero-tag,
.card-tag,
.article-category {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-tag {
    align-self: flex-start;
    margin-bottom: 10px;
    border-radius: 5px;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 5px 8px;
}

.hero-title {
    max-width: 780px;
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
}

.hero-title a:hover {
    color: var(--secondary);
}

.hero-summary {
    max-width: 720px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
}

.hero-meta {
    color: rgba(255, 255, 255, .78);
}

.hero-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.side-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    min-height: 118px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.side-card:hover {
    border-color: var(--primary);
}

.side-card-img {
    width: 112px;
    height: 94px;
    object-fit: cover;
    border-radius: 7px;
    background: var(--primary-soft);
}

.side-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.side-card-content {
    min-width: 0;
}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
    margin-bottom: 44px;
}

.content-left,
.content-right {
    min-width: 0;
}

.public-sidebar {
    display: grid;
    gap: 18px;
}

.category-block-wrap {
    margin-bottom: 36px !important;
}

.section-title-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--border);
}

.section-title {
    margin: 0;
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 8px;
    background: var(--secondary);
    border-radius: 3px;
}

.see-more {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    min-width: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.card-img-wrap {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--primary-soft);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 15px;
}

.card-title {
    margin: 5px 0 8px;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.card-summary {
    margin: 0 0 12px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.card-meta {
    margin-top: auto;
    color: var(--text-muted);
    font-size: 12px;
}

/* Sidebar */
.sidebar-widget {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    margin: 0 0 14px;
    border-left: 4px solid var(--secondary);
    padding-left: 10px;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.most-read-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 0;
    border-top: 1px solid var(--border);
}

.most-read-item:first-of-type {
    border-top: 0;
}

.most-read-num {
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    opacity: .45;
}

.most-read-title {
    min-width: 0;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.ad-slot {
    margin: 16px 0;
    padding: 18px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    background: #fbfdfc;
    color: var(--text-muted);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.ad-slot,
.ad-placeholder {
    width: 100%;
}

.ad-slot {
    border: 1px solid var(--border);
    background: #f8fbf9;
    border-radius: 12px;
}

.ad-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ad-slot img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.ad-placeholder strong {
    display: block;
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 4px;
}

.ad-placeholder p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.ad-placeholder a {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 900;
}

.sponsored-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--secondary-soft);
    color: var(--primary-dark);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.commercial-page {
    padding-bottom: 48px;
}

.commercial-hero {
    margin: 24px 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 6px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 44px);
    box-shadow: var(--shadow-sm);
}

.commercial-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.commercial-hero h1 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.commercial-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
    font-size: 18px;
}

.media-kit-hero {
    background:
        linear-gradient(135deg, rgba(11, 107, 67, .08), rgba(255, 255, 255, 0) 52%),
        #ffffff;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof-row span {
    border: 1px solid rgba(11, 107, 67, .18);
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 900;
}

.commercial-grid,
.price-grid,
.media-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.commercial-grid article,
.price-grid div,
.media-stats div,
.commercial-form-wrap {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.media-stats-featured div {
    border-color: rgba(11, 107, 67, .18);
    background: linear-gradient(180deg, #ffffff, #f5fbf7);
}

.commercial-band {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: center;
    margin: 28px 0;
    border-radius: var(--radius-lg);
    background: var(--primary-dark);
    color: #ffffff;
    padding: clamp(22px, 4vw, 34px);
}

.commercial-band .commercial-kicker {
    color: #b7f0cf;
}

.commercial-band h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.08;
}

.commercial-band p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.commercial-grid h2,
.commercial-prices h2,
.commercial-form-wrap h2 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 20px;
}

.commercial-grid p,
.commercial-form-wrap p {
    margin: 0;
    color: var(--text-muted);
}

.commercial-prices {
    margin: 28px 0;
}

.price-grid strong,
.media-stats strong {
    display: block;
    color: var(--primary-dark);
    font-size: 20px;
}

.price-grid span,
.media-stats span {
    color: var(--text-muted);
    font-weight: 700;
}

.commercial-note {
    margin: -8px 0 0;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}

.city-heatmap {
    margin: 32px 0;
}

.city-heatmap-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.city-heatmap-head h2,
.city-market-panel h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.08;
}

.city-heatmap-head p,
.city-market-panel p {
    max-width: 740px;
    margin: 0;
    color: var(--text-muted);
}

.city-heatmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.city-heat-card,
.city-market-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.city-heat-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    color: inherit;
    text-decoration: none;
}

.city-heat-card:hover {
    border-color: rgba(11, 107, 67, .28);
    transform: translateY(-1px);
}

.city-heat-card-top,
.city-heat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.city-heat-card-top strong {
    color: var(--primary-dark);
    font-size: 17px;
    line-height: 1.15;
}

.city-heat-card-top span {
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 900;
}

.city-heat-score {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9f3ed;
}

.city-heat-score span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #62c784, var(--primary));
}

.city-heat-meta {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
}

.heat-alta .city-heat-score span,
.heat-muito_alta .city-heat-score span {
    background: linear-gradient(90deg, #28a765, #0b6b43);
}

.heat-media .city-heat-score span {
    background: linear-gradient(90deg, #9bd670, #4f9f53);
}

.city-market-panel {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;
    align-items: center;
    margin: 20px 0 30px;
    padding: 22px;
}

.city-market-meter {
    display: grid;
    gap: 8px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    padding: 16px;
}

.city-market-meter strong {
    color: var(--primary-dark);
    font-size: 34px;
    line-height: 1;
}

.city-market-meter span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.commercial-form-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 20px;
    margin-top: 28px;
}

.commercial-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.commercial-form textarea,
.commercial-form button {
    grid-column: 1 / -1;
}

.commercial-form input,
.commercial-form select,
.commercial-form textarea,
.newsletter-widget input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 11px 12px;
    font: inherit;
}

.commercial-form button,
.newsletter-widget button,
.commercial-cta {
    display: inline-flex;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    background: var(--primary);
    color: #ffffff;
    padding: 11px 14px;
    font-weight: 900;
    cursor: pointer;
}

.commercial-cta {
    margin-top: 12px;
}

.form-success,
.form-error {
    margin-top: 14px;
    border-radius: 7px;
    padding: 12px;
    font-weight: 800;
}

.form-success {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.form-error {
    background: #fff1f1;
    color: #9f1d1d;
}

.newsletter-widget {
    background: var(--primary-soft);
}

.newsletter-widget p {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 13px;
}

.newsletter-widget form {
    display: grid;
    gap: 10px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 700;
}

/* Article */
.article-header {
    margin-bottom: 22px;
}

.article-title {
    margin: 8px 0 10px;
    color: var(--text-main);
    font-size: clamp(32px, 4.8vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.article-subtitle {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.42;
}

.article-author-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    margin: 20px 0 24px;
    padding: 13px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

.article-cover-wrap {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    margin-bottom: 26px;
    border-radius: var(--radius-lg);
    background: var(--primary-soft);
}

.article-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    color: #26332d;
    font-size: 18px;
    line-height: 1.82;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin: 0 0 22px;
}

.article-content h2,
.article-content h3 {
    margin: 32px 0 12px;
    color: var(--primary-dark);
    font-weight: 900;
    line-height: 1.2;
}

.source-box,
.author-signature-box {
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
}

.source-box {
    margin-top: 28px;
    padding: 18px;
}

.share-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 7px;
    padding: 7px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.share-btn:hover {
    color: #ffffff;
    filter: brightness(.96);
}

.share-btn.whatsapp {
    background: #1f9d58;
}

.share-btn.twitter {
    background: #2474c8;
}

/* Footer */
.site-footer {
    margin-top: 50px;
    padding: 42px 0 22px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(160px, .7fr) minmax(160px, .7fr);
    gap: 28px;
}

.footer-brand-title {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-brand-title span {
    color: var(--primary);
}

.footer-brand-desc,
.footer-links-list a,
.footer-bottom {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links-title {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links-list {
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.pagination a,
.pagination span {
    min-width: 38px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #ffffff;
    padding: 8px 11px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.pagination .current,
.pagination span.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid,
    .main-layout {
        grid-template-columns: 1fr;
    }

    .content-right {
        order: 2;
    }

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

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

    .commercial-grid,
    .price-grid,
    .media-stats,
    .city-heatmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commercial-form-wrap {
        grid-template-columns: 1fr;
    }

    .commercial-band,
    .city-market-panel {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .site-header {
        position: static;
    }

    .header-top-row {
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: 0;
        gap: 12px !important;
        padding: 14px 0 12px !important;
    }

    .logo-text {
        text-align: center;
        font-size: 26px;
    }

    .search-box-widget {
        max-width: none !important;
    }

    .search-box-widget form {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .header-nav-row {
        padding-top: 8px !important;
    }

    .main-nav {
        gap: 14px !important;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .breaking-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin: 14px 0 18px;
    }

    .breaking-ticker {
        width: 100%;
        white-space: normal;
    }

    .hero-grid {
        gap: 16px;
        margin-bottom: 26px;
    }

    .hero-main {
        min-height: 310px;
    }

    .hero-img {
        min-height: 310px;
    }

    .hero-overlay {
        padding: 20px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-summary {
        font-size: 15px;
    }

    .side-card {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 102px;
    }

    .side-card-img {
        width: 92px;
        height: 82px;
    }

    .grid-cards,
    .public-sidebar,
    .footer-grid,
    .commercial-band,
    .commercial-grid,
    .city-heatmap-grid,
    .price-grid,
    .media-stats,
    .commercial-form {
        grid-template-columns: 1fr;
    }

    .card-body {
        min-height: 0;
    }

    .section-title {
        font-size: 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.72;
    }

    .article-author-row {
        display: grid;
        justify-content: stretch;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 440px) {
    .search-box-widget form {
        grid-template-columns: 1fr;
    }

    .hero-main,
    .hero-img {
        min-height: 300px;
    }

    .hero-title {
        font-size: 26px;
    }

}

@media (max-width: 340px) {
    .side-card {
        grid-template-columns: 1fr;
    }

    .side-card-img {
        width: 100%;
        height: 160px;
    }
}
