/*
 * Responsive SoundCloud track and playlist blocks.
 *
 * This file is loaded automatically by /includes/site-header.php.
 */

.article-block--soundcloud {
    width: min(100%, 920px);
    max-width: 920px;
    margin: 0 auto;
}

.article-block--soundcloud.article-block--style-wide {
    width: 100%;
    max-width: none;
}

.article-soundcloud-frame {
    overflow: hidden;

    width: 100%;
    max-width: 100%;

    border: 1px solid var(--line);
    background: var(--bg-input);

    box-shadow:
        0 0 22px rgba(0, 0, 0, 0.42),
        0 0 16px rgba(25, 217, 255, 0.08);
}

.article-soundcloud-iframe {
    display: block;

    width: 100%;
    height: 166px;

    border: 0;
    background: var(--bg-input);
}

.article-soundcloud-frame--playlist .article-soundcloud-iframe {
    height: 450px;
}

.article-soundcloud-caption {
    margin-top: 9px;

    color: var(--text-dim);

    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.article-block--soundcloud.article-block--style-accent,
.article-block--soundcloud.article-block--style-muted {
    padding: 14px;
}

@media (max-width: 640px) {
    .article-block--soundcloud,
    .article-block--soundcloud.article-block--style-wide {
        width: 100%;
        max-width: none;
    }

    .article-block--soundcloud.article-block--style-accent,
    .article-block--soundcloud.article-block--style-muted {
        padding: 9px;
    }
}
