
.rocktone-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #111;
    border-top: 4px solid #d00000;
    margin-top: 20px;
    position: relative;
    flex-direction: column;
}
.rocktone-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.rocktone-header h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    padding-bottom: 10px;
    font-family: 'Georgia', serif;
}
.rocktone-subscribe-button {
    background-color: #d00000;
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.rocktone-subscribe-button:hover {
    background-color: #ff3333;
}
.video-card {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}
.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    box-shadow: 0 0 10px #d00000;
    transition: box-shadow 0.3s ease-in-out;
}
.video-card iframe:hover {
    box-shadow: 0 0 20px #ff3333;
}
@media screen and (max-width: 768px) {
    .video-card {
        flex: 1 1 100%;
    }
}
