/* ===== Sección de noticia ===== */
.noticia--tenista {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Contenedor principal (noticia + autor) */
.noticia-principal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Contenido de la noticia */
.noticia-contenido {
  flex: 1 1 65%;
  padding: 0 0.9rem;
}

.noticia-imagen {
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.noticia-titulo {
  font-size: 3.6rem;
  color: var(--azulOscuro);
  margin-bottom: 1rem;
}

.noticia-meta {
  display: flex;
  gap: 2rem;
  color: var(--grisOscuro);
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.noticia-texto {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--grisOscuro);
}

/* Autor */
.noticia-autor {
  flex: 1 1 25%;
  text-align: center;
}

.autor-imagen {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.autor-nombre {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--azulOscuro);
}

/* Tenistas relacionados */
.noticia-tenistas {
  border-top: 2px solid var(--grisClaro);
  padding-top: 2rem;
}

.tenistas-titulo {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--azulOscuro);
}

.tenista-relacionado {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tenista-imagen {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.tenista-nombre {
  font-size: 1.7rem;
  color: var(--grisOscuro);
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .noticia-principal {
    flex-direction: column;
    align-items: center;
  }

  .noticia-contenido {
    flex: 1 1 100%;
  }

  .noticia-autor {
    flex: 1 1 100%;
    text-align: center;
  }

  .autor-imagen {
    width: 100px;
    height: 100px;
  }
}
.btn-creacion {
  background-color: var(--azul);
  color: var(--blanco);
  border: none;
}
