/**
 * Section - IICV Downloads
 * Grid de reports IICV (CPT) para download. Pixel-perfect do Figma (node 3009:20888).
 *
 * Tokens: Blue light/500 #0BA5EC · Gray/100 #F2F4F7 · Gray/500 #667085 · Heading #2B203B · Black #000
 *
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Section + container
   ============================================ */
.section-iicv-downloads {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #ffffff;
}

.section-iicv-downloads .site-container {
  width: 100%;
  max-width: 1178px; /* 565 + 48 (gap) + 565 */
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ============================================
   Section title — "Baixe os últimos índices."
   ============================================ */
.iicv-downloads__title {
  margin: 0 0 80px 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: #000000;
}

/* ============================================
   Grid
   ============================================ */
.iicv-downloads__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

/* ============================================
   Card
   ============================================ */
.iicv-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #f2f4f7;
}

.iicv-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 565 / 360;
  overflow: hidden;
}

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

.iicv-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 42px;
  background: #f2f4f7;
}

.iicv-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iicv-card__date {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.16px;
  color: #2b203b;
}

.iicv-card__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.iicv-card__heading {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.42px;
  color: #2b203b;
}

.iicv-card__description {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #667085;
  /* Resumo de 2 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Download button — "Download IICV"
   ============================================ */
.iicv-card__actions {
  margin-top: auto;
}

.iicv-downloads__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  padding: 18px 30px 20px 42px;
  border-radius: 40px;
  background: #0ba5ec;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.iicv-downloads__btn:hover,
.iicv-downloads__btn:focus-visible {
  background: #0a95d4;
  color: #ffffff;
}

.iicv-downloads__btn-label {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.28px;
  color: #ffffff;
  white-space: nowrap;
  padding-top: 4px; /* centraliza verticalmente o texto em relação ao ícone */
}

.iicv-downloads__btn-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* ============================================
   Responsivo
   ============================================ */
@media (max-width: 1024px) {
  .section-iicv-downloads {
    padding: 80px 0;
  }

  .section-iicv-downloads .site-container {
    padding: 0 24px;
  }

  .iicv-downloads__grid {
    gap: 32px;
  }

  .iicv-card__content {
    padding: 32px;
  }

  .iicv-card__heading {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
}

@media (max-width: 680px) {
  .section-iicv-downloads {
    padding: 56px 0;
  }

  .iicv-downloads__title {
    margin-bottom: 40px;
    font-size: 28px;
    letter-spacing: -0.28px;
  }

  .iicv-downloads__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iicv-card__content {
    gap: 24px;
    padding: 24px;
  }

  .iicv-card__heading {
    font-size: clamp(28px, 6vw, 36px);
  }

  .iicv-downloads__btn {
    width: 100%;
  }
}
