/* =========================================================
   about03-media.css
   載入：shared-typography.css 之後
   頁面：about_media.aspx
========================================================= */

/*** 華城之歌 ***/
.fe-song-section,
.fe-video-section {
  padding: 80px 0;
  margin-top: 0 !important;
}

.fe-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.fe-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.fe-subtitle {
  color: #56728f;
  font-size: .9rem;
  margin-bottom: 25px;
}

.fe-lyric-box {
  padding-right: 30px;
}

.fe-lyric {
  border-left: 2px solid #bcd9f3;
  padding-left: 12px;
}

.fe-lyric li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
}

.fe-lyric li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.fe-records {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.fe-record-title {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: #003d70;
}

.fe-record-title span {
  display: block;
  font-size: .9rem;
  color: var(--primary);
}

.fe-vinyl {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: repeating-radial-gradient(
      circle,
      #111 0,
      #111 3px,
      #1c1c1c 3px,
      #1c1c1c 6px
    ),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.4), rgba(0,0,0,.15));
  position: relative;
  margin: auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: .4s;
}

.fe-vinyl::before {
  content: "";
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #d8d8d8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fe-vinyl::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fe-record:hover .fe-vinyl {
  transform: translateY(-8px) rotate(15deg);
}

.fe-video-main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
}

.fe-video-card {
  background: #fff;
  border-radius: 14px;
  padding-bottom: 15px;
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
  transition: .35s;
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}

.fe-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.fe-video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
  transition: .5s;
}

.fe-video-card:hover iframe {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.fe-video-card p {
  margin: 15px 0 0;
  font-weight: 600;
  color: #003d70;
  text-align: center;
}

.fe-video-card small {
  color: #666;
}

.fe-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  z-index: 5;
}

.fade-left,
.fade-up {
  opacity: 0;
  animation: .9s forwards ease-out;
}

.fade-left {
  transform: translateX(-30px);
  animation-name: fadeLeft;
}

.fade-up {
  transform: translateY(30px);
  animation-name: fadeUp;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fe-toggle {
  display: none;
}

.video-more-wrapper {
  display: none;
}

.fe-toggle:checked ~ .video-more-wrapper {
  display: block;
}

.about-media-page .about-media-video-more .fe-toggle:checked ~ .video-more-wrapper {
  display: block;
}

.fe-more-btn {
  display: block;
  width: fit-content;
  margin: 25px auto 0;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: .3s;
}

.fe-more-btn::after {
  content: " ▼";
  font-size: 14px;
  margin-left: 6px;
}

.fe-toggle:checked + .video-more-wrapper + .fe-more-btn::after {
  content: " ▲";
}

.about-media-page .about-media-video-more .fe-toggle:checked + .video-more-wrapper + .fe-more-btn::after {
  content: " ▲";
}

/* =========================================================
   about_media.aspx — 華城之歌 + 簡介影片
========================================================= */

.about-media-page .about-media-content {
  width: 100%;
}

.about-media-page .about-media-song {
  margin-bottom: var(--title-gap-section, 48px);
}


.about-media-page .about-media-song-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.15fr);
  gap: 36px;
  align-items: center;
}

.about-media-page .about-media-lyrics {
  min-width: 0;
}

.about-media-page .about-media-lyric-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-media-page .about-media-lyrics .fe-subtitle {
  margin-bottom: 20px;
}

.about-media-page .about-media-records {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.about-media-page .fe-record {
  text-align: center;
}

.about-media-page .fe-record p {
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 600;
  color: #003d70;
  line-height: 1.5;
}

.about-media-page .about-media-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-media-page .about-media-video .fe-video-card {
  margin-bottom: 0;
}

.about-media-page .about-media-video .fe-more-btn {
  margin-top: 28px;
}

/* 隱藏區無影片，或已展開全部影片時，不顯示按鈕 */
.about-media-page .about-media-video--no-more .about-media-video-more {
  display: none !important;
}

.about-media-page .about-media-video--expanded .fe-more-btn {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .about-media-page .about-media-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .about-media-page .about-media-song-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-media-page .about-media-records {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .about-media-page .about-media-lyric-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-media-page .about-media-records {
    gap: 24px;
  }

  .about-media-page .about-media-video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
