/**
 * About Section Styles
 * Shared stylesheet for About, Team, and Network pages
 *
 * @package Blocksy_Child_Response24
 */

/* ========================================
   SECTION 1 — PAGE HERO
   ======================================== */

.r24-about-hero {
    background-color: var(--r24-dark);
    color: var(--r24-white);
    padding: 100px 20px;
    text-align: center;
}

.r24-about-hero .r24-container {
    max-width: 800px;
    margin: 0 auto;
}

.r24-about-hero .r24-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.r24-about-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--r24-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.r24-about-hero .r24-subheadline {
    font-size: 18px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-about-hero {
        padding: 60px 20px;
    }

    .r24-about-hero h1 {
        font-size: 28px;
    }
}

/* ========================================
   SECTION 2 — FIRM OVERVIEW
   ======================================== */

.r24-about-firm {
    background-color: var(--r24-section);
    color: var(--r24-text-dark);
    padding: 80px 20px;
}

.r24-about-firm .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-about-firm-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.r24-about-firm-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--r24-text-dark);
    margin-bottom: 24px;
}

.r24-about-firm-content p {
    font-size: 16px;
    color: var(--r24-text-dark);
    line-height: 1.7;
    margin-bottom: 18px;
}

.r24-about-firm-content p:last-child {
    margin-bottom: 0;
}

/* Stat panels */
.r24-about-firm-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.r24-stat-panel {
    background-color: var(--r24-white);
    border-left: 4px solid var(--r24-red);
    padding: 24px;
    border-radius: 4px;
}

.r24-stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--r24-red);
    line-height: 1;
    margin-bottom: 6px;
}

.r24-stat-label {
    display: block;
    font-size: 14px;
    color: var(--r24-text-mid);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-about-firm {
        padding: 55px 20px;
    }

    .r24-about-firm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   SECTION 3 — WHAT SETS US APART
   ======================================== */

.r24-about-apart {
    background-color: var(--r24-dark);
    color: var(--r24-white);
    padding: 80px 20px;
}

.r24-about-apart .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-about-apart h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--r24-white);
    text-align: center;
    margin-bottom: 52px;
}

.r24-about-apart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.r24-apart-column {
    border-top: 3px solid var(--r24-red);
    padding-top: 28px;
}

.r24-apart-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--r24-white);
    margin-bottom: 14px;
}

.r24-apart-column p {
    font-size: 15px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-about-apart {
        padding: 55px 20px;
    }

    .r24-about-apart-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========================================
   SECTION 4 — NAVIGATION LINKS TO SUBPAGES
   ======================================== */

.r24-about-nav {
    background-color: var(--r24-section);
    color: var(--r24-text-dark);
    padding: 60px 20px;
}

.r24-about-nav .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-about-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.r24-nav-card {
    background-color: var(--r24-white);
    border: 1px solid var(--r24-border-lt);
    border-top: 3px solid var(--r24-red);
    border-radius: 4px;
    padding: 28px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
}

.r24-nav-card:hover {
    background-color: var(--r24-section);
}

.r24-nav-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--r24-text-dark);
    margin-bottom: 10px;
}

.r24-nav-card p {
    font-size: 14px;
    color: var(--r24-text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}

.r24-nav-link {
    color: var(--r24-red);
    font-size: 14px;
    font-weight: 600;
    display: block;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-about-nav {
        padding: 40px 20px;
    }

    .r24-about-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TEAM PAGE — SECTION 2: LEADERSHIP
   ======================================== */

.r24-team-leadership {
    background-color: var(--r24-section);
    color: var(--r24-text-dark);
    padding: 80px 20px;
}

.r24-team-leadership .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-team-leadership h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--r24-text-dark);
    text-align: center;
    margin-bottom: 52px;
}

.r24-team-leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.r24-bio-card {
    background-color: var(--r24-white);
    border: 1px solid var(--r24-border-lt);
    border-left: 4px solid var(--r24-red);
    border-radius: 4px;
    padding: 36px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 36px;
    align-items: start;
}

.r24-bio-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.r24-bio-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--r24-text-dark);
    margin-bottom: 4px;
}

.r24-bio-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.r24-bio-content p:not(.r24-bio-title) {
    font-size: 15px;
    color: var(--r24-text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-team-leadership {
        padding: 55px 20px;
    }

    .r24-bio-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .r24-bio-photo {
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto;
    }
}

/* ========================================
   TEAM PAGE — SECTION 3: OPERATIONS
   ======================================== */

.r24-team-operations {
    background-color: var(--r24-dark);
    color: var(--r24-white);
    padding: 80px 20px;
}

.r24-team-operations .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-team-operations h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--r24-white);
    text-align: center;
    margin-bottom: 52px;
}

