.stanloop-video-links {
    width: 100%;
    margin: 24px 0;
}

.stanloop-video-links .sl-section-header {
    margin-bottom: 16px;
}

.stanloop-video-links .sl-section-header h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.15;
}

.sl-video-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.sl-video-link-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.sl-video-link-card-inner {
    padding: 18px;
}

.sl-video-link-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.sl-video-link-note {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.82;
}

.sl-video-link-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.sl-button:hover,
.sl-button:focus {
    transform: translateY(-1px);
    opacity: 0.92;
    text-decoration: none;
}

.sl-button-primary {
    background: #111111;
    color: #ffffff;
}

.sl-button-secondary {
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: #111111;
    background: #ffffff;
}

.sl-empty-message {
    margin: 0;
    opacity: 0.75;
}

@media (max-width: 520px) {
    .sl-video-link-grid {
        grid-template-columns: 1fr;
    }

    .sl-video-link-actions {
        display: grid;
    }

    .sl-button {
        width: 100%;
    }
}
