/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* VIDEO */
.about-video {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.about-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.about-video:hover img {
    opacity: 0.8;
}

/* PLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: clamp(1px, 0.15vw, 2px) solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.play-btn svg{
    width: 50%;
    height: auto;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* CONTENT */
.about-content {
    background: #1c1917;
    padding: clamp(20px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-dark .section-title{
    color: var(--color-white);
}
/* SUB */
.about-sub {
    font-weight: 500;
    margin: clamp(15px, 3vw, 30px) 0;
    padding-left: clamp(10px, 1.5vw, 15px);
    border-left: clamp(2px, 0.4vw, 4px) solid var(--color-tertiary);
    color: var(--color-tertiary);
}

/* BUTTON */
.about-btn {
    margin-top: clamp(20px, 4vw, 40px);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

}