.resources-hero {
  padding: 140px 60px 60px;
  text-align: left;
  background-color: #ffffff;
}

.resources-hero-content {
  max-width: 800px;
  margin-right: auto;
  text-align: left;
  margin-left: 0;
}

.resources-badge {
  display: inline-block;
  font-size: 14px;
  background-color: #f0eeee;
  color: #000000;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 0.25px solid #f0eeee;
}

.resources-badge i {
  color: #6b7280; /* Slight gray */
}

.resources-title {
  font-family: 'Manrope', 'Inter';
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
  max-width: 1000px;
  line-height: 1.2;
}

.resources-subtext {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  line-height: 1.4;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 10px 20px 160px;
  max-width: 1250px;
  margin: 0 auto;
}

.resource-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
}

.card-description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-button {
  align-self: flex-start;
  background-color: #111827;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.card-button:hover {
  background-color: #000;
}
