/* ===============================
   BLOG ARCHIVE – LUXURY EDITORIAL
   =============================== */

.gc-blog-archive {
  background: #F2E7D6;
  padding: 96px 24px 120px;
}

/* Header */
.gc-blog-archive__header {
  max-width: 820px;
  margin-bottom: 72px;
}

.gc-blog-archive__title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 12px;
}

.gc-blog-archive__intro {
  font-size: 15px;
  line-height: 1.6;
  max-width: 460px;
  opacity: 0.85;
}

/* Grid */
.gc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

/* Card */
.gc-blog-card {
  display: flex;
  flex-direction: column;
}

/* Image */
.gc-blog-card__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.gc-blog-card__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gc-blog-card__image:hover img {
  transform: scale(1.04);
}

/* Content */
.gc-blog-card__content {
  padding-top: 18px;
}

.gc-blog-card__title {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.gc-blog-card__title a {
  text-decoration: none;
  color: inherit;
}

.gc-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 12px;
}

/* Link */
.gc-blog-card__link {
  font-size: 13px;
  text-decoration: underline;
  color: inherit;
  opacity: 0.75;
}

.gc-blog-card__link:hover {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
   =============================== */

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

@media (max-width: 640px) {
  .gc-blog-archive {
    padding: 72px 24px;
  }

  .gc-blog-grid {
    grid-template-columns: 1fr;
  }

  .gc-blog-archive__title {
    font-size: 32px;
  }
}