/*
 * -----------------------------------------------------------------------------
 * ARQUIVO: website\public\assets\css\site.css
 * -----------------------------------------------------------------------------
 * DESCRICAO:
 * Define a interface do WBlog com visual editorial moderno, busca central e feed com sidebar.
 *
 * INDICE:
 * 0. Cabecalho do arquivo
 * 1. Variaveis globais
 * 2. Base e cabecalho
 * 3. Busca, categorias e destaques
 * 4. Feed, sidebar e paginacao
 * 5. Artigo, paginas e comentarios
 * 6. Responsividade
 * -----------------------------------------------------------------------------
 */

:root {
    --site-header-height: 98px;
    --site-bg: #000000;
    --site-surface: rgba(221, 164, 55, 0.08);
    --site-surface-strong: rgba(221, 164, 55, 0.12);
    --site-line: #111111;
    --site-accent: #dda437;
    --site-accent-soft: rgba(221, 164, 55, 0.12);
    --site-hover: #5b009a;
    --site-hover-soft: rgba(91, 0, 154, 0.22);
    --site-text: #f5f5f5;
    --site-black: #000000;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--site-bg);
    color: var(--site-text);
    font-family: "Cormorant Garamond", serif;
    line-height: 1.7;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-container {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
}

.site-main {
    padding-top: calc(var(--site-header-height) + 26px);
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: #050505;
    border-bottom: 1px solid var(--site-line);
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 12px));
}

.site-header-inner {
    min-height: var(--site-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 18px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    height: calc(var(--site-header-height) * 0.96);
    flex: 0 0 auto;
    margin-left: 8px;
}

.site-brand-image,
.site-brand-mark {
    height: 100%;
    width: auto;
    max-width: 260px;
    border: 0;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.site-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-text);
    font-size: 2rem;
    font-weight: 800;
}

.site-menu-toggle,
.site-nav a,
.blog-search-form button,
.blog-category-pill,
.blog-newsletter-form button,
.blog-sidebar-link,
.blog-pagination a,
.comment-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-menu-toggle:hover,
.site-nav a:hover,
.site-nav a.is-active,
.blog-search-form button:hover,
.blog-category-pill:hover,
.blog-category-pill.is-active,
.blog-newsletter-form button:hover,
.blog-sidebar-link:hover,
.blog-pagination a:hover,
.blog-pagination a.is-current,
.comment-form button:hover {
    border-color: var(--site-hover);
    background: var(--site-hover-soft);
    color: var(--site-text);
}

.site-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav a {
    min-width: 114px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 800;
}

.blog-top-tools,
.blog-highlight,
.blog-feed-shell,
.article-hero,
.article-shell {
    padding-bottom: 30px;
}

.blog-highlight{
    margin-bottom: 100px;
}

.blog-search-row {
    display: flex;
    justify-content: center;
}

.blog-search-form {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 12px;
}

.blog-search-form input,
.blog-newsletter-form input,
.comment-form input,
.comment-form textarea {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: #050505;
    color: var(--site-text);
    outline: none;
    font-size: 1rem;
}

.blog-search-form input:focus,
.blog-newsletter-form input:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--site-hover);
}

.blog-search-form button {
    padding: auto;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
}

.blog-search-form button i {
    font-size: 1.55rem;
    margin: auto;
}

.blog-category-area {
    margin-top: 24px;
}

.blog-category-title {
    display: block;
    margin-bottom: 12px;
    color: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-category-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.blog-category-strip::-webkit-scrollbar {
    display: none;
}

.blog-category-pill {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-media-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 15px;
}

.blog-media-frame img,
.blog-sidebar-image {
    position: absolute;
    inset: 0;
    margin: 0px auto;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.blog-media-empty {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-highlight-main {
    display: grid;
    gap: 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--site-line);
}

.blog-highlight-main h1,
.blog-secondary-item h2,
.blog-feed-copy h2,
.article-hero-single h1,
.blog-sidebar-card h3,
.article-comments-head h2,
.article-hero-copy h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.02;
    color: var(--site-text);
}

.blog-highlight-main h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.8rem);
}

.blog-highlight-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 26px;
}

