 .forum-presentation {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 80px auto;
  align-items: flex-start;
}

/* LEFT */
.fp-left {
  width: 52%;
}

.fp-date,
.fp-location {
  font-family: 'CSBoline-Regular', serif !important;
  color: #00364a !important;
  font-weight: 300;
  margin-bottom: 12px;
  font-size: 30px;
}

/* TEXTO DESTACADO */
.fp-intro {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin: 25px 0;
  text-align: justify;
}

/* TEXTO NORMAL */
.fp-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: justify;

}

/* RIGHT */
.fp-right {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* IMAGEN TOP */
.fp-top img {
  width: 100%;
  border-radius: 28px;
}

/* GRID */
.fp-grid {
  display: flex;
  gap: 25px;
}

/* IMAGEN VERTICAL */
.fp-vertical {
  width: 52%;
}

.fp-vertical img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

/* COL DERECHA */
.fp-small-col {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fp-small-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.fp-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  font-weight: 400;
  color: #00384f;
  line-height: 1.15;
  font-family: 'CSBoline-Regular', serif !important;
}

.fp-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.fp-calendar {
  background-image: url('https://americasagforum.org/wp-content/uploads/2026/05/info_icon-date.png');
}

.fp-location-icon {
  background-image: url('https://americasagforum.org/wp-content/uploads/2026/05/info_icon-loca.png');
}

.fp-desc {
  text-align: justify;
}

@media (max-width: 768px) {
  .forum-presentation {
    flex-direction: column;
    gap: 40px;
    margin: 50px auto;
    padding: 0 24px;
  }

  .fp-left,
  .fp-right {
    width: 100%;
  }

  .fp-meta-row {
    font-size: 30px;
    align-items: flex-start;
  }

  .fp-intro {
    text-align: left;
    font-size: 18px;
    line-height: 1.55;
  }

  .fp-desc {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
  }

  .fp-right {
    margin-top: 10px;
  }

  .fp-top img {
    height: 180px;
    object-fit: cover;
  }

  .fp-grid {
    flex-direction: column;
  }

  .fp-vertical,
  .fp-small-col {
    width: 100%;
  }

  .fp-vertical img {
    min-height: 360px;
  }

  .fp-small-col img {
    height: 220px;
    object-fit: cover;
  }
}