/* --- Página de Detalhe da Rádio --- */

.radio-detail-section {
  min-height: 90vh;
  display: flex;
  align-items: stretch;
}

.radio-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: inherit;
}

/* Metade esquerda: capa */
.radio-detail-cover {
  position: sticky;
  top: 0;
  overflow: hidden;
  background-image: url("../images/bgreal_Texture Asset 2.svg");
  background-size: 417%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--black);
}

.radio-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
  border-right: solid 1px var(--red);
}

/* Metade direita: informações */
.radio-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px) clamp(30px, 5vw, 80px);
  background-color: var(--black);
  gap: 20px;
}

.radio-detail-author {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  margin: 0;
}

.radio-detail-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.radio-detail-description {
  font-size: 16pt;
  line-height: 1.2;
  color: var(--white);
  opacity: 0.8;
  margin: 0;
  max-width: 540px;
  text-align: justify;
}

.radio-detail-by {
  font-size: 14pt;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.7;
  margin: 0;
}

.radio-detail-by a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  transition: opacity 0.2s ease;
}

.radio-detail-by a:hover {
  color: var(--red);
}

.btn-sintonizar {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  border: 1px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  align-self: flex-start;
}

.btn-sintonizar:hover {
  background-color: var(--red);
  color: var(--black);
  border: 1px solid var(--red);
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .radio-detail-cover img {
    border-right: none;
    border-bottom: 1px solid var(--red);
  }
  .radio-detail-description {
    font-size: 12pt;
  }
  .radio-detail-layout {
    grid-template-columns: 1fr;
  }

  .radio-detail-cover {
    position: relative;
    min-height: 260px;
    max-height: 420px;
  }

  .radio-detail-info {
    padding: 40px 24px 60px;
  }
}