.r24-team-operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.r24-ops-card {
    background-color: var(--r24-card);
    border: 1px solid var(--r24-border-dk);
    border-top: 3px solid var(--r24-red);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.r24-ops-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.r24-ops-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--r24-white);
    margin-bottom: 4px;
}

.r24-ops-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.r24-ops-card p:not(.r24-ops-title) {
    font-size: 14px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-team-operations {
        padding: 55px 20px;
    }

    .r24-team-operations-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TEAM PAGE — SECTION 4: PARTNER NETWORK CTA
   ======================================== */

.r24-team-cta {
    background-color: var(--r24-red);
    color: var(--r24-white);
    padding: 60px 20px;
    text-align: center;
}

.r24-team-cta .r24-container {
    max-width: 800px;
    margin: 0 auto;
}

.r24-cta-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--r24-white);
    margin-bottom: 12px;
}

.r24-cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin-bottom: 28px;
}

.r24-cta-button {
    background-color: var(--r24-white);
    color: var(--r24-red);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.r24-cta-button:hover {
    background-color: #F0F0F0;
    color: var(--r24-red);
    text-decoration: none;
}

/* ========================================
   NETWORK PAGE — SECTION 2: PARTNER PROFILES
   ======================================== */

.r24-network-profiles {
    background-color: var(--r24-section);
    color: var(--r24-text-dark);
    padding: 80px 20px;
}

.r24-network-profiles .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-network-profiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.r24-partner-profile {
    background-color: var(--r24-white);
    border: 1px solid var(--r24-border-lt);
    border-left: 4px solid var(--r24-red);
    border-radius: 4px;
    padding: 36px;
}

.r24-partner-profile h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--r24-text-dark);
    margin-bottom: 6px;
}

.r24-partner-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.r24-partner-description {
    font-size: 15px;
    color: var(--r24-text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.r24-partner-lines {
    margin-top: 20px;
}

.r24-lines-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.r24-lines-text {
    font-size: 14px;
    color: var(--r24-text-dark);
    font-weight: 600;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-network-profiles {
        padding: 55px 20px;
    }

    .r24-partner-profile {
        padding: 28px;
    }
}

/* ========================================
   NETWORK PAGE — SECTION 3: HOW THE NETWORK WORKS
   ======================================== */

.r24-network-how {
    background-color: var(--r24-dark);
    color: var(--r24-white);
    padding: 80px 20px;
}

.r24-network-how .r24-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-network-how h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--r24-white);
    text-align: center;
    margin-bottom: 52px;
}

.r24-network-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.r24-how-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--r24-white);
    margin-bottom: 14px;
}

