.brand-logo {
  width: 42px;
  height: 35px;
  overflow: hidden;
  display: block;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 58px;
  height: 58px;
  max-width: none;
  transform: translate(-8px, -10px);
  object-fit: cover;
}

.hero-image img { object-position: 54% center; }

.program-card { align-self: start; }
.program-summary {
  margin: 22px 0 18px;
  padding: 15px 17px;
  border-radius: 10px;
  background: #f4f7fb;
  color: #526077;
  font-size: 13px;
  line-height: 1.7;
}
.program-card.expert .program-summary { background: #fff; }

.course-groups { display: grid; gap: 22px; }
.course-group h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 14px;
}
.course-group ul { padding: 0; }
.course-group li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.course-group li span {
  flex: 0 0 auto;
  color: #7b8799;
  font-size: 11px;
  font-weight: 700;
}

.scene-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 250px 250px;
}

.scene-card.large { grid-column: 1 / 6; grid-row: 1 / 3; }
.scene-card:nth-child(2) { grid-column: 6 / 9; }
.scene-card:nth-child(3) { grid-column: 9 / 13; }
.scene-card:nth-child(4) { grid-column: 6 / 8; }
.scene-card:nth-child(5) { grid-column: 8 / 10; }
.scene-card:nth-child(6) { grid-column: 10 / 13; }
.scene-card.large img { object-position: center; }
.scene-card:nth-child(2) img { object-position: center 24%; }
.scene-card:nth-child(3) img { object-position: center; }
.scene-card:nth-child(4) img { object-position: center 40%; }
.scene-card:nth-child(5) img { object-position: center 42%; }
.scene-card:nth-child(6) img { object-position: center; }
.motion-media { display: block; width: 100%; height: 100%; }

.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #b9c8e2 transparent;
}

.review-card {
  padding: 0;
  min-width: 350px;
  max-width: 350px;
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 33, 68, .05);
}

.review-thumb {
  height: 335px;
  background: #f5f6f8;
  overflow: hidden;
}

.review-thumb img { object-fit: contain; }
.review-body { padding: 24px 25px 25px; }
.review-body blockquote { font-size: 18px; line-height: 1.55; margin: 17px 0 18px; }
.review-body blockquote em { font-style: normal; color: var(--blue); }
.review-body > span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #8994a5;
}

@media (max-width: 900px) {
  .scene-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 260px 260px;
  }

  .scene-card,
  .scene-card.large,
  .scene-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  .scene-card.large { grid-column: 1 / 3; }
  .review-card { min-width: 320px; max-width: 320px; }
}

@media (max-width: 600px) {
  .brand-logo { width: 36px; height: 31px; }
  .brand-logo img { width: 51px; height: 51px; transform: translate(-7px, -9px); }
  .hero-image img { object-position: 58% center; }
  .scene-grid { display: flex; }
  .scene-card,
  .scene-card.large,
  .scene-card:nth-child(n) { min-width: 82vw; height: 360px; }
  .review-card { min-width: 84vw; max-width: 84vw; }
  .review-thumb { height: 315px; }
}
