:root {
  --cf-text: #f3f7fb;
  --cf-text-soft: #b1bcc8;
  --cf-text-muted: #7f8b98;
  --cf-primary: #00cae7;
  --cf-secondary: #6ef6d4;
  --cf-page-width: min(1360px, calc(100vw - 24px));      /* aligned to audio player width */
  --cf-page-wide-width: min(1360px, calc(100vw - 24px)); /* aligned to audio player width */
}

body {
  margin: 0;
  background: linear-gradient(180deg, #071014 0%, #0b0d10 24%, #090b0d 100%);
  color: var(--cf-text);
  font-family: 'SFProDisplay', 'Montserrat', sans-serif;
}

.cf-page,
.cf-list-page,
.cf-archive-page,
.cf-presenter-page,
.cf-video-page,
.cf-prose-page {
  width: var(--cf-page-width);
  /* cap to the CONTAINER (100%), not the viewport (100vw). The Blocs shell
     that wraps every page is constrained to --cf-shell-width (100vw - 72px),
     so a viewport-based max-width made each page ~40px wider than its box →
     sitewide horizontal overflow / off-centre on mobile. */
  max-width: 100%;
  margin: 0 auto;
}

.cf-page {
  padding: 28px 0 36px;
}

.cf-page--wide,
.cf-video-page,
.cf-archive-page {
  width: var(--cf-page-wide-width);
}

.cf-page-header {
  margin-bottom: 26px;
}

.cf-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--cf-primary);
  font-family: 'scale-variable', sans-serif !important;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf-page-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(0, 202, 231, 0.6);
}

.cf-page-title {
  margin: 0;
  color: var(--cf-text) !important;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: 0.98;
  text-transform: uppercase;
}

.cf-page-intro {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--cf-text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.cf-prose-page .content-container,
.cf-prose-page .cf-page-header {
  max-width: 900px;
}

.cf-prose-page .content-container {
  color: var(--cf-text-soft);
  line-height: 1.75;
}

.cf-prose-page h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--cf-text) !important;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.cf-prose-page p,
.cf-prose-page li {
  color: var(--cf-text-soft) !important;
  font-size: 0.98rem;
}

.cf-prose-page ul,
.cf-prose-page ol {
  padding-left: 1.2rem;
}

.cf-list-page .news-container {
  display: grid;
  gap: 16px;
}

.cf-list-page .news-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.cf-list-page .news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 14, 18, 0.85) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.cf-list-page .news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 202, 231, 0.28);
}

.cf-list-page .news-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.cf-list-page .news-title {
  margin: 0;
  color: var(--cf-text) !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.cf-list-page .news-date {
  margin-top: 8px;
  color: var(--cf-text-muted);
  font-size: 0.82rem;
}

.cf-video-page .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.cf-video-page .video-tile {
  grid-column: span 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 14, 18, 0.85) 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.cf-video-page .video-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 202, 231, 0.28);
}

.cf-video-page .video-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.cf-video-page .video-info {
  padding: 14px;
}

.cf-video-page .video-title {
  margin: 0;
  color: var(--cf-text) !important;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.cf-video-page .video-date {
  margin-top: 8px;
  color: var(--cf-text-muted);
  font-size: 0.8rem;
}

.cf-video-page .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}

.cf-video-page .modal-content {
  position: relative;
  width: min(90vw, 900px);
}

.cf-video-page .modal iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.cf-video-page .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.cf-presenter-page #presenterSearch,
.cf-archive-page #listenSearch {
  width: min(100%, 520px);
  box-sizing: border-box; /* without this, 16px side padding pushes the input
                             32px past its column → horizontal scroll → the
                             whole page looks off-centre on mobile */
  min-height: 48px;
  margin: 0 auto 24px;
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cf-text);
  font-family: 'scale-variable', sans-serif !important;
  font-size: 0.96rem;
  box-shadow: 0 0 0 0 rgba(0, 202, 231, 0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cf-presenter-page #presenterSearch:focus,
.cf-archive-page #listenSearch:focus {
  outline: none;
  border-color: rgba(0, 202, 231, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 202, 231, 0.12);
}

