.wt-home-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: clamp(1rem, 2vw, 1.4rem);
    align-items: stretch;
    margin-bottom: 1.35rem;
}

.wt-home-welcome,
.wt-home-featured,
.wt-home-section {
    background: var(--wana-panel);
    border: 1px solid var(--wana-border);
    box-shadow: var(--wana-shadow);
    backdrop-filter: blur(18px);
}

.wt-home-welcome {
    min-height: 240px;
    border-radius: 24px;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wt-home-welcome h1 {
    margin: .4rem 0 .65rem;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: .98;
}

.wt-home-welcome p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}

.wt-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.2rem;
}

.wt-home-actions .btn {
    width: auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

.wt-home-featured {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.wt-home-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .25s ease;
    z-index: -2;
}

.wt-home-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 8, 18, .08), rgba(4, 8, 18, .82));
    z-index: -1;
}

.wt-home-featured span {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.wt-home-featured small,
.wt-home-featured em,
.wt-home-video-card em {
    color: rgba(255, 255, 255, .78);
    font-style: normal;
}

.wt-home-featured strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.wt-home-featured:hover img {
    transform: scale(1.07);
}

.wt-home-section {
    border-radius: 22px;
    padding: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 1.25rem;
}

.wt-home-section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wt-home-section__head h2 {
    margin: .15rem 0 0;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.wt-home-section__head a {
    color: var(--wana-cyan);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.wt-home-continue-grid,
.wt-home-video-grid,
.wt-home-creator-grid {
    display: grid;
    gap: .9rem;
}

.wt-home-continue-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wt-home-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wt-home-creator-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wt-home-continue-card,
.wt-home-video-card,
.wt-home-creator-card {
    color: var(--text);
    text-decoration: none;
    border-radius: 18px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wt-home-continue-card:hover,
.wt-home-video-card:hover,
.wt-home-creator-card:hover {
    transform: translateY(-3px);
}

.wt-home-continue-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: end;
    padding: .9rem;
    background: rgba(14, 22, 36, .16);
    border: 1px solid var(--wana-border);
}

.wt-home-continue-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.wt-home-continue-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(4, 8, 18, .82));
    z-index: -1;
}

.wt-home-continue-card span {
    color: #fff;
    display: grid;
    gap: .2rem;
}

.wt-home-continue-card small {
    color: rgba(255, 255, 255, .72);
}

.wt-home-continue-card i {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wana-cyan), var(--wana-blue));
}

.wt-home-video-card {
    display: grid;
    gap: .65rem;
}

.wt-home-video-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    background: rgba(15, 23, 42, .18);
    border: 1px solid var(--wana-border);
}

.wt-home-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.wt-home-video-card:hover img {
    transform: scale(1.05);
}

.wt-home-video-card__thumb small {
    position: absolute;
    right: .45rem;
    bottom: .45rem;
    padding: .2rem .45rem;
    border-radius: 7px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-weight: 800;
}

.wt-home-video-card__copy {
    display: grid;
    gap: .18rem;
}

.wt-home-video-card__copy strong {
    line-height: 1.25;
}

.wt-home-video-card__copy span,
.wt-home-video-card__copy em {
    color: var(--muted);
    font-size: .88rem;
}

.wt-home-creator-card {
    display: grid;
    gap: .35rem;
    padding: 1rem;
    background: rgba(14, 22, 36, .08);
    border: 1px solid var(--wana-border);
}

.wt-home-creator-card > span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wana-cyan), var(--wana-blue));
    color: #fff;
    font-weight: 900;
}

.wt-home-creator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-home-creator-card small {
    color: var(--muted);
}

.wt-home-creator-card em {
    color: var(--wana-cyan);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .wt-home-top,
    .wt-home-continue-grid,
    .wt-home-video-grid,
    .wt-home-creator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .wt-home-top,
    .wt-home-continue-grid,
    .wt-home-video-grid,
    .wt-home-creator-grid {
        grid-template-columns: 1fr;
    }

    .wt-home-welcome,
    .wt-home-featured {
        min-height: 200px;
    }

    .wt-home-section__head {
        align-items: start;
        flex-direction: column;
    }

    .wt-home-actions .btn {
        min-height: 42px;
        padding-inline: .9rem !important;
    }
}