.blog-secondary-item {
    padding: 0 24px;
}

.blog-secondary-item:first-child {
    padding-left: 0;
}

.blog-secondary-item:last-child {
    padding-right: 0;
}

.blog-secondary-item + .blog-secondary-item {
    border-left: 1px solid var(--site-line);
}

.blog-secondary-item h2 {
    font-size: 1.95rem;
    margin-bottom: 12px;
}

.blog-feed-grid,
.article-grid-blog {
    display: grid;
    grid-template-columns: minmax(0, 1.82fr) minmax(280px, 340px);
    gap: 42px;
    align-items: start;
}

.blog-feed-list,
.blog-feed-copy,
.blog-sidebar,
.blog-sidebar-card,
.article-body,
.article-content,
.comment-card {
    min-width: 0;
}

.blog-feed-row {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--site-line);
}

.blog-feed-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    padding-top: 2px;
}

.blog-feed-copy h2 {
    font-size: clamp(2rem, 4vw, 3.05rem);
}

.blog-highlight-meta,
.blog-feed-meta,
.article-hero-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--site-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-highlight-meta span,
.blog-feed-meta span,
.article-hero-data span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-highlight-meta i,
.blog-feed-meta i,
.article-hero-data i {
    color: var(--site-accent);
    font-size: 0.95rem;
}

.blog-inline-banner {
    margin: 10px 0 30px;
}

.blog-inline-banner a {
    display: block;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--site-line);
}

.blog-inline-banner img {
    width: 100%;
    object-fit: cover;
}

.blog-sidebar {
    display: grid;
    gap: 28px;
    width: 100%;
    max-width: 340px;
    justify-self: end;
}

.blog-sidebar-card {
    display: grid;
    gap: 24px;
    padding: clamp(24px, 3vw, 40px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        rgba(8, 8, 8, 0.94);
    border: 1px solid var(--site-line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.newsletter-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        rgba(8, 8, 8, 0.94);
}

.blog-sidebar-card h3 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 2.9rem);
    text-align: left;
}

.blog-sidebar-card p,
.blog-feed-empty p,
.article-comments-head p,
.comment-card p,
.article-hero-copy p {
    margin: 0;
    color: var(--site-text);
}

.blog-sidebar-card p {
    text-align: left;
    color: rgba(245, 245, 245, 0.82);
    line-height: 1.8;
}

.blog-sidebar-intro {
    max-width: none;
    margin: 0;
    color: rgba(245, 245, 245, 0.8);
}

.blog-newsletter-form,
.comment-form {
    display: grid;
    gap: 12px;
}

.blog-newsletter-form button,
.blog-sidebar-link,
.comment-form button {
    min-height: 54px;
    padding: 0 24px;
    font-size: 1rem;
    font-weight: 800;
}

.blog-newsletter-form button,
.blog-sidebar-link {
    min-width: 148px;
    margin: 4px auto 0;
}

.blog-newsletter-form input {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.94);
    font-size: 1.05rem;
    line-height: 1.5;
}

.blog-sidebar-link {
    justify-self: center;
}

.blog-sidebar-image-wrap {
    margin-bottom: 2px;
}

.blog-feed-empty {
    padding: 12px 0;
}

.blog-feed-empty h2 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.blog-pagination a {
    min-height: 42px;
    padding: 0 16px;
    font-weight: 700;
}

.article-hero-single,
.article-hero-shell {
    display: grid;
    gap: 18px;
}

.article-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--site-line);
    background: rgba(221, 164, 55, 0.05);
}

.article-hero-single h1,
.article-hero-copy h1 {
    font-size: clamp(2.7rem, 5.8vw, 4.7rem);
}

.article-body {
    padding-bottom: 28px;
}

.article-content {
    font-size: 1.04rem;
}

.article-grid-page {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}