.cf-presenter-page .presenter-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.cf-presenter-page .presenter-card {
  grid-column: span 3;
  position: relative;   /* anchor the follow heart */
}

/* Artist "follow" heart on the Artists grid cards (frosted circle, top-right) */
.artist-fav-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(12, 16, 20, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.artist-fav-heart:hover { transform: scale(1.08); background: rgba(12, 16, 20, 0.72); }
.artist-fav-heart .heart-icon {
  width: 17px;
  height: 17px;
  fill: #fff;
  transition: fill 0.18s ease, transform 0.18s ease;
}
.artist-fav-heart.favourited .heart-icon { fill: #00cae7; transform: scale(1.12); }

/* "Follow" pill on the individual artist page hero */
.cf-presenter-follow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.cf-presenter-follow .heart-icon { width: 16px; height: 16px; fill: currentColor; }
.cf-presenter-follow:hover { border-color: rgba(0, 202, 231, 0.5); }
.cf-presenter-follow.favourited {
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
  border-color: transparent;
  color: #04232a;
}
.cf-presenter-follow.favourited .cf-follow-label::after { content: 'ing'; }   /* Follow → Following */

.cf-presenter-page .presenter-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.32s ease, box-shadow 0.32s ease;
}

.cf-presenter-page .presenter-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Gradient scrim so the overlaid name stays legible over any photo */
.cf-presenter-page .presenter-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4, 12, 16, 0.92) 0%,
    rgba(4, 12, 16, 0.5) 26%,
    rgba(4, 12, 16, 0) 54%);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.cf-presenter-page .presenter-name {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  margin: 0;
  color: #fff !important;
  font-family: 'scale-variable', sans-serif !important;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  transition: transform 0.32s ease;
}

/* Neon accent under the name that extends on hover */
.cf-presenter-page .presenter-name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00cae7, #6ef6d4);
  transition: width 0.32s ease;
}

.cf-presenter-page .presenter-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 202, 231, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(0, 202, 231, 0.15);
}

.cf-presenter-page .presenter-box:hover img {
  transform: scale(1.07);
}

.cf-presenter-page .presenter-box:hover::after {
  opacity: 1;
}

.cf-presenter-page .presenter-box:hover .presenter-name {
  transform: translateY(-2px);
}

.cf-presenter-page .presenter-box:hover .presenter-name::before {
  width: 44px;
}

.cf-archive-page .listen-archive-container {
  padding: 0;
  background: transparent;
}

.cf-archive-page .show-count-wrapper {
  margin-bottom: 26px;
  text-align: center;
}

.cf-archive-page .show-count-title {
  margin: 0;
  color: var(--cf-text) !important;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.cf-archive-page .show-count-wrapper p {
  margin: 10px 0 0;
  color: var(--cf-text-soft);
}

.cf-archive-page .genre-filter {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf-archive-page .genre-filter button,
.cf-archive-page .genre-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 202, 231, 0.24);
  background: rgba(0, 202, 231, 0.08);
  color: var(--cf-text) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cf-archive-page .genre-filter button.active,
.cf-archive-page .genre-filter button:hover {
  background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-secondary) 100%);
  color: #041317 !important;
}

.cf-archive-page .cf-search-wrap {
  max-width: 520px;
  margin: 0 auto 24px;
}

.cf-archive-page .listen-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.cf-archive-page .listen-card {
  grid-column: span 2;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 14, 18, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;       /* override the legacy .listen-btn { align-items:center } so text boxes left-align instead of shrink-centering */
  text-align: left;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, opacity 0.3s ease;
}
/* the text/genre rows must span full width so left-alignment reads across the card */
.cf-archive-page .listen-card > .show-name,
.cf-archive-page .listen-card > .show-presenter,
.cf-archive-page .listen-card > .show-date,
.cf-archive-page .listen-card > .genre-tags,
.cf-archive-page .listen-card > img,
.cf-archive-page .listen-card > .split-image {
  align-self: stretch;
}

