@charset "UTF-8";

/* =========================================================
   RAP'L — CSS CLEAN
   Structure :
   01. Fonts / Variables
   02. Base
   03. Navbar
   04. Titres / Lignes
   05. Footer
   06. Effets communs
   07. Page accueil / calendrier
   08. Page artiste
   09. Page liste des sorties
   10. Page suggestions semaine
   11. Page album
   12. Interview spéciale
   13. Responsive — tous les media queries
   ========================================================= */

/* =========================================================
   01. FONTS / VARIABLES
   ========================================================= */
@font-face {
  font-family: "Fenul Medium";
  src: url("font/fenulstandard-trial-medium-webfont.woff2") format("woff2"),
       url("font/fenulstandard-trial-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Fenul Regular";
  src: url("font/fenulstandard-trial-regular-webfont.woff2") format("woff2"),
       url("font/fenulstandard-trial-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "beausite_edu_classicregular";
  src: url("font/beausiteeduclassic-regular-webfont.woff2") format("woff2"),
       url("font/beausiteeduclassic-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #fff;
  --text: #111;
  --line: #111;
  --line-soft: rgba(0, 0, 0, 0.18);

  --font-title: "Fenul Medium", sans-serif;
  --font-body: "beausite_edu_classicregular", serif;

  --nav-height: 86px;
}

/* =========================================================
   02. BASE
   ========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-title) !important;
}

a {
  color: inherit;
  text-decoration: none !important;
}

a:hover {
  color: inherit;
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
}

h2,
h3 {
  font-size: 20px !important;
}

.page {
  margin: 0 auto;
  padding: 12px;
}

.section {
  margin-top: 40px;
}

.empty,
.empty-state,
.not-found {
  font-family: var(--font-body);
}

.date-dot {
  font-size: 0.55em;
  margin: 0 1px;
}

/* =========================================================
   03. NAVBAR
   ========================================================= */
.navbar {
  background: white;
}

.nav-item {
  font-size: 20px;
}

.navbar-nav .nav-link {
  color: black !important;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline !important;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 28px;
  height: 22px;
  border-top: 2px solid black;
  transition: border-color 0.25s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: black;
  transition: all 0.35s ease;
}

.navbar-toggler-icon::before {
  top: 8px;
}

.navbar-toggler-icon::after {
  top: 18px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-top-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 11px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 11px;
  transform: rotate(-45deg);
}

/* =========================================================
   04. TITRES / LIGNES
   ========================================================= */
.section-title {
  display: inline-block;
  margin: 0 0 14px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  line-height: 1;
}

.title-underline,
.title-underlinefooter,
.title-underlineliste,
.title-underlinetitle,
.mobile-suggestions-title,
.premier {
  display: block;
  width: 100%;
  position: relative;
}

.title-underline::after,
.title-underlinefooter::after,
.title-underlineliste::after,
.title-underlinetitle::after,
.mobile-suggestions-title::after,
.premier::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: black;
}


.title-underline::after { margin-bottom:-5px !important; }
.title-underlinefooter::after { bottom: 200px; }
.title-underlineliste::after { bottom: 100px; }
.title-underlinetitle::after { bottom: 7px; }
.mobile-suggestions-title::after { bottom: 6px; }
.premier::after { bottom: 8px !important; }

.premier {
  font-size: 3rem !important;
}

.mobile-suggestions-title {
  display: none;
  margin-bottom: 12px;
  font-size: 30px !important;
}

/* =========================================================
   05. FOOTER
   ========================================================= */
footer a {
  color: black;
  font-size: 20px;
}

.title-underlinefooter a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.title-underlinefooter a:hover {
  text-decoration: underline !important;
}

/* =========================================================
   06. EFFETS COMMUNS
   ========================================================= */
@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.album-hover-spin {
  display: inline-block;
  overflow: hidden;
}

.album-hover-spin img,
.vinyl-cover,
.release-cover,
.calendar-release-cover,
.release-line-cover,
.suggest-cover {
  transition: border-radius 0.35s ease, transform 0.35s ease;
  transform-origin: center center;
}

.album-hover-spin:hover img,
.vinyl-cover.spin,
.release-item:hover .release-cover,
.calendar-release:hover .calendar-release-cover,
.release-line:hover .release-line-cover,
.suggest-card:hover .suggest-cover,
.suggest-card.is-spinning .suggest-cover {
  border-radius: 50%;
  animation: spinVinyl 2s linear infinite;
}

/* =========================================================
   07. PAGE ACCUEIL / CALENDRIER
   index.html
   ========================================================= */
.titreinterivew {
  font-size: 80px;
}

.lien {
  color: black;
}

.weekly-carousel {
  position: relative;
  margin-top: 60px;
  width: 100%;
  height: 90vh;
  min-height: 100%;
}

.weekly-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: none;
}

.weekly-slide.active {
  display: block;
}

.weekly-slide-bg,
.weekly-bg-video,
.weekly-bg-fallback,
.weekly-bg-overlay {
  position: absolute;
  inset: 0;
}

.weekly-slide-bg { z-index: 1; }

.weekly-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weekly-bg-fallback {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.weekly-bg-overlay {
  z-index: 2;
  pointer-events: none;
}

.weekly-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  padding: 100px;
}

.weekly-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weekly-right {
  max-width: 1040px;
  color: white;
}

.weekly-cover-link {
  display: inline-block;
  overflow: hidden;
}

.weekly-cover {
  width: 350px;
  height: 350px;
  object-fit: cover;
}

.weekly-info {
  color: #fff;
  padding: 10px;
}

.weekly-kicker {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.3rem;
}

.weekly-title {
  margin: 0 0 12px 0;
  color: white;
  font-size: 1rem;
}

.weekly-album {
  color: white;
  font-size: 5rem;
  line-height: 4rem;
  text-decoration: none;
}

.weekly-album:hover,
.weekly-artist a:hover,
.weekly-sound-btn:hover {
  text-decoration: underline !important;
}

.weekly-artist,
.weekly-date,
.weekly-desc {
  color: white;
  font-size: 3rem;
  line-height: 1.2;
}

.weekly-artist a {
  color: white;
}

.weekly-sound-btn {
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.weekly-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 100px;
  color: white;
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.weekly-carousel-btn.prev { left: 20px; }
.weekly-carousel-btn.next { right: 20px; }

.calendar-top-block {
  border-bottom: 1px solid #222;
}

.calendar-toolbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.calendar-month-title {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.month-nav-btn {
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
   border-bottom: 1px solid #222;
}

.calendar-column {

  display: flex;
  flex-direction: column;
  border-right: 1px solid #222;
}

.calendar-day {

  border-bottom: 1px solid #222;
  background: white;
  min-height: auto;
}

.calendar-day.empty {
  min-height: 25px;
}

.calendar-day:not(.empty) {
  min-height: 110px;
}

.calendar-day-head {
  padding: 1rem 0.3rem 0.35rem;
}

.calendar-day-label {
  font-size: 0.95rem;
}

.calendar-entry {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.calendar-entry-cover {
  width: 80px;
  height: 73px;
  object-fit: cover;
}

.calendar-entry-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.calendar-entry-artist,
.calendar-entry-album,
.calendar-entry-year {
  font-size: 1rem;
}

.calendar-entry-album,
.calendar-entry-year {
  margin-top: 0.2rem;
}

.calendar-entry.is-current-year {
  grid-template-columns: 150px 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
}

.calendar-entry.is-current-year .calendar-entry-cover {
  width: 140px;
  height: 140px;
}

.calendar-entry.is-current-year .calendar-entry-year {
  font-size: 1.5rem;
}

/* =========================================================
   08. PAGE ARTISTE
   artiste.html / artist page dynamique
   ========================================================= */
.artist-photo-wrap {
  max-width: 500px;
  margin-bottom: 18px;
}

.artist-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.artist-infos {
  max-width: 420px;
  padding-top: 12px;
}

.artist-name {
  font-family: var(--font-title) !important;
  font-size: 3rem !important;
  display: block;
  width: 100%;
  margin: 0 0 12px 0;
  position: relative;
}

.artist-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100vw;
  height: 1px;
  background: black;
}

.artist-desc {
  font-size: 14px;
}

.artist-link,
.artist-photo-link {
  color: inherit;
  text-decoration: none;
}

.release-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: none;
  color: inherit;
}

.release-cover {
  width: 260px;
  height: 260px;
  object-fit: cover;
}

.release-meta,
.release-meta-left,
.release-meta-right {
  display: flex;
}

.release-meta {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.release-meta-left,
.release-meta-right {
  flex-direction: column;
}

.release-meta-right {
  text-align: right;
}

.release-artist,
.release-title,
.release-date,
.release-duration {
  line-height: 1.2;
}

.release-duration {
  color: black !important;
  font-size: 1.2rem;
}

.release-desc {
  max-width: 500px;
  font-size: 13px;
}

.play-btn-mobile {
  display: none;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  text-transform: lowercase;
  cursor: pointer;
}

#calendar {
  margin: 0 !important;
  padding-left: 40px;
  padding-right: 40px;
  row-gap: 0 !important;
}

#calendar .col-12,
#calendar .col-lg-6 {
  padding-left: 0;
  padding-right: 20px;
  margin: 0 !important;
}

.calendar-release {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit;
}

.calendar-release-cover {
  display: block;
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  object-fit: cover;
}

.calendar-release-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  min-width: 0;
  height: 80px;
  padding: 20px;
}

