@import url('https://fonts.googleapis.com/css2?family=Kurale&family=Beau+Rivage&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@1&display=swap');

.main-section {
  min-height: 100vh;
  background: #1d1e22;
  animation: fadeIn 2s ease-in forwards;
}

.section {
  padding: 0 0;
}

.odd-section {
  background: linear-gradient(to bottom, rgba(29, 30, 34, 1) 0%, rgba(209, 185, 180, 0.05) 5%, rgba(209, 185, 180, 0.15) 10%, rgba(209, 185, 180, 0.3) 15%, rgba(209, 185, 180, 0.5) 30%, rgba(209, 185, 180, 0.8) 50%, rgba(209, 185, 180, 0.5) 70%, rgba(209, 185, 180, 0.3) 85%, rgba(209, 185, 180, 0.15) 90%, rgba(209, 185, 180, 0.05) 95%, rgba(29, 30, 34, 1) 100%);
}

.blog-hero {
  padding-top: 12.5rem;
  padding-bottom: 4rem;
}

.gold-gradient-text-h2 {
  color: transparent;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), #feda6a, #feda6a);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  -webkit-text-fill-color: transparent;
}

.text {
  color: white;
  font-family: 'Kurale', serif;
  font-size: 18px;
  line-height: 1.8;
}

.blog-lead {
  max-width: 56rem;
  margin-right: auto;
  margin-left: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 0 6rem;
}

.blog-category {
  padding-bottom: 3.5rem;
}

.blog-category + .blog-category {
  padding-top: 1rem;
}

.blog-category-heading {
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: bold;
}

.blog-category .blog-grid {
  padding: 0;
}

.blog-card-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: #feda6a;
  font-family: 'Kurale', serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(254, 218, 106, 0.28);
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  color: white;
  border-color: rgba(254, 218, 106, 0.8);
  text-decoration: none;
  transform: translateY(-0.25rem);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card h2 {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: bold;
  line-height: 1.2;
}

.blog-card p {
  margin-top: 0.75rem;
  color: #f7f2e6;
  font-family: 'Kurale', serif;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-article {
  max-width: 58rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.blog-article-image {
  display: block;
  width: min(24rem, 82vw);
  aspect-ratio: 1 / 1;
  margin: 3rem auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

.blog-article-kicker {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  color: #feda6a;
  font-family: 'Kurale', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.blog-article h2 {
  margin-top: 2.5rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: bold;
}

.blog-article p,
.blog-article li {
  color: white;
  font-family: 'Kurale', serif;
  font-size: 1.18rem;
  line-height: 1.85;
}

.blog-article ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.blog-cta {
  margin-top: 3rem;
  padding: 2rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(254, 218, 106, 0.3);
  border-radius: 8px;
  text-align: center;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
  color: black;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), #feda6a, #feda6a);
  border: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  line-height: 1.35;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gold-button:hover {
  color: black;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), #feda6a, #feda6a);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  text-decoration: none !important;
  transform: translateY(-0.1rem);
}

@media (min-width: 500px) {
  .gold-gradient-text-h2 {
    font-size: 2.5rem;
  }

  .text {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .blog-cta {
    padding: 1.25rem;
  }

  .blog-card h2 {
    font-size: 1.35rem;
  }

  .blog-article p,
  .blog-article li {
    font-size: 1.05rem;
  }
}
