/* Videos page — focused UW overview */

.hub--videos {
    padding-top: 26px;
}

.hub--videos .page-header {
    margin-bottom: 22px;
}

.hub--videos .page-header > .eligibility-pill {
    margin-top: 16px;
}

.video-embed {
    margin: 0 0 28px;
}

.video-embed__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background: #0f1419;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow);
}

.video-embed__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.videos-next {
    text-align: center;
    margin-bottom: 8px;
}

.videos-next__title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.videos-next__copy {
    margin: 0 auto 18px;
    max-width: 22rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.videos-next .btn {
    width: 100%;
    max-width: 22rem;
}

/* Shared primary button (matches Bills journey) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 14px;
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    box-shadow: var(--focus);
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }

    .btn--primary:hover {
        transform: none;
    }
}