.article-page-body {
    display: grid;
    gap: 28px;
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        rgba(8, 8, 8, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.article-page-body.is-about {
    gap: 34px;
}

.page-header-band,
.page-subtitle-band {
    position: relative;
    width: 100%;
}

.about-page-band {
    padding: clamp(40px, 7vw, 82px) 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background-color: #dda437;
}

.about-page-band-inner {
    display: flex;
    align-items: flex-end;
    min-height: 84px;
}

.about-page-band-inner h1 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.about-page-subtitle {
    padding: 22px 0 clamp(34px, 5vw, 48px);
    border-bottom: 1px solid #dda437;
}

.about-page-subtitle-inner p {
    margin: 0;
    max-width: 100%;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.78);
}

.about-page-shell {
    padding-top: clamp(32px, 5vw, 56px);
}

.about-page-grid {
    grid-template-columns: minmax(0, 980px);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(221, 164, 55, 0.28);
    border-radius: 15px;
    background: rgba(221, 164, 55, 0.08);
    color: var(--site-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.page-hero-copy {
    gap: 18px;
    max-width: 900px;
}

.article-hero-about .article-hero-copy h1 {
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    line-height: 0.96;
}

.article-hero-about .article-hero-copy p {
    max-width: 34ch;
    font-size: clamp(1.1rem, 2.1vw, 1.5rem);
    line-height: 1.75;
    color: rgba(245, 245, 245, 0.82);
}

.page-summary-card {
    padding: 20px 22px;
    border-left: 4px solid var(--site-accent);
    border-radius: 15px;
    background: rgba(221, 164, 55, 0.06);
}

.page-summary-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.84);
}

.page-prose {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(245, 245, 245, 0.92);
}

.page-prose.is-about {
    font-size: clamp(1.08rem, 1.45vw, 1.18rem);
    line-height: 2;
    letter-spacing: 0.01em;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.page-prose > * + * {
    margin-top: 1.2em;
}

.prose h2,
.prose h3,
.prose h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.08;
}

.page-prose h2,
.page-prose h3,
.page-prose h4 {
    margin-top: 1.7em;
    margin-bottom: 0.45em;
    color: var(--site-text);
}

.page-prose h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
}

.page-prose h3 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.page-prose p,
.page-prose li,
.page-prose blockquote {
    font-size: inherit;
    line-height: inherit;
}

.page-prose p {
    color: rgba(245, 245, 245, 0.88);
}

.page-prose.is-about p {
    max-width: none;
    color: rgba(245, 245, 245, 0.9);
}

.page-prose strong {
    color: var(--site-text);
}

.page-prose em {
    color: rgba(245, 245, 245, 0.82);
}

.page-prose ul,
.page-prose ol {
    padding-left: 24px;
}

.page-prose li + li {
    margin-top: 0.55em;
}

.page-prose blockquote {
    margin: 1.6em 0;
    padding: 18px 22px;
    border-left: 3px solid rgba(221, 164, 55, 0.45);
    background: rgba(221, 164, 55, 0.04);
    color: rgba(245, 245, 245, 0.82);
}

.prose a {
    color: var(--site-accent);
}

.prose ul,
.prose ol {
    padding-left: 20px;
}

.page-prose img,
.page-prose iframe,
.page-prose figure {
    display: block;
    max-width: 100%;
}

.page-prose figure {
    margin: 1.8em 0;
}

.page-prose iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 15px;
}

.article-banner {
    margin-bottom: 24px;
}

.article-comments {
    margin-top: 34px;
}

.article-comments-head {
    margin-bottom: 18px;
}

.article-comments-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 22px;
}

.contact-page-shell {
    padding-top: clamp(34px, 5vw, 56px);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
    gap: 26px;
    align-items: start;
}

.contact-form-card,
.contact-sidebar-panel {
    border-radius: 30px;
    background-color: #131313;   
}

.contact-form-card,
.contact-sidebar-panel {
    display: grid;
    gap: 24px;
    padding: clamp(24px, 3vw, 40px);
}

.contact-section-heading {
    display: grid;
    gap: 12px;
}

.contact-section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.02;
}

.contact-section-heading p,
.contact-form-intro {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.8);
}

.contact-form-intro > *:first-child {
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border-radius: 18px;
    border-color: var(--site-line);
    background: rgba(8, 8, 8, 0.94);
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 245, 245, 0.45);
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form button {
    min-height: 54px;
    padding: 0 24px;
    font-size: 1rem;
    font-weight: 800;
    min-width: 148px;
    margin: 4px auto 0;
    justify-self: center;
}