.calendar-release-main,
.calendar-release-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.calendar-release-main {
  min-width: 0;
}

.calendar-release-side {
  align-items: flex-end;
  text-align: right;
  gap: 4px;
  flex-shrink: 0;
}

.calendar-release h2 {
  margin: 0;
  font-weight: 400;
}

.calendar-release-artist {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
}

.calendar-release-title {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
}

.calendar-release-date,
.calendar-release-duration {
  text-align: right;
  white-space: nowrap;
}

.calendar-release-date { font-size: 1rem; }
.calendar-release-duration { font-size: 0.95rem; }

#similar {
  row-gap: 0.5rem !important;
}

.similar-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.similar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.similar-card:hover img {
  transform: scale(1.05);
}

/* =========================================================
   09. PAGE LISTE DES SORTIES
   liste2.html
   ========================================================= */
.releases-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  align-items: center;
}

.releases-toolbar input,
.releases-toolbar select,
.genre-dropdown-btn {
  height: 38px;
  border: 1px solid black;
  background: white;
  color: black;
  padding: 8px 12px;
  font-family: var(--font-title);
  font-size: 14px;
  line-height: 1;
}

.releases-toolbar input {
  flex: 1;
  min-width: 240px;
}

.releases-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.9em;
  font-family: var(--font-body);
}

