:root {
  --teal: #0198a7;
  --teal-dark: #017a87;
  --mustard: #9a8f1a;
  --ink: #1a1a1a;
  --muted: #666666;
  --line: #e3e3e3;
  --bg-soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 13px 16px rgba(0, 0, 0, 0.03);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
  --font-serif: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --container: min(1280px, calc(100% - 48px));
  --header-h: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  height: 50px;
  background: var(--teal) url("../img/head-logo.webp") right center / auto 100% no-repeat;
  overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.brand img {
  width: 117px;
  height: 42px;
  object-fit: contain;
}

.brand-fallback {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-fallback small {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: #444;
  max-width: 220px;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.nav a {
  padding: 6px 10px;
}

.nav a.is-active {
  color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #222;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social .nsosyal img {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #222;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
  min-height: min(68vh, 620px);
  contain: layout;
}

.hero-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  height: min(68vh, 620px);
  background: #222 center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-slide p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  max-width: 900px;
  padding: 0 72px 72px;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.7s ease both;
}

.hero-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
  z-index: 2;
}

.hero-nav button {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-nav button:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 2;
}

.hero-dots button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.hero-dots button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button.is-active::after {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.2);
}

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

/* Section title */
.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
}

.section-title.center {
  display: block;
  text-align: center;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* About */
.about {
  padding: 110px 0 70px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-copy .section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  text-align: center;
  display: block;
}

.about-copy .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
}

.about-copy {
  text-align: left;
}

.about-copy p {
  text-align: justify;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 22px 0 28px;
}

.read-more {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.read-more:hover {
  color: var(--teal);
}

.about-media {
  position: relative;
  min-height: 420px;
  width: 100%;
  padding-left: 8%;
}

.about-media .main-photo {
  display: block;
  width: 78%;
  margin-left: auto;
  height: 420px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  background: #eee;
}

.about-media .inset-photo {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 340px;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background: #eee;
  z-index: 1;
}

/* Events */
.events {
  padding: 70px 0 90px;
  background: #fff;
}

.events-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-inline: min(42px, 4vw);
}

.events-head .section-title {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 600;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  padding-inline: min(42px, 4vw);
}

.event-card {
  display: block;
  color: inherit;
}

.event-card figure {
  margin: 0 0 14px;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd center / cover no-repeat;
}

.event-card.featured figure {
  aspect-ratio: 16 / 9;
}

.event-card.side figure {
  aspect-ratio: 16 / 10;
}

.event-card h3,
.event-card h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.event-card.featured h3 {
  font-size: 1.35rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.events-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.event-card:hover h3,
.event-card:hover h4 {
  color: var(--teal);
}

/* Social feeds */
.feeds {
  padding: 80px 0;
  background: var(--bg-soft);
}

.feeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feed-block .feed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.feed-block .section-title {
  font-size: 1.7rem;
  margin: 0;
}

.feed-block .feed-icon {
  opacity: 0.25;
  color: #222;
}

.feed-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #eee;
}

.fb-card {
  display: flex;
  flex-direction: column;
}

.fb-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
}

.fb-card-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-card-head strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.fb-card-head span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.fb-follow {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b4fbf;
  white-space: nowrap;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.fb-post {
  display: block;
  color: inherit;
}

.fb-post img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eee;
}

.fb-post p {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #333;
}

.fb-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #eee;
  margin-top: auto;
}

.fb-actions a {
  text-align: center;
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  transition: color 0.2s ease, background 0.2s ease;
}

.fb-actions a:hover {
  color: #1877f2;
  background: #f7f9fc;
}

.tweet-list {
  list-style: none;
  margin: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tweet-list li {
  padding: 14px 16px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fafafa;
}

.tweet-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.tweet-list p {
  margin: 0;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
}

.tweet-list a {
  color: #015c66;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Press banner */
.press-banner {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px min(6vw, 80px);
  background:
    linear-gradient(90deg, var(--teal) 0%, var(--teal) 58%, var(--mustard) 58%, var(--mustard) 100%);
  color: #fff;
  overflow: hidden;
}

.press-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/all-news-bg.webp") center / cover no-repeat;
  opacity: 0.95;
}

.press-banner h2,
.press-banner .btn-outline {
  position: relative;
  z-index: 1;
}

.press-banner h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.press-banner .btn-outline {
  background: #fff;
  color: #111;
  border-color: #fff;
  white-space: nowrap;
}

.press-banner .btn-outline:hover {
  background: #f3f3f3;
  color: var(--teal-dark);
}

/* Duties */
.duties {
  padding: 70px 0 100px;
  background: #f9f9f9;
}

.duties .section-title {
  font-size: 1.7rem;
  margin-bottom: 28px;
}

.duties-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 50px 40px;
}