.contact-sidebar {
    min-width: 0;
}

.contact-sidebar-panel {
    gap: 18px;
}

.contact-section-heading.is-sidebar h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.contact-sidebar-list {
    display: grid;
    gap: 10px;
}

.contact-sidebar-card, 
.contact-sidebar-card2 {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 5px;
}

.contact-sidebar-card2 strong,
.contact-sidebar-card2 p {
    margin: 0;
}

.contact-sidebar-card2 strong {
    display: block;
    font-size: 1rem;
    color: var(--site-text);
}

.contact-sidebar-card2 p {
    margin-top: 4px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.76);
}

.contact-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    color: var(--site-accent);
    font-size: 30pt;
}

.comment-list {
    display: grid;
    gap: 14px;
}

.comment-card,
.comment-form {
    padding: 20px;;
}

.comment-card strong,
.comment-card small {
    display: block;
}

.comment-card small {
    margin-top: 4px;
    margin-bottom: 10px;
    color: var(--site-accent);
}

.site-alert {
    margin-bottom: 12px;
    padding: 13px 14px;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: rgba(221, 164, 55, 0.05);
    color: var(--site-accent);
}

.site-alert-success {
    border-color: rgba(91, 0, 154, 0.7);
    background: rgba(91, 0, 154, 0.18);
    color: var(--site-text);
}

.site-bottom-bar {
    padding: 18px 0 24px;
}

.site-bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--site-line);
    padding-top: 18px;
}

.site-bottom-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.site-social-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: rgba(221, 164, 55, 0.08);
    color: var(--site-accent);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-social-links a:hover {
    border-color: var(--site-hover);
    background: var(--site-hover-soft);
    color: var(--site-text);
}

.site-bottom-brand img {
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

.site-bottom-bar p {
    margin: 0 0 0 auto;
    color: var(--site-accent);
    text-align: right;
}

.article-hero-shell.is-centered,
.article-hero-copy.is-centered {
    justify-items: center;
    text-align: center;
}

@media (max-width: 1120px) {
    .site-menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 15px;
        border: 1px solid var(--site-line);
        background: rgba(0, 0, 0, 0.98);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        min-width: 0;
        width: 100%;
    }

    .blog-highlight-secondary,
    .blog-feed-grid,
    .article-grid-blog,
    .article-comments-grid,
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-secondary-item {
        padding: 0 0 18px;
        margin-bottom: 18px;
    }

    .blog-secondary-item + .blog-secondary-item {
        border-left: 0;
        border-top: 1px solid var(--site-line);
        padding-top: 18px;
    }
}

@media (max-width: 820px) {
    .site-container {
        width: min(100% - 28px, 1380px);
    }

    .site-header-inner {
        padding-left: 0;
    }

    .site-brand {
        margin-left: 0;
    }

    .blog-search-form {
        grid-template-columns: minmax(0, 1fr) 66px;
    }

    .blog-feed-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .article-hero-single h1,
    .article-hero-copy h1,
    .blog-highlight-main h1,
    .blog-feed-copy h2 {
        line-height: 1.05;
    }

    .article-page-body {
        padding: 24px 20px;
        border-radius: 15px;
    }

    .contact-form-card,
    .contact-sidebar-panel,
    .contact-sidebar-card,
    .blog-sidebar-card {
        border-radius: 24px;
    }

    .about-page-band {
        padding-top: 32px;
        padding-bottom: 18px;
    }

    .about-page-band-inner {
        min-height: auto;
    }

    .about-page-band-inner h1 {
        max-width: 100%;
        font-size: clamp(2.5rem, 11vw, 3.6rem);
    }

    .about-page-subtitle {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .about-page-subtitle-inner p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .contact-page-layout {
        gap: 18px;
    }

    .article-hero-about .article-hero-copy p,
    .page-summary-card p,
    .page-prose,
    .page-prose.is-about {
        font-size: 1rem;
    }

    .site-bottom-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-bottom-meta {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-bottom-bar p {
        margin-left: 0;
        text-align: left;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}