.releases-results {
  display: flex;
  flex-direction: column;
}

.release-line {
  display: flex;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.release-line-cover-wrap {
  width: 150px;
  flex: 0 0 150px;
}

.release-line-cover {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.release-line-left {
  flex: 1;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

.release-line-artist,
.release-line-album {
  margin: 0;
  font-size: 1rem;
}

.release-line-genre {
  margin-top: 4px;
  font-size: 0.9rem;
}

.release-line-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 10px;
}

.release-line-date,
.release-line-duration {
  font-size: 0.9rem;
}

.genre-dropdown {
  position: relative;
}

.genre-dropdown-btn {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.genre-dropdown-btn::after {
  content: "?";
  font-size: 12px;
}

.genre-dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  width: auto !important;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid black;
  z-index: 100;
}

.genre-dropdown.open .genre-dropdown-menu {
  display: block;
}

.genre-option {
  display: inline !important;
  padding: 0 !important;
  margin-right: 10px;
}

.genre-option:hover {
  opacity: 0.6;
}

.genre-option.active {
  border-bottom: 1px solid black;
}

.genre-option input {
  width: 12px;
  height: 12px;
}

.genre-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.genre-dropdown-menu::-webkit-scrollbar-thumb {
  background: black;
}

/* =========================================================
   10. PAGE SUGGESTIONS SEMAINE
   suggestionsdelasemaine.html
   ========================================================= */
.suggestions a {
  color: black;
  text-decoration: none;
}

.suggestions a:hover {
  color: black;
  text-decoration: underline;
  transition: 0.2s;
}

.vinyl-cover {
  width: 100%;
  display: block;
  border-radius: 0;
}

.play-btn {
  padding: 0;
  border: none;
  background: none;
  color: black;
  font-size: 14px;
}

/* =========================================================
   11. PAGE ALBUM
   album.html
   ========================================================= */
.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.release-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}


.hero-block {
  padding-top: 120px;
}

.hero-tracklist {
  color: black;
}

.tracklist,
.track-item,
.hero-tracklist {
  margin: 0;
  padding: 0;
}

.track-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  line-height: 1.5;
  font-size: 1.2rem;
}