.duties-grid {
  columns: 4;
  column-gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.duties-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 16px;
  color: #222;
  break-inside: avoid;
}

.duties-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--teal);
}

/* Footer */
.site-footer .footer-mail {
  background: #015c66;
  color: #fff;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
}

.site-footer .footer-mail a {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mail-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s ease;
}

.mail-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-main {
  position: relative;
  background: #111 url("../img/istanbul.webp") center 44% / cover no-repeat;
  color: #fff;
  padding: 70px 0 36px;
}

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.footer-main-inner,
.footer-copy {
  position: relative;
  z-index: 1;
}

.footer-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-brand img {
  width: 112px;
  height: 40px;
  object-fit: contain;
}

.footer-brand-fallback {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-brand-fallback small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #9fe3ea;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Mobile drawer */
.mobile-panel {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-copy {
    order: 1;
    text-align: left;
  }

  .about-copy .section-title::after {
    left: 0;
    transform: none;
  }

  .about-media {
    order: 2;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .duties-grid {
    columns: 2;
  }
}

@media (max-width: 992px) {
  .nav,
  .header-inner > .social {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
  }

  .mobile-panel.is-open {
    max-height: 480px;
    border-top-color: var(--line);
  }

  .mobile-panel .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 8px;
  }

  .mobile-panel .nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-panel .social {
    display: flex;
    padding: 16px 0 20px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .feeds-grid {
    grid-template-columns: 1fr;
  }

  .press-banner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 240px;
    background: var(--teal);
  }

  .press-banner::before {
    background-image: url("../img/all-news-mobile-img.webp");
    background-position: center bottom;
    background-size: contain;
    opacity: 1;
  }

  .footer-main-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 78px;
    --container: min(100% - 32px, 1280px);
  }

  .topbar {
    height: 36px;
  }

  .brand img {
    width: 95px;
    height: 34px;
  }

  .hero {
    min-height: min(56vh, 420px);
  }

  .hero-slide {
    height: min(56vh, 420px);
  }

  .hero-slide p {
    padding: 0 48px 56px;
    font-size: 1.1rem;
  }

  .hero-nav button {
    width: 40px;
    font-size: 1.8rem;
  }

  .about {
    padding: 70px 0 40px;
  }

  .about-media {
    min-height: 260px;
    padding-left: 4%;
  }

  .about-media .main-photo {
    height: 260px;
    width: 80%;
  }

  .about-media .inset-photo {
    width: 50%;
    max-width: 210px;
    border-width: 4px;
  }

  .events {
    padding: 50px 0 70px;
  }

  .events-head {
    padding-inline: 0;
    margin-bottom: 28px;
  }

  .events-grid {
    padding-inline: 0;
    gap: 22px;
  }

  .duties-card {
    padding: 28px 20px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .duties-grid {
    columns: 1;
  }

  .site-footer .footer-mail {
    flex-direction: column;
    text-align: center;
    padding: 22px 16px;
    min-height: auto;
    gap: 10px;
  }

  .footer-nav {
    gap: 12px 18px;
  }
}

@media (max-width: 480px) {
  .hero-slide p {
    padding-inline: 36px;
  }

  .btn-outline {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* Contact page */
.page-contact {
  background: #fff;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 48px 56px;
  align-items: start;
  padding-top: 28px;
}

.contact-photo {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 550 / 778;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-crumb {
  padding-top: 0;
}

.contact-head {
  padding-top: 8px;
  text-align: left;
}

.contact-head .page-title {
  margin-left: 0;
}

.contact-head .page-title::after {
  left: 0;
  transform: none;
}

.contact-subtitle {
  margin: 8px 0 28px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 64px;
  margin: 0 0 48px;
  font-style: normal;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 140px;
}

.contact-icon {
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}

.contact-label {
  margin: 0;
  font-weight: 700;
  color: #111;
}

.contact-item p {
  margin: 0;
  color: #111;
  line-height: 1.5;
}

.contact-item a {
  color: #111;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--teal);
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-mail-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #169fad;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.contact-social-icons a {
  width: 36px;
  height: 36px;
}

.contact-handle {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4a4a4a;
  font-weight: 600;
}

.contact-handle p {
  margin: 0;
}

.contact-handle-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--teal);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-photo {
    max-width: 360px;
    margin-inline: auto;
  }

  .contact-info {
    gap: 24px 36px;
  }
}

@media (max-width: 560px) {
  .contact-info {
    flex-direction: column;
    gap: 22px;
  }
}

/* Gallery page */
.page-gallery {
  background: #fff;
  padding-bottom: 70px;
}

.gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.15fr 2.2fr;
  gap: 14px;
  align-items: stretch;
}

.gallery-row.is-reverse {
  grid-template-columns: 2.2fr 1.15fr;
}

.gallery-row.is-reverse .gallery-feature {
  order: 2;
}

.gallery-row.is-reverse .gallery-mosaic {
  order: 1;
}

.gallery-feature,
.gallery-thumb {
  display: block;
  overflow: hidden;
  background: #eee;
  border-radius: 2px;
}

.gallery-feature {
  height: 100%;
  min-height: 420px;
}

.gallery-feature img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-feature:hover img,
.gallery-thumb:hover img {
  transform: scale(1.03);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-thumb {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .gallery-row,
  .gallery-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .gallery-row.is-reverse .gallery-feature,
  .gallery-row.is-reverse .gallery-mosaic {
    order: initial;
  }

  .gallery-feature {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Events listing page */
.page-events {
  background: #fff;
  padding-bottom: 70px;
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

.event-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.event-list-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}

.event-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-list-card h3 {
  margin: 0;
  padding: 18px 16px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  min-height: 88px;
}

@media (max-width: 1100px) {
  .events-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .events-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }

  .event-list-card h3 {
    min-height: 0;
    font-size: 0.92rem;
    padding: 14px 12px 16px;
  }
}

@media (max-width: 520px) {
  .events-list-grid {
    grid-template-columns: 1fr;
  }
}

/* Press page */
.page-press {
  background: #f7f7f7;
  padding-bottom: 70px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.press-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee;
}

.press-card-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 120px;
}

.press-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.press-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.press-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #333;
  font-weight: 600;
}

.page-btn.is-active,
.page-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.press-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.84);
  display: grid;
  place-items: center;
  padding: 24px;
}

