.acyf {
    --acyf-accent: #138fd3;
    --acyf-accent-dark: #0872b1;
    --acyf-youtube: #ff0033;
    --acyf-text: #101827;
    --acyf-muted: #667085;
    --acyf-border: #e1e8ef;
    --acyf-card: #fff;
    width: 100%;
    color: var(--acyf-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.acyf *, .acyf *::before, .acyf *::after { box-sizing: border-box; }
.acyf__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.acyf__eyebrow { display: block; margin-bottom: 4px; color: var(--acyf-accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.acyf__heading { margin: 0; color: var(--acyf-text); font-size: clamp(28px, 2.4vw, 38px); font-weight: 800; letter-spacing: -.035em; line-height: 1.06; }
.acyf__channel-icon { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #fff0f3; color: var(--acyf-youtube); transition: transform .18s ease, background .18s ease; }
.acyf__channel-icon:hover { background: #ffe1e7; transform: translateY(-2px); }
.acyf__channel-icon svg, .acyf__cta svg { width: 21px; height: 21px; fill: currentColor; }
.acyf__rule { height: 2px; margin: 17px 0 18px; overflow: hidden; background: var(--acyf-border); }
.acyf__rule span { display: block; width: 54px; height: 100%; background: var(--acyf-accent); }
.acyf__list { display: grid; gap: 18px; }
.acyf__card { min-width: 0; overflow: hidden; border: 1px solid var(--acyf-border); border-radius: 13px; background: var(--acyf-card); box-shadow: 0 7px 22px rgba(16, 24, 39, .07); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.acyf__card:hover { border-color: #cbdce9; box-shadow: 0 12px 30px rgba(16, 24, 39, .12); transform: translateY(-2px); }
.acyf__thumbnail-link { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #111; }
.acyf__thumbnail { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.acyf__card:hover .acyf__thumbnail { transform: scale(1.025); }
.acyf__play { position: absolute; left: 50%; top: 50%; display: grid; width: 46px; height: 33px; place-items: center; border-radius: 9px; background: rgba(255, 0, 51, .94); color: #fff; transform: translate(-50%, -50%); box-shadow: 0 5px 18px rgba(0, 0, 0, .3); transition: background .18s ease, transform .18s ease; }
.acyf__play svg { width: 23px; height: 23px; fill: currentColor; }
.acyf__card:hover .acyf__play { background: #e6002e; transform: translate(-50%, -50%) scale(1.06); }
.acyf__card-body { padding: 12px 13px 13px; }
.acyf__video-title { display: -webkit-box; overflow: hidden; color: var(--acyf-text); font-size: 15px; font-weight: 750; letter-spacing: -.01em; line-height: 1.35; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.acyf__video-title:hover { color: var(--acyf-accent-dark); }
.acyf__meta { display: flex; min-width: 0; margin-top: 7px; align-items: center; gap: 5px; overflow: hidden; color: var(--acyf-muted); font-size: 11px; line-height: 1.3; white-space: nowrap; }
.acyf__meta span:first-child { overflow: hidden; text-overflow: ellipsis; }
.acyf__cta { display: flex; width: 100%; min-height: 44px; margin-top: 18px; padding: 0 14px; align-items: center; justify-content: center; gap: 9px; border: 1px solid #c7e4f5; border-radius: 10px; background: #f1f9fe; color: #096da8; font-size: 13px; font-weight: 800; text-decoration: none; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.acyf__cta span:last-child { margin-left: auto; font-size: 18px; }
.acyf__cta:hover { border-color: #9ed2ef; background: #e4f5ff; color: #075f93; transform: translateY(-1px); }
.acyf__empty { display: grid; gap: 4px; padding: 18px; border: 1px dashed var(--acyf-border); border-radius: 12px; color: var(--acyf-muted); font-size: 13px; }
.acyf__empty strong { color: var(--acyf-text); }

.acyf--compact .acyf__list { gap: 12px; }
.acyf--compact .acyf__card { display: grid; grid-template-columns: 116px minmax(0, 1fr); align-items: center; border: 0; border-radius: 9px; box-shadow: none; }
.acyf--compact .acyf__card:hover { box-shadow: none; transform: none; }
.acyf--compact .acyf__thumbnail-link { border-radius: 9px; }
.acyf--compact .acyf__play { width: 35px; height: 25px; border-radius: 7px; }
.acyf--compact .acyf__play svg { width: 18px; height: 18px; }
.acyf--compact .acyf__card-body { padding: 5px 0 5px 11px; }
.acyf--compact .acyf__video-title { font-size: 13px; }

.acyf--dark {
    --acyf-text: #f4f7fb;
    --acyf-muted: #9cabbc;
    --acyf-border: #2a3a4e;
    --acyf-card: #172131;
}
.acyf--dark .acyf__channel-icon { background: #3c1e28; }
.acyf--dark .acyf__cta { border-color: #294d64; background: #142b3b; color: #8bd2fa; }

@media (prefers-color-scheme: dark) {
    .acyf--auto {
        --acyf-text: #f4f7fb;
        --acyf-muted: #9cabbc;
        --acyf-border: #2a3a4e;
        --acyf-card: #172131;
    }
    .acyf--auto .acyf__channel-icon { background: #3c1e28; }
    .acyf--auto .acyf__cta { border-color: #294d64; background: #142b3b; color: #8bd2fa; }
}

@media (max-width: 360px) {
    .acyf__heading { font-size: 27px; }
    .acyf--compact .acyf__card { grid-template-columns: 104px minmax(0, 1fr); }
}

