.intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-wrapper .intro-wrapper-left {
    width: 100%;
}

.intro-wrapper .intro-wrapper-left iframe {
    border-radius: 8px;
    min-height: 250px;
}

.intro-wrapper .intro-wrapper-right {
    width: 100%;
}

.intro-wrapper .intro-wrapper-right img {
    border-radius: 8px;
}

@media (min-width: 768px) {
    .intro-wrapper {
        flex-direction: row;
        gap: 24px;
    }

    .intro-wrapper .intro-wrapper-left {
        flex: 1 1 360px;
        max-width: 100%;
    }

    .intro-wrapper .intro-wrapper-left iframe {
        min-height: auto;
    }

    .intro-wrapper .intro-wrapper-right {
        flex: 1 1 728px;
    }
}

.tcb-tabs {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.tcb-tab {
    font-size: 1rem;
    padding: 10px 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    line-height: 1;
}

.tcb-tab.active {
    border-bottom: 3px solid var(--secondary-500);
    color: var(--secondary-500);
    cursor: default;
}

.tcb-tab:not(.active):hover {
    color: var(--secondary-800);
}