/* ==================================================
   START HERE PAGE
================================================== */

.start-here-page .page-article {
    max-width: 1100px;
}

.start-here-eyebrow {
    margin: 0 0 .65rem;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.start-here-intro {
    max-width: 780px;
    margin: 0;
    color: var(--gray-700);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.start-here-editor-content {
    max-width: 850px;
    margin: 0 0 3rem;
}

.start-here-steps,
.start-here-guides {
    margin-top: 4rem;
}

.start-here-steps > h2,
.start-here-section-heading h2 {
    margin: 0 0 1.5rem;
    color: var(--primary-dark);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.start-here-grid,
.start-here-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.start-here-card,
.start-here-guide {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(30, 50, 70, .08);
}

.start-here-card {
    padding: 1.75rem;
}

.start-here-card h3,
.start-here-guide h3 {
    margin: 0 0 .75rem;
    color: var(--primary-dark);
}

.start-here-card p,
.start-here-guide p {
    margin: 0 0 1.25rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.start-here-link,
.start-here-guide a,
.start-here-section-heading a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.start-here-link:hover,
.start-here-link:focus-visible,
.start-here-guide a:hover,
.start-here-guide a:focus-visible,
.start-here-section-heading a:hover,
.start-here-section-heading a:focus-visible {
    text-decoration: underline;
}

.start-here-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.start-here-section-heading h2 {
    margin-bottom: 0;
}

.start-here-guide-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
}

.start-here-guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start-here-guide-content {
    padding: 1.35rem;
}

@media (max-width: 700px) {
    .start-here-page.page-content {
        padding: 2.5rem 0;
    }

    .start-here-grid,
    .start-here-guide-grid {
        grid-template-columns: 1fr;
    }

    .start-here-section-heading {
        display: block;
    }

    .start-here-section-heading a {
        display: inline-block;
        margin-top: .75rem;
    }
}