.track-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

.track-row:hover::after {
  width: 100%;
}

.track-title {
  text-align: left;
}

.track-duration {
  text-align: right;
  white-space: nowrap;
  color: black;
}

.artist-title,
.album-title,
.release-line {
  margin: 0;
  line-height: 1.1;
}

.project-text {
  font-family: var(--font-body);
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.single-artist,
.single-name {
  margin: 0;
  line-height: 1.05;
}

.suggestions-grid {
  margin: 0;
}

.suggestions-grid > [class*="col-"] {
  padding: 0 !important;
}

.suggest-card {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: normal;
}

.suggest-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.suggest-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
}

.suggest-text {
  display: flex;
  flex-direction: column;
}

.suggest-artist,
.suggest-title,
.suggest-date,
.suggest-duration {
  font-size: 1.5rem;
  line-height: 1.1;
}

.suggest-date,
.suggest-meta {
  text-align: right;
  white-space: nowrap;
}

.mobile-suggest-play {
  display: none;
}

.pagealbum {
  margin-top: 100px !important;
}

/* =========================================================
   12. INTERVIEW SPÉCIALE
   ========================================================= */
.ja3c-interview a {
  color: black;
  font-family: var(--font-title);
}

/* =========================================================
   13. RESPONSIVE — TOUS LES MEDIA QUERIES
   ========================================================= */

/* Desktop large */
@media (min-width: 1200px) {
  .calendar-release-cover {
    width: 300px !important;
    height: 300px !important;
    flex: 0 0 300px !important;
  }

  .title-underline::after {
    bottom: 60px !important;
  }
}

/* Desktop Bootstrap lg+ */
@media (min-width: 992px) {
  h2,
  h3 {
    font-size: 30px !important;
  }
}

/* Tablette */
@media (max-width: 1199px) {
  .calendar-release-cover {
    width: 200px;
    height: 200px;
    flex: 0 0 200px;
  }

  .calendar-release h2 {
    font-size: 1.4rem;
  }
}

