/* ========================= PAGE BANNER ========================= */
.page-banner {
  background: var(--tan);
  padding: 32px 48px;
}

.page-banner-inner h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  margin: 0;
}

/* ========================= SHARED CONTAINER ========================= */
.lessons-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* ========================= SECTION HEADINGS ========================= */
.section-heading.centered {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading.centered h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1em;
  margin-bottom: 6px;
  color: var(--dark);
}

.section-heading.centered p {
  font-size: 14px;
  color: #888;
}

/* ========================= MASTERCLASS SECTION ========================= */
.masterclass-section {
  background: var(--white);
  padding: 60px 20px 70px;
}

/* 4-column grid */
.masterclass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.mc-card {
  background: var(--khaki);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card image */
.mc-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.mc-card-body {
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mc-card-body h4 {
  font-size: 13px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

/* Enroll button */
.enroll-btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  background: var(--hot-pink);
  color: var(--white);
  transition: background 0.2s ease, transform 0.15s ease;
}

.enroll-btn:hover {
  background: var(--mauve);
  transform: translateY(-1px);
}

/* ========================= VIDEO SECTION ========================= */
.video-section {
  background: var(--paper);
  padding: 60px 20px 70px;
}

/* 3-column grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Video card */
.video-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
}

/* Video embed wrapper — 16:9 aspect ratio */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #1a1a1a;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Video card body */
.video-card-body {
  padding: 14px 16px;
}

.video-card-body h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

/* ========================= FOOTER ========================= */
.site-footer {
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-info p {
  font-size: 12px;
  color: var(--white);
  line-height: 1.6;
}

.footer-right p {
  font-size: 12px;
  color: var(--white);
}