/* ===============================
   HEADER MIS MENSAJES
   =============================== */

.sa-message-header {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 40px;
}

.sa-message-header__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.sa-messages-header__subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: #6b7280;
}


/* ===============================
   ARCHIVE COMUNICACIONES – GRID
   =============================== */

.sa-comunicados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
}

/* Tablet */
@media (max-width: 1024px) {
    .sa-comunicados {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móvil */
@media (max-width: 640px) {
    .sa-comunicados {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   TARJETA COMUNICADO – BLOG STYLE
   =============================== */

.sa-comunicado-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sa-comunicado-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Imagen destacada */
.sa-comunicado-card__image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Cuerpo */
.sa-comunicado-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;   
}

/* Título */
.sa-comunicado-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #222;
}

/* Extracto (4 líneas) */
.sa-comunicado-card__content {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin-bottom: 16px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   FOOTER TARJETA (FECHA + BOTÓN)
   =============================== */

.sa-comunicado-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

/* Fecha */
.sa-comunicado-card__date {
    font-size: 13px;
    color: #999;
}

/* Botón Ver más */
.sa-comunicado-card__btn {
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    background-color: #E4B279;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sa-comunicado-card__btn:hover {
    background-color: #cc7f1f;
    transform: translateY(-1px);
}

/* ===============================
   ESTADO VACÍO
   =============================== */

.sa-no-comunicados {
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    color: #777;
}
