/* ═══════════════════════════════════════════
   LIVE2D PAGE — ポップ・カラフル・アニメ世界観
   参考：にじさんじファンクラブのパステル・グラデーション
════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=M+PLUS+Rounded+1c:wght@400;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --l2d-pink:    #ff6b9d;
  --l2d-purple:  #c084fc;
  --l2d-lavender:#818cf8;
  --l2d-mint:    #6ee7b7;
  --l2d-yellow:  #fde68a;
  --l2d-bg:      #fdf4ff;
  --l2d-bg2:     #fff0f7;
  --l2d-text:    #2d1b4e;
  --l2d-text2:   #6b4f8a;
  --l2d-radius:  20px;
  --l2d-radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body.l2d-body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  background: var(--l2d-bg);
  color: var(--l2d-text);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
.l2d-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(253,244,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,132,252,0.2);
}

.l2d-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--l2d-text);
  font-weight: 900;
  font-size: 14px;
}
.l2d-brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 8px;
}

.l2d-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.l2d-nav a {
  text-decoration: none;
  color: var(--l2d-text2);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms;
}
.l2d-nav a:hover, .l2d-nav a.is-current { color: var(--l2d-pink); }
.l2d-nav-cta {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff !important;
  border-radius: 40px;
  font-size: 12px !important;
}

/* ─── HERO ─── */
.l2d-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 60px;
  background: linear-gradient(160deg,
    #fff0f7 0%,
    #f5e6ff 30%,
    #e8f0ff 60%,
    #e6fff5 100%
  );
  overflow: hidden;
  text-align: center;
}

/* 流れるキャラパネル */
.l2d-ticker {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.12;
}
.l2d-ticker-track {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 100%;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.l2d-ticker-track img {
  height: 100%;
  max-height: 600px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.6);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 浮遊装飾 */
.l2d-deco {
  position: absolute;
  font-size: 24px;
  animation: float-deco 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}
.l2d-deco-1 { top: 15%; left: 8%;  color: var(--l2d-pink);   animation-delay: 0s;   font-size: 28px; }
.l2d-deco-2 { top: 25%; right: 10%; color: var(--l2d-purple); animation-delay: 1s;   font-size: 22px; }
.l2d-deco-3 { bottom: 30%; left: 6%; color: var(--l2d-lavender); animation-delay: 2s; font-size: 20px; }
.l2d-deco-4 { top: 60%; right: 7%;  color: var(--l2d-mint);   animation-delay: 0.5s; font-size: 26px; }
.l2d-deco-5 { bottom: 15%; right: 15%; color: var(--l2d-yellow); animation-delay: 1.5s; font-size: 18px; }
@keyframes float-deco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(12deg); }
}

.l2d-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.l2d-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 20px;
  background: linear-gradient(135deg, rgba(255,107,157,0.15), rgba(192,132,252,0.15));
  border: 1px solid rgba(192,132,252,0.4);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--l2d-purple);
}

.l2d-h1-sub {
  display: block;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--l2d-text2);
  margin-bottom: 8px;
}
.l2d-h1-main {
  display: block;
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--l2d-pink) 0%, var(--l2d-purple) 50%, var(--l2d-lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.l2d-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--l2d-text2);
  margin-bottom: 24px;
}
.l2d-hero-desc strong { color: var(--l2d-pink); }

.l2d-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.l2d-hero-tags span {
  padding: 6px 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(192,132,252,0.3);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  color: var(--l2d-purple);
}

.l2d-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.l2d-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(255,107,157,0.4);
  transition: transform 160ms, box-shadow 160ms;
}
.l2d-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,157,0.5);
}
.l2d-btn-primary svg { width: 18px; height: 18px; }

.l2d-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--l2d-purple);
  color: var(--l2d-purple);
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255,255,255,0.6);
  transition: background 160ms, color 160ms;
}
.l2d-btn-ghost:hover {
  background: var(--l2d-purple);
  color: #fff;
}
.l2d-btn-ghost svg { width: 18px; height: 18px; }

.l2d-btn-large { padding: 18px 48px; font-size: 16px; }

.l2d-price-hint {
  font-size: 13px;
  color: var(--l2d-text2);
}
.l2d-price-hint strong {
  color: var(--l2d-pink);
  font-size: 18px;
}

/* ─── SECTIONS ─── */
.l2d-section { padding: 80px 40px; }
.l2d-container { max-width: 1100px; margin: 0 auto; }

.l2d-section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--l2d-purple);
  margin-bottom: 12px;
}
.l2d-section-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--l2d-text);
  margin-bottom: 48px;
}