.press-lightbox[hidden] {
  display: none !important;
}

.press-lightbox img {
  max-width: min(960px, 100%);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}

.press-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }
}

@media (max-width: 520px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
}

/* About page */
.page-about {
  padding-bottom: 0;
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 8px;
  font-size: 0.88rem;
  color: #595959;
}

.breadcrumb a {
  color: #595959;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--teal-dark, #017a87);
}

.page-head {
  text-align: center;
  padding: 18px 0 28px;
}

.page-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 auto;
}

.page-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-hero-photo {
  margin: 0 0 50px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.about-intro {
  padding-bottom: 50px;
}

.about-intro .section-title,
.about-detail .section-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 28px;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.8;
  text-align: justify;
}

.about-detail {
  padding: 20px 0 70px;
  border-top: 1px solid #f0f0f0;
}

.about-split {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 40px 48px;
  align-items: start;
}

.about-summary p {
  margin: 0;
  font-weight: 700;
  color: #222;
  font-size: 1rem;
  line-height: 1.7;
}

.about-body p {
  margin: 0 0 18px;
  color: #444;
  font-size: 0.97rem;
  line-height: 1.75;
  text-align: justify;
}

.about-roles {
  margin: 28px 0 0;
  padding: 0 0 0 18px;
  color: #333;
}

.about-roles li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.about-roles li::marker {
  color: var(--teal);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.about-gallery img {
  width: 100%;
  height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee;
}

@media (max-width: 992px) {
  .about-two-col,
  .about-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .about-gallery img {
    height: 150px;
  }

  .about-hero-photo img {
    max-height: 280px;
  }
}
