/* ============================================
   Collage Frame Page
   ============================================ */
.cf-hero {
  padding: 24px 24px 0;
  text-align: center;
  background: linear-gradient(to bottom, #ECECEC, #F9F9F9);
}

.cf-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cf-hero__title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cf-hero__subtitle {
  font-family: var(--font-cursive);
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.cf-hero__body {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  text-align: left;
}

.cf-screenshots {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 900px;
}

.cf-screenshots__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.cf-screenshots__caption {
  font-size: 13px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* Pull download divider flush with the bottom of the screenshots */
#collage-frame-hero .app-section__download {
  margin-top: 0;
  border-top-color: rgba(0, 0, 0, 0.06);
}

.cf-screenshots__img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.cf-videos {
  background: #333333;
  color: #FFFFFF;
  padding: 48px 24px;
  text-align: center;
}

.cf-videos__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cf-videos__title {
  font-family: var(--font-cursive);
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.cf-videos__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.cf-videos__item {
  text-align: left;
}

.cf-videos__label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cf-videos__player {
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.cf-videos__player video,
.cf-videos__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   Media Queries — 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .cf-hero__title {
    font-size: 24px;
  }

  .cf-hero__subtitle {
    font-size: 20px;
  }

  .cf-screenshots__figure {
    min-width: 160px;
  }
}