.cf-archive-page .listen-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 202, 231, 0.28);
}

.cf-archive-page .listen-card.hidden {
  display: none !important;
}

.cf-archive-page .listen-card.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.cf-archive-page .listen-card.fade-out {
  opacity: 0 !important;
  transform: translateY(20px) !important;
}

.cf-archive-page .listen-card img,
.cf-archive-page .split-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.cf-archive-page .listen-card img {
  object-fit: cover;
  display: block;
}

.cf-archive-page .split-image {
  display: flex;
}

.cf-archive-page .split-image .left-half,
.cf-archive-page .split-image .right-half {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.cf-archive-page .split-image .left-half {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------------------------------------------------------------------------
   LISTEN-BACK card treatment (shared by listen_back_archive.php AND
   favourites.php — both use `.cf-archive-page.cf-archive-page--listenback`).
   Single source of truth so the two pages render identically: solid card,
   no border, full-bleed SQUARE image with rounded top, text inset 14px.
   The doubled class outranks the generic `.cf-archive-page` rules above.
   --------------------------------------------------------------------------- */
.cf-archive-page.cf-archive-page--listenback .listen-card {
  background: #1b1b1d;
  border: none;
  padding: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.cf-archive-page.cf-archive-page--listenback .listen-card img,
.cf-archive-page.cf-archive-page--listenback .split-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}
.cf-archive-page.cf-archive-page--listenback .listen-card img {
  display: block;
  border-bottom: none;
}
/* card body gets its horizontal inset here (image stays edge-to-edge) */
.cf-archive-page.cf-archive-page--listenback .show-name,
.cf-archive-page.cf-archive-page--listenback .show-presenter,
.cf-archive-page.cf-archive-page--listenback .show-date,
.cf-archive-page.cf-archive-page--listenback .genre-tags {
  padding-left: 14px;
  padding-right: 14px;
}
.cf-archive-page.cf-archive-page--listenback .lb-action {
  margin: 10px 0 0 14px;
}
/* text typography — matches the archive exactly (name gap under image, sizes,
   line-height) so favourites and the archive line up row-for-row */
.cf-archive-page.cf-archive-page--listenback .show-name {
  margin: 0;
  font-size: 13px;
  line-height: 1.15;
}
.cf-archive-page.cf-archive-page--listenback .show-presenter {
  min-height: 0;
  padding-top: 12px;
  margin-bottom: 3px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.cf-archive-page.cf-archive-page--listenback .show-presenter a {
  color: inherit;
  text-decoration: none;
}
.cf-archive-page.cf-archive-page--listenback .show-date {
  margin: 0 0 4px;
  color: #9aa3ad;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
}
.cf-archive-page.cf-archive-page--listenback .genre-tags {
  margin-top: 10px;
  padding-top: 0;
}
.cf-archive-page.cf-archive-page--listenback .genre-pill {
  min-height: 0;
  padding: 4px 11px;
  border: 0;
  border-radius: 999px;
  background: #33343a;
  color: #d7dbe2 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.cf-archive-page .show-name {
  margin: 0 0 4px;
  color: var(--cf-text) !important;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.cf-archive-page .show-presenter {
  color: var(--cf-text-soft) !important;
  font-size: 0.82rem;
}

.cf-archive-page .show-date {
  margin-top: 6px;
  color: var(--cf-text-muted);
  font-size: 0.74rem;
}

.cf-archive-page .genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

/* SHOW INFO / Tracklisting action button (shared — was previously only inline
   in listen_back_archive.php, so favourites.php rendered it as plain text). */
.cf-archive-page .lb-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 0 0;   /* no left margin — the card's own padding provides the inset (archive overrides this in its scoped rules) */
  padding: 4px 10px;
  border-radius: 999px;
  background: #00cae7;
  color: #04232a !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}
.cf-archive-page .lb-action--tracklist {
  background: #ffffff;
  color: #111 !important;
}
.cf-archive-page .lb-action--info {
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
}
.cf-archive-page .lb-action--info i { display: none; }
.cf-archive-page .lb-action--info::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cg%20fill%3D%27%23000%27%3E%3Crect%20x%3D%272%27%20%20%20%20y%3D%278.5%27%20width%3D%272.8%27%20height%3D%277%27%20%20rx%3D%271.4%27/%3E%3Crect%20x%3D%276.8%27%20%20y%3D%275.5%27%20width%3D%272.8%27%20height%3D%2713%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2711.6%27%20y%3D%272.5%27%20width%3D%272.8%27%20height%3D%2719%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2716.4%27%20y%3D%276.5%27%20width%3D%272.8%27%20height%3D%2711%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2721.2%27%20y%3D%279%27%20%20%20width%3D%272.8%27%20height%3D%276%27%20%20rx%3D%271.4%27/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cg%20fill%3D%27%23000%27%3E%3Crect%20x%3D%272%27%20%20%20%20y%3D%278.5%27%20width%3D%272.8%27%20height%3D%277%27%20%20rx%3D%271.4%27/%3E%3Crect%20x%3D%276.8%27%20%20y%3D%275.5%27%20width%3D%272.8%27%20height%3D%2713%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2711.6%27%20y%3D%272.5%27%20width%3D%272.8%27%20height%3D%2719%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2716.4%27%20y%3D%276.5%27%20width%3D%272.8%27%20height%3D%2711%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2721.2%27%20y%3D%279%27%20%20%20width%3D%272.8%27%20height%3D%276%27%20%20rx%3D%271.4%27/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.cf-archive-page .favourite-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cf-archive-page .heart-icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  transition: transform 0.25s ease, fill 0.25s ease;
}

.cf-archive-page .heart-icon.favourited {
  fill: var(--cf-primary);
  transform: scale(1.18);
}

.cf-archive-page .presenter-link {
  color: inherit;
  text-decoration: none;
}

.cf-archive-page .presenter-link:hover {
  color: var(--cf-primary, #00cae7);
}

/* ›  chevron after a clickable presenter name (matches the home page) */
.cf-archive-page .show-presenter:has(.presenter-link)::after {
  content: "\203A";
  display: inline-block;
  margin-left: 6px;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, color 0.2s ease;
}
.cf-archive-page .show-presenter:has(.presenter-link):hover::after {
  color: var(--cf-primary, #00cae7);
  transform: translateX(3px);
}

.cf-archive-page .layout-freeze {
  display: grid;
  overflow: hidden;
}

.cf-archive-page .load-more-card {
  grid-column: span 2;
  min-height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-secondary) 100%);
  color: #041317;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1200px) {
  .cf-video-page .video-tile {
    grid-column: span 4;
  }

  .cf-presenter-page .presenter-card {
    grid-column: span 4;
  }

  .cf-archive-page .listen-card,
  .cf-archive-page .load-more-card {
    grid-column: span 3;
  }
}

@media (max-width: 767px) {
  .cf-page,
  .cf-list-page,
  .cf-archive-page,
  .cf-presenter-page,
  .cf-video-page,
  .cf-prose-page {
    width: 100%; /* fill the (already-centred) shell container, not the viewport */
  }

  .cf-list-page .news-item {
    grid-template-columns: 1fr;
  }

  .cf-list-page .news-img {
    width: 100%;
    height: 220px;
  }

  .cf-video-page .grid,
  .cf-presenter-page .presenter-grid,
  .cf-archive-page .listen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* slightly more breathing room between listen-back cards on mobile (matches the app) */
  .cf-archive-page .listen-grid {
    gap: 16px;
  }

  .cf-video-page .video-tile,
  .cf-presenter-page .presenter-card,
  .cf-archive-page .listen-card,
  .cf-archive-page .load-more-card {
    grid-column: auto;
  }

  .cf-video-page .modal iframe {
    height: 250px;
  }

  .cf-page-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
  }
}

/* ===== Merchandise ===== */
.cf-merch {
  width: var(--cf-page-width);
  margin: 0 auto;
  padding: 8px 0 40px;
}

.cf-merch-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.cf-merch-head-text { max-width: 640px; }

.cf-merch-kicker {
  margin: 0 0 6px;
  color: var(--cf-primary);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cf-merch-title {
  margin: 0 0 16px;
  color: var(--cf-text);
  font-size: clamp(2rem, 6vw, 3rem);
}

.cf-merch-intro {
  color: var(--cf-text-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.cf-merch-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 11px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
  color: #04232a !important;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 202, 231, 0.28);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.cf-merch-cta:hover { transform: translateY(-2px); filter: brightness(1.04); }

.cf-merch-partner img {
  max-width: 220px;
  height: auto;
  opacity: 0.95;
}

.cf-merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.cf-merch-card {
  display: flex;
  flex-direction: column;
  background: #1b1b1d;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-merch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.cf-merch-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111 center / cover no-repeat;
}

.cf-merch-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 16px;
}

.cf-merch-card-title {
  color: var(--cf-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.cf-merch-buy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #00cae7;
  color: #04232a !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.cf-merch-buy:hover { filter: brightness(1.05); transform: translateY(-1px); }

.cf-merch-empty { color: var(--cf-text-muted); }

/* Home — horizontal scroll row */
.cf-merch-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.cf-merch-row::-webkit-scrollbar { display: none; }
.cf-merch-row .cf-merch-card {
  flex: 0 0 clamp(180px, 44vw, 230px);
  width: clamp(180px, 44vw, 230px);
}

@media (max-width: 600px) {
  .cf-merch-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cf-merch-head { gap: 22px; }
}

/* ===== Events — flyer cards ===== */
.cf-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.cf-event-card {
  display: flex;
  flex-direction: column;
  background: #1b1b1d;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.cf-event-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111 center / cover no-repeat;
}

.cf-event-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 15px 16px;
}

.cf-event-card-title {
  color: var(--cf-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.cf-event-card-date {
  color: #9aa3ad;
  font-size: 0.72rem;
  font-weight: 400;
}

@media (max-width: 600px) {
  .cf-event-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Home events row: 3-up on mobile (smaller cards) */
  .cf-homepage .cf-event-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cf-homepage .cf-event-card-body { padding: 9px 9px 11px; gap: 2px; }
  .cf-homepage .cf-event-card-title { font-size: 0.74rem; line-height: 1.2; }
  .cf-homepage .cf-event-card-date { font-size: 0.6rem; }
}

/* =====================================================================
   CENTRALISED SHOW CARD  (.cf-show-grid > .listen-card)
   The single source of truth for the app-style listen/show card.
   Any page can drop a .cf-show-grid wrapper and get identical cards.
   ===================================================================== */
.cf-show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}
.cf-show-grid .listen-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;       /* override the legacy .listen-btn { align-items:center } → left-aligned; pills size to content (image keeps its explicit width:100%) */
  justify-content: flex-start;   /* and pack from the top so images line up across a stretched row */
  width: 100%;
  padding: 0 0 14px;
  margin: 0;
  background: #1b1b1d !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-show-grid .listen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}
.cf-show-grid .listen-card > img,
.cf-show-grid .listen-card .split-image {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  height: auto !important;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.cf-show-grid .split-image { display: flex; }
.cf-show-grid .split-image .left-half,
.cf-show-grid .split-image .right-half {
  flex: 1;
  background-size: cover;
  background-position: center;
}
.cf-show-grid .show-name {
  margin: 0;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1.15;
  color: var(--cf-text-soft);
}
.cf-show-grid .show-presenter {
  margin: 0 0 3px;
  padding: 12px 14px 0;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.cf-show-grid .show-presenter a { color: inherit; text-decoration: none; }
.cf-show-grid .show-date {
  margin: 0;
  padding: 0 14px;
  color: #9aa3ad;
  font-size: 11px;
  font-weight: 400;
}
/* action pill (Show Info / Tracklisting) */
.cf-show-grid .lb-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #00cae7;
  color: #04232a !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}
.cf-show-grid .lb-action--tracklist { background: #ffffff; color: #111 !important; }

/* Show Info button: brand blue→green gradient + waveform glyph (matches home).
   Hide any existing share/icon <i> so only the waveform shows. */
.cf-show-grid .lb-action--info {
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
}
.cf-show-grid .lb-action--info i { display: none; }
.cf-show-grid .lb-action--info::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cg%20fill%3D%27%23000%27%3E%3Crect%20x%3D%272%27%20%20%20%20y%3D%278.5%27%20width%3D%272.8%27%20height%3D%277%27%20%20rx%3D%271.4%27/%3E%3Crect%20x%3D%276.8%27%20%20y%3D%275.5%27%20width%3D%272.8%27%20height%3D%2713%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2711.6%27%20y%3D%272.5%27%20width%3D%272.8%27%20height%3D%2719%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2716.4%27%20y%3D%276.5%27%20width%3D%272.8%27%20height%3D%2711%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2721.2%27%20y%3D%279%27%20%20%20width%3D%272.8%27%20height%3D%276%27%20%20rx%3D%271.4%27/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cg%20fill%3D%27%23000%27%3E%3Crect%20x%3D%272%27%20%20%20%20y%3D%278.5%27%20width%3D%272.8%27%20height%3D%277%27%20%20rx%3D%271.4%27/%3E%3Crect%20x%3D%276.8%27%20%20y%3D%275.5%27%20width%3D%272.8%27%20height%3D%2713%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2711.6%27%20y%3D%272.5%27%20width%3D%272.8%27%20height%3D%2719%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2716.4%27%20y%3D%276.5%27%20width%3D%272.8%27%20height%3D%2711%27%20rx%3D%271.4%27/%3E%3Crect%20x%3D%2721.2%27%20y%3D%279%27%20%20%20width%3D%272.8%27%20height%3D%276%27%20%20rx%3D%271.4%27/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.cf-show-grid .genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0 14px;
}
.cf-show-grid .genre-tags .genre-pill {
  padding: 4px 11px;
  border: 0;
  border-radius: 999px;
  background: #33343a;
  color: #d7dbe2 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.cf-show-grid .favourite-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cf-show-grid .heart-icon { width: 15px; height: 15px; fill: #fff; transition: fill 0.2s ease, transform 0.2s ease; }
.cf-show-grid .heart-icon.favourited { fill: #00cae7; transform: scale(1.15); }

/* video tile reuses the card shell */
.cf-show-grid .video-tile { cursor: pointer; }

/* =====================================================================
   ARTIST / PRESENTER PROFILE PAGE  (.cf-presenter)
   ===================================================================== */
.cf-presenter {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  /* top padding clears the fixed nav (this page has no hero to push it down) */
  padding: 142px 16px 70px;
  box-sizing: border-box;
  color: var(--cf-text);
}
.cf-presenter-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cf-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.cf-presenter-back:hover { color: #00cae7; }

.cf-presenter-hero {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
}
.cf-presenter-photo {
  width: 230px;
  height: 230px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.cf-presenter-headline { min-width: 0; }
.cf-presenter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #00cae7;
  font-family: 'scale-variable', sans-serif !important;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cf-presenter-kicker::before { content: ""; width: 36px; height: 1px; background: rgba(0, 202, 231, 0.6); }
.cf-presenter-name {
  margin: 0 0 16px;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  font-variation-settings: "wght" 800, "wdth" 100;
}
.cf-presenter-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.cf-presenter-socials { display: flex; gap: 10px; }
.cf-presenter-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cf-presenter-socials a:hover { background: #00cae7; color: #04232a; border-color: transparent; transform: translateY(-2px); }
.cf-presenter-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
  color: #04232a;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.cf-presenter-share:hover { transform: translateY(-2px); filter: brightness(1.04); }
.cf-presenter-share svg { width: 15px; height: 15px; fill: currentColor; }

.cf-presenter-bio {
  max-width: 780px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}
.cf-presenter-bio p { margin: 0 0 1em; }

.cf-presenter-section-title {
  margin: 46px 0 18px;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  font-variation-settings: "wght" 800, "wdth" 100;
}

@media (max-width: 720px) {
  .cf-presenter { padding-top: 126px; }
  .cf-presenter-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
  .cf-presenter-photo { width: 160px; height: 160px; }
  .cf-presenter-actions { justify-content: center; }
  .cf-presenter-kicker { justify-content: center; }
  .cf-presenter-bio { text-align: left; }
  .cf-show-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* =====================================================================
   FRIENDS OF THE FORCE — partner logo wall (B&W → colour on hover)
   ===================================================================== */
.cf-friends-page { padding: 16px 0 80px; }
.cf-friends-heading {
  font-family: 'scale-variable', sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #fff;
  margin: 0 0 12px;
}
.cf-friends-intro {
  color: var(--cf-text-soft, #9aa3ad);
  font-size: 15px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 0 34px;
}
.cf-friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}
.cf-friend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cf-friend-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cf-friend-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.cf-friend:hover .cf-friend-logo {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}
.cf-friend:hover .cf-friend-logo img {
  filter: none;
  opacity: 1;
}
.cf-friend-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--cf-text-soft, #9aa3ad);
  text-align: center;
  line-height: 1.3;
}
.cf-friend:hover .cf-friend-name { color: #fff; }

@media (max-width: 600px) {
  .cf-friends-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Friends cards are now buttons (open a detail modal) — reset button chrome */
.cf-friends-grid .cf-friend {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ===== Friend detail modal ===== */
.cf-friend-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cf-friend-modal[hidden] { display: none; }
.cf-friend-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 12, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.cf-friend-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  width: min(900px, 100%);
  max-height: 88vh;
  overflow: hidden;
  background: #11151a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  animation: cfFmIn 0.25s ease;
}
@keyframes cfFmIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.cf-friend-modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #fff;
}
.cf-friend-modal-logo img { max-width: 100%; max-height: 240px; object-fit: contain; }
.cf-friend-modal-body { padding: 30px 32px; overflow-y: auto; }
.cf-friend-modal-name {
  margin: 0 0 16px;
  font-family: 'scale-variable', sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
}
.cf-friend-modal-cta {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00cae7, #6ef6d4);
  color: #04232a !important;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.cf-friend-modal-cta[hidden] { display: none; }
.cf-friend-modal-desc {
  color: var(--cf-text-soft, #b1bcc8);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line; /* preserve scraped paragraph breaks safely (textContent) */
}
.cf-friend-modal-contact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cf-text-soft, #b1bcc8);
  font-size: 14px;
  line-height: 1.6;
}
.cf-friend-modal-contact .lbl { display: block; color: #fff; font-weight: 700; margin-top: 8px; }
.cf-friend-modal-contact a { color: #00cae7; text-decoration: none; }
.cf-friend-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cf-friend-modal-close:hover { background: rgba(0, 0, 0, 0.65); }

@media (max-width: 640px) {
  .cf-friend-modal-card { grid-template-columns: 1fr; max-height: 92vh; }
  .cf-friend-modal-logo { padding: 24px; }
  .cf-friend-modal-logo img { max-height: 150px; }
  .cf-friend-modal-body { padding: 22px; }
}

/* Friends — category section headings + intro email link */
.cf-friends-section {
  margin: 40px 0 18px;
  font-family: 'scale-variable', sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #fff;
}
.cf-friends-page .cf-friends-mail { color: #00cae7; text-decoration: none; }
.cf-friends-page .cf-friends-mail:hover { color: #6ef6d4; }
