/* =========================================================
   AGRUPAMENTO DE ESCOLAS
   ========================================================= */

.agrupamento-escolas {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.agrupamento-escolas__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.agrupamento-escolas__heading {
  flex: 1 1 auto;
}

.agrupamento-escolas .block-title {
  margin: 0;
  color: #101d2e;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.agrupamento-escolas__description {
  max-width: 420px;
}

.agrupamento-escolas__description p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0!important;
}


/* =========================================================
   CARDS
   ========================================================= */

.agrupamento-escolas__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}


/* =========================================================
   CARD
   ========================================================= */

.escola-card {
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e3e8ef;
}


/* =========================================================
   IMAGE
   ========================================================= */

.escola-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #eef2f6;
}

.escola-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.escola-card:hover .escola-card__image img {
  transform: scale(1.04);
}


/* =========================================================
   CONTENT
   ========================================================= */

.escola-card__content {
  min-height: 180px;
  padding: 20px;
  background: #ffffff;
}

.escola-card__content p{
  margin-bottom: 0 !important;
}


/* =========================================================
   TITLE
   ========================================================= */

.escola-card__title {
  margin: 0 0 12px;
  padding: 0;
  color: #101d2e;
  font-size: 1rem !important;
  font-weight: 800;
  line-height: 1.25;
}


/* =========================================================
   TEXT
   ========================================================= */

.escola-card__text {
  color: #64748b;
  font-size: 11px;
  line-height: 1.45;
}

.escola-card__text p {
  margin: 3px 0;
  padding: 0;
  margin-bottom: 0!important;
}

.escola-card__text p:first-child {
  margin-top: 0;
}

.escola-card__text p:last-child {
  margin-bottom: 0;
}

.escola-card__text strong {
  color: #101d2e;
  font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .agrupamento-escolas__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .agrupamento-escolas {
    padding: 40px 0;
  }

  .agrupamento-escolas__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .agrupamento-escolas__description {
    max-width: none;
  }

  .agrupamento-escolas__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .escola-card__image {
    height: 220px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .agrupamento-escolas {
    padding: 30px 0;
  }

  .agrupamento-escolas .block-title {
    font-size: 21px;
  }

  .escola-card__image {
    height: 200px;
  }

  .escola-card__content {
    padding: 18px;
  }

}

