.text-video {
    padding: 60px 0;
    font-family: "Proxima Nova Rg", sans-serif;
}

/* ─── Content (left) ─── */
.text-video__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.text-video__content h2 {
    color: #048ec9;
    margin-bottom: 10px;
}

.text-video__content p {
    color: #383838;
    margin-bottom: 20px;
    font-size: 16px;
}

.text-video__body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ─── Button ─── */
.text-video__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #048ec9;
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.text-video__btn:hover {
    background-color: #002e45;
    color: #fff;
}

/* ─── Video (right) ─── */
.text-video__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.text-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .text-video__content {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .text-video {
        padding: 40px 0;
    }
    .text-video__heading {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .text-video {
        padding: 20px 0;
    }
    .text-video__heading {
        font-size: 18px;
    }
}