.r24-how-column p {
    font-size: 15px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-network-how {
        padding: 55px 20px;
    }

    .r24-network-how-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   NETWORK PAGE — SECTION 4: BOTTOM CTA
   ======================================== */

.r24-network-cta {
    background-color: var(--r24-red);
    color: var(--r24-white);
    padding: 60px 20px;
    text-align: center;
}

.r24-network-cta .r24-container {
    max-width: 800px;
    margin: 0 auto;
}

.r24-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.r24-cta-button-primary {
    background-color: var(--r24-white);
    color: var(--r24-red);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.r24-cta-button-primary:hover {
    background-color: #F0F0F0;
    color: var(--r24-red);
    text-decoration: none;
}

.r24-cta-button-secondary {
    background-color: transparent;
    color: var(--r24-white);
    border: 2px solid rgba(255, 255, 255, 0.50);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.r24-cta-button-secondary:hover {
    border-color: var(--r24-white);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--r24-white);
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .r24-cta-button-primary,
    .r24-cta-button-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================================
   ABOUT HISTORY PAGE
   ======================================== */

/* SECTION 1 — HERO */
.r24-history-hero {
    background-color: var(--r24-dark);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.r24-history-hero-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.r24-history-hero .r24-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.r24-history-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--r24-white);
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.r24-history-hero-subheadline {
    font-size: 19px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-history-hero {
        padding: 60px 0;
    }

    .r24-history-hero h1 {
        font-size: 28px;
    }

    .r24-history-hero-subheadline {
        font-size: 16px;
    }
}

/* SECTION 2 — NARRATIVE HISTORY */
.r24-history-narrative {
    background: var(--r24-section);
    padding: 80px 24px;
}

.r24-history-narrative-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-history-narrative-grid {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: start;
}

/* Left column: Narrative text */
.r24-history-narrative-text .r24-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.r24-history-narrative-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--r24-text-dark);
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.r24-history-narrative-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--r24-text-dark);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.r24-history-narrative-text p {
    font-size: 15px;
    color: var(--r24-text-mid);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Right column: Credential panels */
.r24-history-narrative-panels {
    position: sticky;
    top: 40px;
}

.r24-history-credential-panel {
    background: var(--r24-white);
    border-top: 3px solid var(--r24-red);
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 20px;
}

.r24-history-credential-panel:last-child {
    margin-bottom: 0;
}

.r24-history-stat {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--r24-text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.r24-history-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--r24-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.r24-history-credential-panel p {
    font-size: 14px;
    color: var(--r24-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .r24-history-narrative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .r24-history-narrative-panels {
        position: static;
    }
}

@media (max-width: 767px) {
    .r24-history-narrative {
        padding: 60px 20px;
    }

    .r24-history-narrative-text h2 {
        font-size: 24px;
    }

    .r24-history-narrative-text h3 {
        font-size: 20px;
    }

    .r24-history-narrative-text p {
        font-size: 14px;
    }

    .r24-history-credential-panel {
        padding: 20px 24px;
    }

    .r24-history-stat {
        font-size: 32px;
    }
}

/* SECTION 3 — VISUAL TIMELINE */
.r24-history-timeline {
    background: var(--r24-dark);
    padding: 80px 24px;
}

.r24-history-timeline-container {
    max-width: var(--r24-max);
    margin: 0 auto;
}

.r24-history-timeline .r24-eyebrow {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.r24-history-timeline h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--r24-white);
    line-height: 1.3;
    text-align: center;
    margin: 0 0 12px 0;
}

.r24-history-timeline-intro {
    font-size: 16px;
    color: var(--r24-text-grey);
    line-height: 1.7;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

/* Timeline component */
.r24-timeline {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

/* Vertical center line */
.r24-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--r24-border-dk);
    transform: translateX(-50%);
    z-index: 0;
}

/* Timeline items */
.r24-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

/* Year badge */
.r24-timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--r24-red);
    color: var(--r24-white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 1;
}

/* Content panel */
.r24-timeline-content {
    background: var(--r24-card);
    border-radius: 4px;
    padding: 20px 24px;
    width: calc(50% - 40px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.r24-timeline-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--r24-white);
    line-height: 1.3;
    margin: 0 0 6px 0;
}

.r24-timeline-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0;
}

/* Alternating layout: odd items on right, even items on left */
.r24-timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.r24-timeline-item:nth-child(odd) .r24-timeline-content {
    margin-left: 40px;
}

.r24-timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.r24-timeline-item:nth-child(even) .r24-timeline-content {
    margin-right: 40px;
}

/* Mobile responsive */
@media (max-width: 700px) {
    /* Move timeline line to left */
    .r24-timeline-line {
        left: 20px;
        transform: none;
    }

    /* All items left-aligned */
    .r24-timeline-item {
        justify-content: flex-start;
    }

    .r24-timeline-item:nth-child(odd),
    .r24-timeline-item:nth-child(even) {
        justify-content: flex-start;
    }

    /* Year badge on left */
    .r24-timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }

    /* Content panel full width minus offset */
    .r24-timeline-content {
        width: calc(100% - 56px);
        margin-left: 56px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .r24-history-timeline {
        padding: 60px 20px;
    }

    .r24-history-timeline h2 {
        font-size: 24px;
    }

    .r24-history-timeline-intro {
        font-size: 15px;
        margin-bottom: 48px;
    }

    .r24-timeline-item {
        margin-bottom: 36px;
    }

    .r24-timeline-content {
        padding: 18px 20px;
    }

    .r24-timeline-content h3 {
        font-size: 14px;
    }

    .r24-timeline-content p {
        font-size: 12px;
    }
}

/* SECTION 4 — CTA */
.r24-history-cta {
    background: var(--r24-section);
    padding: 70px 24px;
}

.r24-history-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.r24-history-cta h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--r24-text-dark);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.r24-history-cta p {
    font-size: 16px;
    color: var(--r24-text-mid);
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.r24-history-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.r24-history-cta-primary,
.r24-history-cta-secondary {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.r24-history-cta-primary {
    background: var(--r24-red);
    color: var(--r24-white);
    border: 2px solid var(--r24-red);
}

.r24-history-cta-primary:hover {
    background: #B00000;
    border-color: #B00000;
    color: var(--r24-white);
    text-decoration: none;
}

.r24-history-cta-secondary {
    background: transparent;
    color: var(--r24-text-dark);
    border: 2px solid var(--r24-border-lt);
}

.r24-history-cta-secondary:hover {
    border-color: var(--r24-text-dark);
    color: var(--r24-text-dark);
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .r24-history-cta {
        padding: 56px 20px;
    }

    .r24-history-cta h2 {
        font-size: 22px;
    }

    .r24-history-cta p {
        font-size: 15px;
    }

    .r24-history-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .r24-history-cta-primary,
    .r24-history-cta-secondary {
        width: 100%;
        max-width: 320px;
    }
}
