/* Estilos para el slider respetando la estructura HTML original */
.glide.nuestras-novedades-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.glide__track {
  overflow: hidden;
  padding: 10px 0;
}

.glide__slides {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.glide__slide {
  padding: 0 10px;
  box-sizing: border-box;
}

/* Estilos para las imágenes */
.noticia-card .views-field-field-image {
  position: relative;
  overflow: hidden;
}

.noticia-card .views-field-field-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius:6px;
}

.noticia-card:hover .views-field-field-image img {
  transform: scale(1.05);
}

/* Estilos para el tipo de contenido */
.noticia-card .type {
  padding: 10px 5px 0;
  font-size: 0.8rem;
  color: #666;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

/* Estilos para el título */
.noticia-card .title {
  padding: 0 5px 0;
  margin-bottom: 5px;
}

.noticia-card .title a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.3;
  display: block;
  transition: color 0.2s ease;
}
.socio .field--name-field-descripcion{
  font-size: 1.2rem;
}

.noticia-card .title a:hover {
  color: var(--intered-primary);
}

/* Estilos para el botón "LEER MÁS" */
.noticia-card .enlace {
  margin-top: auto;
  padding: 10px 5px 15px;
}

.noticia-card .enlace a {
  display: inline-block;
  color:var(--intered-primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;  
  padding: 10px 30px;  
  border: 1px solid #67A748;
  color: var(--intered-primary);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.noticia-card .enlace a:hover {
  background-color: var(--intered-primary-bg);;
  color: white;
}
.field--name-field-video .enlace a {
  background-color: var(--intered-primary);
  color: #fff;
  border: 1px solid #fff;
}
.field--name-field-video .enlace a:hover{
  background-color: #fff;
  color: var(--intered-primary);
  border: 1px solid #fff;
}
/* Estilos para las flechas de navegación */
.glide__arrows {
    position: absolute;
    top: -30px;
    right: 30px;
    display: flex;
    gap: 10px;
    width: 80px;
    height: 40px;
    
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--intered-primary);

}
.glide__arrows button{
  border: 1px solid var(--intered-primary);
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}
.glide__arrow {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s ease;
}

.glide__arrow:hover {
  background: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.glide__arrow--left {
  left: -15px;
}

.glide__arrow--right {
  right: -15px;
}

.glide__arrow svg {
  fill:  var(--intered-primary);
}

/* Estilos para los bullets de navegación */
.glide__bullets {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.glide__bullets button {
  background-color: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  transition: all 0.3s ease;
}

.glide__bullets button.glide__bullet--active {
  background-color: var(--intered-primary);
  transform: scale(1.2);
}
.field--name-field-novedades h2{
  color: var(--intered-primary);
}
.field--name-field-novedades .descripnoticias p{
  font-size: 1.1rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .glide__arrow {
    width: 35px;
    height: 35px;
  }
  
  .glide__arrow--left {
    left: -5px;
  }
  
  .glide__arrow--right {
    right: -5px;
  }
}

@media (max-width: 576px) {
  .noticia-card .title a {
    font-size: 0.9rem;
  }
}