/* Navbar / tablette */
@media (max-width: 991px) {
  .navbar .nav-link {
    font-size: 2rem !important;
    line-height: 1.1;
  }

  .artist-name {
    font-size: 42px !important;
  }

  .artist-photo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .artist-photo {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .release-item {
    grid-template-columns: 160px 1fr;
  }

  .release-cover {
    width: 160px;
    height: 160px;
  }

  #calendar {
    padding: 0 12px;
  }

  .calendar-release {
    gap: 10px !important;
  }

  .calendar-release-cover {
    width: 120px !important;
    height: 120px !important;
    flex: 0 0 120px !important;
  }

  .calendar-release-text {
    height: 120px;
  }

  .calendar-release h2 {
    font-size: 1rem;
  }

  .suggestions-grid {
    padding: 0 12px;
  }

  .suggestions-grid > [class*="col-"] {
    margin-bottom: 18px;
  }

  .mobile-suggest-play {
    display: block;
    width: auto;
    padding: 0;
    margin-top: 6px;
    background: none;
    border: none;
    color: black;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
  }

  .suggest-card:hover .suggest-cover {
    animation: none;
    border-radius: 0;
  }

  .suggest-card.is-spinning .suggest-cover {
    border-radius: 50%;
    animation: spinVinyl 2s linear infinite;
  }

  .weekly-carousel,
  .weekly-slide,
  .weekly-slide-content {
    min-height: 560px;
  }

  .weekly-slide-content {
    gap: 32px;
    padding: 40px 24px;
  }

  .weekly-cover {
    width: 260px;
    height: 260px;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-entry {
    grid-template-columns: 60px 1fr;
  }

  .calendar-entry-cover {
    width: 60px;
    height: 60px;
  }

  .calendar-entry.is-current-year {
    grid-template-columns: 90px 1fr;
  }

  .calendar-entry.is-current-year .calendar-entry-cover {
    width: 90px;
    height: 90px;
  }
}

/* Mobile large */
@media (max-width: 768px) {
	
.title-underline::after { margin-bottom:0px !important; }	
	
  .play-btn-mobile {
    display: inline-block;
  }

  .title-underlinefooter::after {
    bottom: 350px;
  }

  .title-underlinetitle::after {
    bottom: 5px;
  }

  .title-underline::after {
    bottom: 53px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .mobile-suggestions-title {
    display: block;
  }

  .artist-name {
    font-size: 36px !important;
  }

  .release-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .release-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .release-meta {
    display: block;
  }

  .release-date,
  .release-duration {
    text-align: left;
  }

  .calendar-release {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px !important;
  }

  .calendar-release-cover {
    width: 110px !important;
    height: 110px !important;
    flex: 0 0 110px !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .calendar-release-text {
    flex: 1;
    height: auto;
    padding: 0 !important;
  }

  .calendar-release-date {
    text-align: left;
  }

  .similar-card div {
    font-size: 16px;
  }

  .releases-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .releases-toolbar input,
  .releases-toolbar select,
  .genre-dropdown,
  .genre-dropdown-btn {
    width: 100%;
  }

  .genre-dropdown-menu {
    top: 32px;
  }

  .release-line-cover-wrap {
    width: 100px;
    flex: 0 0 100px;
  }

  .release-line-cover {
    width: 100px;
    height: 100px;
  }

  .weekly-kicker {
    font-size: 0.7rem;
  }

  .weekly-album {
    font-size: 3rem;
    line-height: 3rem;
  }

  .weekly-artist,
  .weekly-date,
  .weekly-desc {
    font-size: 2rem;
  }

  .weekly-carousel {
    height: auto;
    min-height: 88vh;
  }

  .weekly-slide,
  .weekly-slide-content {
    min-height: 88vh;
    height: auto;
  }

  .weekly-slide-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 20px;
    overflow: visible;
  }

  .weekly-left {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .weekly-cover {
    width: min(92vw, 420px) !important;
    height: min(92vw, 420px) !important;
    max-width: none;
    max-height: none;
    flex-shrink: 0;
  }

  .weekly-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .weekly-right {
    max-width: 100%;
    width: 100%;
  }

  .weekly-carousel-empty {
    min-height: 88vh;
    padding: 32px 20px;
  }

  .weekly-carousel-btn.prev {
    left: 12px;
  }

  .weekly-carousel-btn.next {
    right: 12px;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .calendar-entry {
    grid-template-columns: 105px 1fr;
  }

  .calendar-entry-cover {
    width: 105px;
    height: 105px;
  }

  .calendar-entry.is-current-year {
    grid-template-columns: 185px 1fr;
  }

  .calendar-entry.is-current-year .calendar-entry-cover {
    width: 185px;
    height: 185px;
  }
}

.artiste-name::after,
.artist-name::after {
  display: none !important;
  content: none !important;
}

.weekly-cover-link.is-spinning .weekly-cover {
  border-radius: 50%;
  animation: spinVinyl 2.2s linear infinite;
}
