body {
  box-sizing: border-box;
  background-color: #e7b4a2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 32px;
  min-height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resource-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
}

/* .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.resource-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.resource-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.resource-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  fill: currentColor;
}

.resource-card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #111827;
  /* color: #473927; */
  /* color: #627045; */
  font-family: 'Marcellus', serif;
  /* font-family: 'Georgia', serif; */
  text-shadow: 0.2px 0 0 currentColor;
  margin: 0;
}

.icon-primary {
  background-color: #627045;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-link {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resource-link:hover {
  transform: translateX(5px);
}

.link-pink {
  background-color: #fdedec;
}
.link-pink:hover {
  background-color: #dbb5b1;
}

.link-orange {
  background-color: #f6ebe2;
}
.link-orange:hover {
  background-color: #e7b4a2;
}

.link-content {
  flex: 1;
}

.link-title {
  font-weight: 400;
  color: #111827;
  margin: 0 0 5px 0;
  font-family: 'Lora', serif;
  text-shadow: 0.5px 0 0 currentColor;
  font-size: 1.1rem;
  /* font-family: 'Marcellus', serif;
  text-shadow: 0.5px 0 0 currentColor; */
}

.link-description {
  font-size: 1rem;
  color: #50555f;
  font-family: 'Lora', serif;
  margin: 0;
  line-height: 1.55;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .resource-card {
    padding: 24px;
  }

  .resource-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .resource-card-icon {
    margin-right: 0;
  }
}
