/* ========================================
   CARDS
======================================== */

/* Data Cards */

.data_cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  background-color: #FBFBEE;
  margin: 0 auto;
  flex-wrap: wrap;
}

.data_card {
  background-color: rgb(68, 67, 75);
  width: 300px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.data_card h3 {
  margin: 0;
}

.data_card h3 a {
  display: block;
  padding: 12px 16px;
  background-color: rgb(162, 167, 79);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.data_card h3 a:hover {
  background-color: #8F9440;
}

.data_card_body {
  padding: 20px 16px;
  color: white;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .data_cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .data_card {
    width: 100%;
    max-width: 420px;
  }
}

/* ========================================
   TYPOGRAPHY
======================================== */

/* Blockquote */

.blockquote {
  position: relative;
  background-color: inherit;
  padding: 20px 24px 20px 60px;
  margin: 30px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background-color: #A2A74F;
}

.blockquote:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #A2A74F;
}

.blockquote .quote-text {
  position: relative;
  font-style: italic;
  font-size: 1.15em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.blockquote .quote-text::before {
  content: "“";
  position: absolute;
  left: -45px;
  top: -35px;
  font-size: 60px;
  color: #A2A74F;
}

.blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.95em;
  color: #777;
  letter-spacing: 0.03em;
}