/* =====================================================
   Foros de participación
   ===================================================== */

.foros-page {
  padding-bottom: 3rem;
}

.foros-header {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #4b4b4b;
}

.foros-header a {
  color: #0943b5;
  text-decoration: underline;
}

/* --- Each forum card --- */
.foro-item {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid #8ae2f0;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
  align-items: stretch;
  overflow: hidden;
}

.foro-image {
  flex-shrink: 0;
  width: 38%;
  border-right: 1px solid #8ae2f0;
}

.foro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.foro-info {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foro-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.foro-title a {
  color: #36c;
  text-decoration: underline;
}

.foro-title a:hover {
  color: #0943b5;
}

.foro-estado {
  font-size: 0.95rem;
  color: #4b4b4b;
  margin-bottom: 0.25rem;
}

.foro-estado-icon {
  margin-right: 0.25rem;
}

.foro-date {
  font-size: 0.95rem;
  color: #4b4b4b;
}

/* --- Responsive --- */
@media (max-width: 576px) {
  .foro-item {
    flex-direction: column;
  }

  .foro-image {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #8ae2f0;
  }

  .foro-image img {
    height: 200px;
  }
}