/* ─── WHAT IS LIVE2D ─── */
.l2d-what { background: #fff; }
.l2d-what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.l2d-what-card {
  padding: 32px 24px;
  border-radius: var(--l2d-radius);
  background: linear-gradient(160deg, #fff0f7, #f5e6ff);
  border: 1px solid rgba(192,132,252,0.2);
  text-align: center;
  transition: transform 200ms, box-shadow 200ms;
}
.l2d-what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,132,252,0.2);
}
.l2d-what-icon { font-size: 36px; margin-bottom: 16px; }
.l2d-what-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--l2d-text);
}
.l2d-what-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--l2d-text2);
}

/* ─── VIDEO ─── */
.l2d-video-section {
  background: linear-gradient(160deg, #f5e6ff, #e8f0ff);
}
.l2d-video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.l2d-video-card {
  border-radius: var(--l2d-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(192,132,252,0.2);
  transition: transform 200ms, box-shadow 200ms;
}
.l2d-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,132,252,0.25);
}
.l2d-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.l2d-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.l2d-video-caption { padding: 16px; }
.l2d-video-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(255,107,157,0.15), rgba(192,132,252,0.15));
  color: var(--l2d-purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.l2d-video-caption h3 {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--l2d-text);
  margin-bottom: 6px;
}
.l2d-video-caption p {
  font-size: 12px;
  color: var(--l2d-text2);
}
.l2d-video-featured .l2d-video-caption h3 { font-size: 18px; }

/* ─── WORKS ─── */
.l2d-works { background: var(--l2d-bg); }
.l2d-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.l2d-work-card {
  border-radius: var(--l2d-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(192,132,252,0.15);
  transition: transform 200ms, box-shadow 200ms;
}
.l2d-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,157,0.2);
}
.l2d-work-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.l2d-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms;
}
.l2d-work-card:hover .l2d-work-img img { transform: scale(1.04); }
.l2d-work-card p {
  padding: 14px 16px 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--l2d-purple);
}
.l2d-work-card h3 {
  padding: 0 16px 16px;
  font-size: 14px;
  font-weight: 900;
  color: var(--l2d-text);
}

/* ─── PLANS ─── */
.l2d-plans {
  background: linear-gradient(160deg, #fff0f7, #f5e6ff);
}
.l2d-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.l2d-plan-card {
  border-radius: var(--l2d-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(192,132,252,0.2);
  position: relative;
  transition: transform 200ms, box-shadow 200ms;
}
.l2d-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(192,132,252,0.25);
}
.l2d-plan-featured {
  border: 2px solid var(--l2d-purple);
  box-shadow: 0 8px 32px rgba(192,132,252,0.2);
}
.l2d-plan-badge {
  position: absolute;
  top: -1px; right: 20px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 0 0 10px 10px;
}
.l2d-plan-header {
  padding: 28px 24px 20px;
  color: #fff;
}
.l2d-plan-header p {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 6px;
}
.l2d-plan-header h3 {
  font-size: 22px;
  font-weight: 900;
}
.l2d-plan-body { padding: 24px; }
.l2d-plan-price {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 900;
  color: var(--l2d-text);
}
.l2d-plan-price span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--l2d-text2);
  margin-bottom: 4px;
}
.l2d-plan-body ul {
  list-style: none;
  margin-bottom: 24px;
}
.l2d-plan-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(192,132,252,0.1);
  font-size: 13px;
  color: var(--l2d-text2);
}
.l2d-plan-body ul li::before {
  content: '✿ ';
  color: var(--l2d-pink);
}
.l2d-plan-cta {
  display: block;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(192,132,252,0.1));
  border: 1px solid rgba(192,132,252,0.3);
  border-radius: var(--l2d-radius-sm);
  color: var(--l2d-purple);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms, color 160ms;
  cursor: pointer;
}
.l2d-plan-cta:hover {
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff;
  border-color: transparent;
}

.l2d-addon {
  text-align: center;
  padding: 20px 32px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--l2d-radius);
  border: 1px dashed rgba(192,132,252,0.4);
  font-size: 14px;
  color: var(--l2d-text2);
}
.l2d-addon strong { color: var(--l2d-pink); }

/* ─── PROCESS ─── */
.l2d-process { background: #fff; }
.l2d-process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.l2d-process-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(192,132,252,0.15);
}
.l2d-step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--l2d-pink), var(--l2d-purple));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
}
.l2d-process-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--l2d-text);
  margin-bottom: 4px;
}
.l2d-process-list li p {
  font-size: 13px;
  color: var(--l2d-text2);
}

