.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #666;
}

.audio-archive {
    margin-bottom: 50px;
}

.soundcloud-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.video-archive {
    margin-bottom: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-tile:hover .video-thumbnail img {
    opacity: 0.8;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: opacity 0.2s;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
}

.video-tile:hover .play-button {
    opacity: 1;
}

.video-info {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-top: none;
}

.video-title {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: #333;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .content {
        padding: 30px 15px;
    }

    .play-button {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .play-button::after {
        border-width: 6px 0 6px 10px;
    }

    .video-title {
        font-size: 11px;
    }
}
