.atr-festival-background {
    width: 100%;
    padding: 45px 20px; 
    box-sizing: border-box; 
    grid-column: span 10;

    background-color: #04091E;
    background-size: cover; 
    background-position: center; 
}

.atr-festival-container {
    font-family: 'Ubuntu-Light', sans-serif; 
    max-width: 1200px; 
    margin: 0 auto; 

    display: grid;
    grid-template-columns: 1fr 700px;
    align-items: center;
    grid-column-gap: 37px;
    grid-row-gap: 59px;
}

.atr-festival-logo { 
    flex: 1;

    grid-area: 1 / 1 / 2 / 2;
}

.atr-festival-logo > img {
    height: 224px;
    width: 222px;
}

.atr-festival-title {
    grid-area: 2 / 1 / 3 / 2;
}

.atr-festival-title > h1 {
    font-family: 'Ubuntu-Light', sans-serif;
    font-size: 30px; 
    font-weight: 300;
    line-height: 1.3; 
    margin: 0; 
    letter-spacing: -0.6px;
    color: #fff;
    text-align: left;
}

.atr-festival-title > h1 > strong {
    font-weight: 700;
    font-family: Ubuntu-Bold, sans-serif;
}

.atr-festival-video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;

    grid-area: 1 / 2 / 3 / 3;
}

.atr-festival-video iframe {
    border-radius: 10px;
}

.atr-festival-video {
    width: 100%;
    max-width: 700px;
    grid-area: 1 / 2 / 3 / 3;
    
    position: relative; 
    cursor: pointer;
    
    aspect-ratio: 16 / 9; 
    background-color: #000; 
}

.atr-festival-video .video-thumbnail {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atr-festival-video .custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    
    transition: transform 0.2s ease-in-out;
}

.atr-festival-video .custom-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1); 
}

.atr-festival-video .custom-play-button img {
    width: 66px;  
    height: 66px; 
}

@media (max-width: 1024px) {
    .atr-festival-background {
        height: 100%;
        padding: 0 20px 44px 20px;
    }

    .atr-festival-container {
        display: flex;
        flex-direction: column; 
        gap: 0;
        max-width: 700px;
        align-items: center;
    }

    .atr-festival-logo {
        margin-left: -18px;
    }

    .atr-festival-title {
        order: 2;
    }

    .atr-festival-title>h1 {
        margin-top: 20px;
    }
}

@media (max-width: 798px) {
    .atr-festival-background {
        grid-column: span 8;
    }

    .atr-festival-logo > img {
        height: 148px;
        width: 151px;
    }

    .atr-festival-title > h1 {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .atr-festival-video .custom-play-button img {
        width: 46px;  
        height: 46px; 
    }
}