/* ─── CTA SECTION ─── */
.l2d-cta-section {
  padding: 100px 40px;
  background: linear-gradient(160deg, #ffd6e7, #e8d6ff, #d6e8ff);
  text-align: center;
}
.l2d-cta-inner { max-width: 600px; margin: 0 auto; }
.l2d-cta-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--l2d-purple);
  margin-bottom: 16px;
}
.l2d-cta-section h2 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  color: var(--l2d-text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.l2d-cta-section p {
  font-size: 15px;
  color: var(--l2d-text2);
  line-height: 1.8;
  margin-bottom: 32px;
}
.l2d-cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--l2d-text2);
  margin-bottom: 0 !important;
}

/* ─── FOOTER ─── */
.l2d-footer {
  padding: 40px;
  background: var(--l2d-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.l2d-footer .l2d-brand { color: #fff; }
.l2d-footer-links {
  display: flex;
  gap: 24px;
}
.l2d-footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms;
}
.l2d-footer-links a:hover { color: var(--l2d-pink); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .l2d-what-grid { grid-template-columns: repeat(2, 1fr); }
  .l2d-video-grid { grid-template-columns: 1fr 1fr; }
  .l2d-video-featured { grid-column: 1 / -1; }
  .l2d-plan-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 32px; }
}
@media (max-width: 768px) {
  .l2d-header { padding: 0 20px; }
  .l2d-nav { gap: 14px; }
  .l2d-nav a:not(.l2d-nav-cta):not(.is-current) { display: none; }
  .l2d-section { padding: 60px 20px; }
  .l2d-hero { padding: 80px 20px 60px; }
  .l2d-what-grid { grid-template-columns: 1fr; }
  .l2d-video-grid { grid-template-columns: 1fr; }
  .l2d-works-grid { grid-template-columns: repeat(2, 1fr); }
  .l2d-footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .l2d-works-grid { grid-template-columns: 1fr; }
  .l2d-hero-actions { flex-direction: column; align-items: center; }
}


/* ═══ PROCESS VISUAL ═══ */
.l2d-process-visual-section {
  background: linear-gradient(180deg, #fff5f9 0%, #f3f0ff 100%);
}
.l2d-process-img-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(192, 132, 252, 0.2);
}
.l2d-process-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══ STREAMING SHOWCASE ═══ */
.l2d-streaming-section {
  background: linear-gradient(180deg, #f3f0ff 0%, #fff5f9 100%);
}
.l2d-section-desc {
  text-align: center;
  color: var(--l2d-text2);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.l2d-streaming-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.l2d-stream-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(192, 132, 252, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.l2d-stream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(192, 132, 252, 0.2);
}
.l2d-stream-card.l2d-stream-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.l2d-stream-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f0ff;
}
.l2d-stream-card.l2d-stream-featured .l2d-stream-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}
.l2d-stream-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.l2d-stream-img-sd {
  aspect-ratio: 1/1 !important;
  background: linear-gradient(135deg, #ffd6e7, #c8b6ff) !important;
}
.l2d-stream-img-sd img {
  object-fit: contain !important;
  padding: 1rem;
}
.l2d-stream-caption { padding: 1.5rem; }
.l2d-stream-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.l2d-stream-caption h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--l2d-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.l2d-stream-caption p {
  font-size: 0.85rem;
  color: var(--l2d-text2);
  line-height: 1.6;
  margin: 0;
}

/* 配信セット一式 */
.l2d-streaming-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: linear-gradient(135deg, #2d1b4e, #4c1d95);
  border-radius: 24px;
  overflow: hidden;
}
.l2d-streaming-set > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.l2d-streaming-set-copy {
  padding: 2.5rem;
  color: #fff;
}
.l2d-streaming-set-copy h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #fff;
}
.l2d-streaming-set-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.l2d-streaming-set-copy li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ═══ WORKS GRID LARGE ═══ */
.l2d-works-grid-large {
  grid-template-columns: repeat(4, 1fr) !important;
}
.l2d-works-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══ VIDEO CTA ═══ */
.l2d-video-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(192,132,252,0.1), rgba(129,140,248,0.1));
  border: 1px solid rgba(192,132,252,0.2);
}
.l2d-video-cta p {
  margin: 0;
  color: var(--l2d-text2);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ═══ RESPONSIVE ADDITIONS ═══ */
@media (max-width: 900px) {
  .l2d-streaming-showcase { grid-template-columns: 1fr; }
  .l2d-stream-card.l2d-stream-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .l2d-streaming-set { grid-template-columns: 1fr; }
  .l2d-streaming-set > img { min-height: 200px; }
  .l2d-works-grid-large { grid-template-columns: repeat(2, 1fr) !important; }
  .l2d-video-cta { flex-direction: column; align-items: flex-start; }
}
