/* ==========================================================
   PARTICIPA
   ========================================================== */
.participa-box {
    border-radius: 15px;
    background: #F5F5F0;
    box-shadow: 0 4px 6.2px -3px rgba(0, 0, 0, 0.25);
    padding: 2rem 2rem 1rem 2rem;
    margin-bottom: 2rem;
}

.participa-section {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.participa-section::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: .95rem;
  width: 2px;
  background: #ff6b00;
}

.field--name-field-info-secciones .field__item:first-child .participa-section::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: .4rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff6b00;
}

.participa-section__title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #212529;
}

/* ==========================================================
   TARJETA
   ========================================================== */

.participacion-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .12);
}
.participacion-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #ececec;
}

.participacion-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: #ff6b00;
}

.participacion-card__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.participacion-card__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  color:#000;
}

.participacion-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}

/* ==========================================================
   LISTAS
   ========================================================== */

.participacion-card__links,
.participacion-card__files,
.participacion-list__item,
.participacion-file__item{
  margin: 0;
  padding: 0;
  list-style: none;
}

.participacion-list__item .field__item,
.participacion-file__item .field__item{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 0.5rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.participacion-file__item .file-created-date{
	display:none;
}
.participacion-file__item span.file {
	background:none;
	padding:0;
}

/*.participacion-list__item:last-child,
.participacion-file__item:last-child{
    border-bottom:none;
}*/

.participacion-list__item .field__item::before,
.participacion-file__item .field__item::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5be46b;
  display: inline-block;
}

.participacion-list__item a,
.participacion-file__item a {
  color: #212529;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.participacion-list__item a:hover,
.participacion-file__item a:hover {
  color: #ff6b00;
  text-decoration: underline;
}

/* ==========================================================
   ARCHIVOS DRUPAL
   ========================================================== */

.participacion-file__item .file {
  margin: 0;
}

.participacion-file__item .file a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}


/*BANNER INFO*/
.banner-info {
  background-color: #f15a24;
  position: relative;
  overflow: hidden;
}

.banner-info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(to bottom, #fdd835, #f15a24);
}
.banner-info p {
  color: #fff;
  margin-bottom:0;
  font-size: large;
  font-weight: 400;
}

.banner-info .icon-wrapper {
		width: 85px;
    height: 85px;
    background-color: #fff3e0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}
 .banner-info .icon-wrapper img {
 max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* mantiene proporción sin cortar */
}

.banner-aviso {
  background-color: #fff3e0; /* tono beige */
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 2rem 5rem;
}
.banner-aviso p {
	margin-bottom:0;
}
.banner-aviso::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background-color: #fdd835; /* línea amarilla */
  border-radius: 6px 0 0 6px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991.98px) {

  .participa-section {
    padding-left: 2rem;
  }

  .participacion-card__body {
    padding: 1.5rem;
  }

}

@media (max-width: 767.98px) {
	.participa-section::before {
		left: 0;
	}
	.participa-section::after {
		left: -0.5rem;
	}

  .participa-section {
    padding-left: 1.5rem;
    margin-bottom: 3rem;
  }

  .participa-section__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .participacion-card__header {
    gap: 1rem;
    padding: 1rem;
  }

  .participacion-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .participacion-card__icon img {
    width: 36px;
    height: 36px;
  }

  .participacion-card__title {
    font-size: 1.3rem;
  }

  .participacion-card__body {
    padding: 1.25rem;
  }

  .participacion-list__item,
  .participacion-file__item {
    align-items: flex-start;
    gap: .75rem;
  }
  
  .banner-aviso {
  background-color: #fff3e0; /* tono beige */
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

}

@media (max-width: 576px) {
  .banne-info {
    flex-direction: column;
    text-align: center;
  }
  .banne-info .icon-wrapper {
    margin-bottom: 10px;
  }
    .banner-aviso {
    text-align: center;
    padding: 1.2rem;
  }
}