.page-section.page-content {
    max-width: var(--site-max, 1120px);
}

/* Keep long-form copy readable inside the site container */
.page-section.page-content > :where(p, h2, h3, ul, ol, blockquote, table),
.page-article > :where(p, h2, h3, ul, ol, blockquote, table) {
    max-width: 42rem;
}

.page-section.page-content > h2:first-child,
.page-article > h2:first-child,
.page-article > h3:first-child {
    margin-top: 0;
}

.page-section.page-content img,
.page-article img {
    display: block;
    max-width: min(100%, 48rem);
    height: auto;
    margin: 1.25rem 0;
}

.page-video {
    position: relative;
    max-width: min(100%, 48rem);
    aspect-ratio: 16 / 9;
    margin: 1.25rem 0 0;
    background: #1a171b;
    border-radius: 4px;
    overflow: hidden;
}

.page-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.page-section {
    padding: 0 0 4rem;
}

.page-section__lead {
    margin: 0 0 2rem;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1a171b;
}

/* Long-form article body */
.page-article {
    font-family: var(--font-sans, Ubuntu, Arial, sans-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a171b;
}

.page-article > *:first-child {
    margin-top: 0;
}

.page-article h2 {
    margin: 2.35rem 0 1rem;
    padding: 0;
    font-family: var(--font-sans, Ubuntu, Arial, sans-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #1a171b;
}

.page-article h2::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-top: 0.7rem;
    background: #8b1e1e;
    border-radius: 2px;
}

.page-article h3 {
    margin: 1.85rem 0 0.65rem;
    padding: 0.1rem 0 0.1rem 0.9rem;
    border-left: 3px solid #8b1e1e;
    font-family: var(--font-sans, Ubuntu, Arial, sans-serif);
    font-size: clamp(1.08rem, 1.7vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
    color: #1a171b;
}

.page-article p {
    margin: 0 0 1em;
}

.page-article ul,
.page-article ol {
    margin: 0 0 1em;
    padding-left: 1.4em;
    max-width: 42rem;
}

.page-article li {
    margin-bottom: 0.35em;
}

.page-article a {
    color: #8b1e1e;
    text-decoration: underline;
}

.page-article a:hover {
    color: #6e1717;
}

.page-article strong {
    font-weight: 700;
    color: var(--home-ink, #1a171b);
}

.page-article blockquote {
    margin: 1em 0;
    padding: 0.25em 0 0.25em 1em;
    border-left: 3px solid #8b1e1e;
    color: #1a171b;
    max-width: 42rem;
}

/* Green check lists */
.check-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    max-width: 42rem;
}

.check-list li {
    position: relative;
    margin: 0 0 0.65rem;
    padding-left: 1.85rem;
    color: #1a171b;
    line-height: 1.55;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0;
    top: 0.15em;
    color: #2f9e44;
    font-size: 0.95em;
    line-height: 1;
}

.term-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    max-width: 42rem;
}

.term-list li {
    position: relative;
    margin: 0 0 0.85rem;
    padding: 0 0 0 1.15rem;
    color: #1a171b;
    line-height: 1.55;
}

.term-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #8b1e1e;
}

.term-list strong {
    display: inline;
    font-weight: 700;
    color: #1a171b;
}

.page-steps {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    counter-reset: page-step;
    max-width: 42rem;
}

.page-steps li {
    position: relative;
    margin: 0 0 0.85rem;
    padding: 0.15rem 0 0.15rem 2.6rem;
    color: #1a171b;
    line-height: 1.55;
    counter-increment: page-step;
}

.page-steps li::before {
    content: counter(page-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: #8b1e1e;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.85rem;
    text-align: center;
}

/* Inline action buttons (no card chrome) */
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.15rem 0 0;
}

.page-actions a,
.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.05rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    line-height: 1.2;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.page-btn--primary {
    background: #8b1e1e;
    color: #fff !important;
}

.page-btn--primary:hover {
    background: #6e1717;
    color: #fff !important;
}

.page-btn--ghost {
    background: transparent;
    color: #1a171b !important;
    border: 1px solid rgba(26, 23, 27, 0.2);
}

.page-btn--ghost:hover {
    border-color: #8b1e1e;
    color: #8b1e1e !important;
}

.contact-form {
    margin: 1.25rem 0 0;
    max-width: 42rem;
}

.contact-form__field {
    margin: 0 0 1rem;
}

.contact-form__field label {
    display: block;
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: #1a171b;
}

.contact-form__field input,
.contact-form__field textarea {
    display: block;
    width: 100%;
    max-width: 42rem;
    box-sizing: border-box;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(26, 23, 27, 0.18);
    border-radius: 4px;
    background: #fff;
    color: #1a171b;
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.4;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: 2px solid #8b1e1e;
    outline-offset: 1px;
    border-color: #8b1e1e;
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 8rem;
}

.page-contact-lines {
    margin: 0 0 0.25rem;
    max-width: 42rem;
}

.page-contact-lines p {
    margin: 0 0 0.35rem;
}

.page-contact-block {
    margin: 0 0 1.5rem;
    padding: 1rem 1.15rem;
    max-width: 42rem;
    background: #fff;
    border: 1px solid rgba(26, 23, 27, 0.08);
    border-radius: 6px;
}

