@charset "UTF-8";
/* =============================
   WORK PAGE STYLES
============================= */

.work-page {
  padding-bottom: 6rem;
}

/* =============================
   HERO
============================= */

.work-hero {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.work-category {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 0.75rem;
}

.work-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
}

.work-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================
   SECTIONS
============================= */

.work-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.8rem;
}

.work-section p {
  color: var(--text-muted);
}

/* =============================
   LISTS
============================= */

.work-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.work-list li {
  margin-bottom: 0.6rem;
}

/* =============================
   GALLERY
============================= */

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery figure {
  background-color: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
}

.gallery img {
  width: 70%;
}

.gallery figcaption {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================
   TAGS
============================= */

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.work-tags li {
  list-style: none;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background-color: var(--white);
  border: 1px solid var(--border-soft);
  font-size: 0.75rem;
}

/* =============================
   NAV
============================= */

.work-nav {
  margin-top: 5rem;
  text-align: center;
}
/* =============================
   EVENT HIGHLIGHTS
============================= */

.event-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* IMAGE */
.event-card img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

/* TEXT */
.event-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.event-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* =============================
   CAMPAIGN GALLERY (Match Event Highlights)
============================= */

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.gallery figure {
  background-color: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
}

/* Image — match Event Highlights */
.gallery img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* Caption */
.gallery figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* =============================
   DOCUMENTS (PDF THUMBNAILS)
============================= */

.document-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.document-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  background-color: var(--white);
  border: 1px solid var(--border-soft);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.document-card img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}

.document-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.document-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hover effect */
.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =============================
   TABLET+
============================= */

@media (min-width: 768px) {
  .event-card {
    grid-template-columns: 40% 1fr;
    gap: 2rem;
  }

  .event-card img {
    max-height: 280px;
  }
}

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

  .gallery img {
    max-height: 280px;
  }
}


@media (min-width: 768px) {
  .awards-section img,
  .awards-card img {
    max-height: 280px;
  }
}