.page-contact-block p {
    margin: 0 0 0.65rem;
}

.page-contact-block p:last-child {
    margin-bottom: 0;
}

.page-contact-block__label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: var(--home-ink, #1a171b);
}

.page-bank {
    margin: 0 0 1.25rem;
    padding: 0.95rem 1.1rem;
    max-width: 42rem;
    background: #fff;
    border-left: 3px solid #8b1e1e;
    border-radius: 0 6px 6px 0;
}

.page-media-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: min(100%, 48rem);
}

.page-media-stack img {
    margin: 0;
    width: 100%;
    border-radius: 4px;
}

.page-media-stack .page-video {
    margin: 0;
    max-width: none;
}

/* Full-bleed content bands + split layouts */
.content-band {
    padding: 4rem 0;
}

.content-band:last-child {
    padding-bottom: 5rem;
}

.content-band--plain {
    background: transparent;
}

.content-band--tint {
    background: #ebe6df;
}

.content-band--media {
    padding: 4rem 0;
}

.content-band__narrow {
    max-width: 42rem;
}

.content-band .page-article {
    max-width: none;
}

.content-band .page-article > :where(p, h2, h3, ul, ol, blockquote, table) {
    max-width: none;
}

.content-band .page-article h2:first-child,
.content-band .page-article h3:first-child {
    margin-top: 0;
}

.content-band .page-contact-block,
.content-band .page-bank {
    max-width: 42rem;
}

.content-band .page-contact-block {
    background: #fff;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem 2.5rem;
    align-items: center;
}

.content-split--reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.content-split--reverse .content-split__copy {
    order: 2;
}

.content-split--reverse .content-split__media {
    order: 1;
}

.content-split__copy {
    min-width: 0;
}

.content-split__copy .page-article p:last-child {
    margin-bottom: 0;
}

.content-split__media {
    min-width: 0;
}

.content-split__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    margin: 0;
    background: #e8e4dc;
}

.content-band__media-wide img {
    display: block;
    width: 100%;
    max-width: min(100%, 56rem);
    margin: 0 auto;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.content-band__video {
    max-width: min(100%, 48rem);
    margin: 0 auto;
}

.content-band__video--feature {
    max-width: min(100%, 56rem);
    margin-top: 1.25rem;
}

.content-band__video .page-video {
    max-width: none;
    margin: 0;
}

/* FAQ accordion */
.faq-accordion {
    margin: 1.5rem 0 0;
    max-width: 42rem;
    border-top: 1px solid rgba(26, 23, 27, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(26, 23, 27, 0.12);
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 1.15rem 0;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-sans, Ubuntu, Arial, sans-serif);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: #1a171b;
    transition: color 0.2s ease;
}

.faq-item__q::-webkit-details-marker {
    display: none;
}

.faq-item__q::marker {
    content: "";
    display: none;
}

.faq-item__q::after {
    content: "\f107";
    flex: 0 0 auto;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    color: #8b1e1e;
    transition: transform 0.25s ease;
}

.faq-item__q:hover {
    color: #8b1e1e;
}

.faq-item[open] .faq-item__q {
    color: #8b1e1e;
}

.faq-item[open] .faq-item__q::after {
    transform: rotate(180deg);
}

.faq-item__body {
    padding: 0 0 1.25rem;
}

.faq-item__a {
    margin: 0;
    max-width: 38rem;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: #1a171b;
}

.faq-item__a a {
    color: #8b1e1e;
    text-decoration: underline;
}

.faq-item__a a:hover {
    color: #6e1717;
}

@media (max-width: 900px) {
    .content-split,
    .content-split--reverse {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .content-split--reverse .content-split__copy,
    .content-split--reverse .content-split__media {
        order: initial;
    }

    .content-band {
        padding: 3.25rem 0;
    }

    .content-band:last-child {
        padding-bottom: 4rem;
    }
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
}

.topic-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 1.15rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.topic-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #e8e4dc;
}

.topic-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.topic-card:hover .topic-card__media img {
    transform: scale(1.03);
}

.topic-card__title {
    margin: 0 0 0.45rem;
    font-family: var(--font-sans, Ubuntu, Arial, sans-serif);
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--home-ink, #1a171b);
}

.topic-card:hover .topic-card__title {
    color: #8b1e1e;
}

.topic-card__text {
    margin: 0 0 0.75rem;
    color: #1a171b;
    line-height: 1.5;
    font-size: 0.98rem;
}

.topic-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #8b1e1e;
    font-size: 0.95rem;
}

.topic-card__cta .fa {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.topic-card:hover .topic-card__cta .fa {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .topic-card {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* Breadcrumbs */

.site-breadcrumbs {
    background: #ebe6df;
    border-bottom: 1px solid #ddd6cb;
    padding: 0.7rem 0;
}

.site-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #5c5650;
}

.site-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}

.site-breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin: 0 0.55rem;
    color: #9a9288;
}

.site-breadcrumbs a {
    color: #5c5650;
    text-decoration: none;
}

.site-breadcrumbs a:hover {
    color: #8b1e1e;
    text-decoration: underline;
}

.site-breadcrumbs [aria-current="page"] {
    color: #1a171b;
    font-weight: 600;
}
