:root {
  --ink: #071a24;
  --muted: #58707c;
  --line: #d9e3e7;
  --paper: #f5f8f8;
  --white: #ffffff;
  --blue: #0898e0;
  --green: #1be6a2;
  --shell: min(1180px, calc(100% - 40px));
  color-scheme: light;
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.lightbox-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 76px;
  background: rgba(5, 23, 32, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 154px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #eaf4f5;
}
.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: white;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: 0.2s;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: #082532;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-media:not(.has-image) {
  background: linear-gradient(110deg, #071a24 10%, #0b3545 72%, #0b4b55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 17, 25, 0.92) 0%,
    rgba(3, 20, 29, 0.73) 46%,
    rgba(4, 23, 31, 0.48) 100%
  );
}
.hero-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -170px;
  bottom: -175px;
  border: 70px solid rgba(27, 230, 162, 0.22);
  border-radius: 32% 45% 42% 34%;
  transform: rotate(13deg);
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(118px, 15vh, 170px);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: #087cab;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: min(760px, 56vw);
  margin: 0 0 36px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-intro {
  max-width: 760px;
  margin-bottom: 18px;
  color: #e1eff1;
  font-size: clamp(1.15rem, 2.1vw, 1.48rem);
  line-height: 1.45;
  text-wrap: pretty;
}
.hero-hosted-by {
  max-width: 720px;
  margin-bottom: 40px;
  color: #bcd1d6;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.hero-partner-logos {
  align-self: center;
  width: min(100%, 980px);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
  margin: 0 0 clamp(36px, 4.5vh, 54px);
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(7, 26, 36, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.partner-logo {
  flex: 0 1 auto;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-logo--disraptor {
  width: clamp(150px, 12vw, 210px);
  max-height: 76px;
}
.partner-logo--telkom {
  width: clamp(170px, 14vw, 240px);
  max-height: 66px;
}
.partner-logo--uk {
  width: clamp(195px, 14.2vw, 248px);
  max-height: 88px;
}
.hero-scroll {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 44px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: 112px 0;
}
.gallery-section {
  background: var(--paper);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 4vw, 54px);
  align-items: center;
  margin-bottom: 34px;
}
.section-heading > * {
  min-width: 0;
}
.section-heading .eyebrow {
  margin-bottom: 8px;
}
.section-heading h2 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.section-intro {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}
.gallery-heading-actions {
  width: min(100%, 420px);
  display: grid;
  justify-self: end;
  justify-items: start;
  gap: 15px;
}
.download-all-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #72c8af;
  border-radius: 6px;
  color: var(--ink);
  background: #b8e7d8;
  box-shadow: 0 4px 14px rgba(7, 26, 36, 0.08);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.download-all-button:hover,
.download-all-button:focus-visible {
  background: #a6decd;
  border-color: #53b898;
  box-shadow: 0 7px 18px rgba(7, 26, 36, 0.12);
  transform: translateY(-1px);
}
.download-all-button:active {
  transform: translateY(0);
}
.download-all-button[aria-disabled="true"] {
  color: #6c7d83;
  background: #dfe7e9;
  border-color: #cbd6d9;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.download-symbol {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1.18rem;
  line-height: 1;
  transform: translateY(-1px);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #38515c;
  background: var(--white);
  cursor: pointer;
}
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}
.gallery {
  columns: 3 300px;
  column-gap: 18px;
}
.gallery-item {
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 3px;
  background: #dfe8ea;
}
.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  aspect-ratio: var(--ratio, auto);
}
.gallery-open img {
  width: 100%;
  height: auto;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 58px 14px 16px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s;
}
.gallery-item:hover .gallery-open img,
.gallery-open:focus-visible img {
  transform: scale(1.018);
  filter: brightness(0.9);
}
.gallery-item:hover .gallery-caption,
.gallery-open:focus-visible .gallery-caption {
  opacity: 1;
  transform: none;
}
.gallery-download {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: white;
  background: rgba(3, 18, 26, 0.78);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.gallery-item:hover .gallery-download,
.gallery-item:focus-within .gallery-download {
  opacity: 1;
  transform: none;
}
.gallery-download:hover,
.gallery-download:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}
.gallery-item.is-broken {
  min-height: 210px;
  cursor: not-allowed;
}
.gallery-item.is-broken::after {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.gallery-item.is-broken img,
.gallery-item.is-broken .gallery-download {
  display: none;
}
.empty-state {
  padding: 72px 24px;
  border: 1px dashed #b8c8ce;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}
.empty-state img {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  object-fit: contain;
}
.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}
.empty-state p {
  margin: 0;
  color: var(--muted);
}

.event-partners {
  padding: clamp(76px, 8vw, 118px) 0;
  background: var(--white);
}
.event-partners__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}
.event-partners__copy {
  min-width: 0;
}
.event-partners__copy .eyebrow {
  margin-bottom: 10px;
}
.event-partners__copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4.7vw, 4.25rem);
}
.event-partners__body {
  display: grid;
  gap: 16px;
  max-width: 760px;
  color: #38515c;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.72;
}
.event-partners__body p {
  margin: 0;
}
.event-partners__logos {
  display: grid;
  gap: 30px;
  justify-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.event-partners__logo-row {
  width: 100%;
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  justify-items: center;
  align-items: center;
}
.event-partner-logo {
  width: auto;
  height: auto;
  object-fit: contain;
}
.event-partner-logo:nth-child(1) {
  width: clamp(190px, 19vw, 255px);
  max-height: 86px;
}
.event-partner-logo:nth-child(2) {
  width: clamp(195px, 19vw, 250px);
  max-height: 74px;
}
.event-partner-logo:nth-child(3) {
  width: clamp(235px, 23vw, 305px);
  max-height: 108px;
}
.event-highlights {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.event-highlights li {
  padding: 7px 11px;
  border: 1px solid #c7d6da;
  border-radius: 4px;
  color: #38515c;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.25;
}

.site-footer {
  padding: 38px 0;
  color: #c8d7da;
  background: var(--ink);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-inner img {
  width: 135px;
  height: auto;
}
.footer-inner p {
  margin: 0;
  font-size: 0.86rem;
}
.copyright {
  justify-self: end;
  color: #8da3aa;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0 28px 28px;
  border: 0;
  color: white;
  background: rgba(1, 8, 12, 0.97);
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}
.lightbox::backdrop {
  background: rgba(1, 8, 12, 0.97);
}
.lightbox[open] {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  grid-template-rows: 84px minmax(0, 1fr);
}
.lightbox-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 10px;
  color: #d7e4e6;
}
#image-counter {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 31, 40, 0.82);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-button {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: white;
  background: rgba(10, 31, 40, 0.88);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.icon-button:hover,
.icon-button:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}
.icon-button:active {
  transform: scale(0.96);
}
.close-button {
  font-size: 2.15rem;
}
.lightbox-download {
  font-size: 1.45rem;
  font-weight: 750;
}
.nav-button {
  width: 58px;
  height: 58px;
  align-self: center;
  justify-self: center;
  font-size: 1.7rem;
}
.previous-button {
  grid-column: 1;
}
.next-button {
  grid-column: 3;
}
.lightbox-figure {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  margin: 0;
  padding: 0 10px 22px;
}
.lightbox-figure img {
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 132px);
  object-fit: contain;
}
.lightbox-figure figcaption {
  max-width: min(720px, 90vw);
  min-height: 36px;
  margin-top: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #d4dfe1;
  background: rgba(10, 31, 40, 0.78);
  font-size: 0.9rem;
  text-align: center;
}
.noscript {
  position: fixed;
  z-index: 100;
  inset: auto 0 0;
  margin: 0;
  padding: 12px;
  color: white;
  background: #8c2c26;
  text-align: center;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 721px) and (max-width: 960px) {
  .section-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 30px;
  }
  .section-heading h2 {
    font-size: clamp(2.6rem, 5.6vw, 3.35rem);
  }
  .gallery-heading-actions {
    width: min(100%, 380px);
  }
}

@media (min-width: 721px) and (max-width: 1199px) {
  .hero-content {
    padding-top: clamp(110px, 13vh, 145px);
  }
  .hero-partner-logos {
    gap: clamp(20px, 2.4vw, 32px);
    padding: 14px 20px;
  }
  .partner-logo--disraptor {
    width: clamp(135px, 17vw, 180px);
    max-height: 62px;
  }
  .partner-logo--telkom {
    width: clamp(150px, 20vw, 210px);
    max-height: 58px;
  }
  .partner-logo--uk {
    width: clamp(170px, 20vw, 225px);
    max-height: 82px;
  }
  .event-partners__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: clamp(30px, 5vw, 56px);
  }
  .event-partners__logos {
    padding: 26px;
  }
  .event-partners__logo-row {
    gap: 24px;
  }
  .event-partner-logo:nth-child(1) {
    width: clamp(165px, 22vw, 220px);
    max-height: 76px;
  }
  .event-partner-logo:nth-child(2) {
    width: clamp(175px, 24vw, 225px);
    max-height: 66px;
  }
  .event-partner-logo:nth-child(3) {
    width: clamp(205px, 24vw, 270px);
    max-height: 96px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 68px;
  }
  .brand img {
    width: 130px;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 18px;
    background: #071a24;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .primary-nav.is-open {
    display: flex;
  }
  .primary-nav a {
    padding: 13px 8px;
  }
  .primary-nav a::after {
    display: none;
  }
  .hero {
    min-height: 680px;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    display: block;
    padding: 0 0 54px;
  }
  .hero-content {
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 0;
  }
  .hero-scroll {
    display: none;
  }
  .hero h1 {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: clamp(2.75rem, 9.8vw, 3.25rem);
    line-height: 0.98;
  }
  .hero-intro {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: clamp(1.08rem, 4.4vw, 1.28rem);
    line-height: 1.48;
  }
  .hero-hosted-by {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: clamp(0.96rem, 3.7vw, 1.08rem);
    line-height: 1.55;
  }
  .hero-partner-logos {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    margin: 0 0 30px;
    padding: 14px 16px;
    justify-content: center;
    gap: 18px 24px;
  }
  .partner-logo--disraptor {
    width: min(26vw, 160px);
    max-height: 54px;
  }
  .partner-logo--telkom {
    width: min(30vw, 180px);
    max-height: 52px;
  }
  .partner-logo--uk {
    width: min(33vw, 210px);
    max-height: 84px;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }
  .section-heading .eyebrow {
    margin-bottom: 7px;
  }
  .gallery-heading-actions {
    width: 100%;
    justify-self: stretch;
    gap: 16px;
  }
  .section-intro {
    max-width: 36rem;
    line-height: 1.58;
  }
  .download-all-button {
    width: 100%;
    justify-content: center;
  }
  .gallery {
    columns: 2 140px;
    column-gap: 10px;
  }
  .gallery-item {
    margin-bottom: 10px;
  }
  .gallery-caption {
    position: static;
    display: block;
    padding: 9px 10px;
    color: var(--ink);
    background: white;
    opacity: 1;
    transform: none;
    font-size: 0.76rem;
  }
  .event-partners {
    padding: 68px 0;
  }
  .event-partners__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }
  .event-partners__copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }
  .event-partners__body {
    max-width: 38rem;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.66;
  }
  .event-partners__logos {
    justify-items: center;
    width: 100%;
    padding: 26px 18px;
  }
  .event-partners__logo-row {
    gap: 28px;
  }
  .event-partner-logo:nth-child(1) {
    width: min(72vw, 230px);
    max-height: 78px;
  }
  .event-partner-logo:nth-child(2) {
    width: min(76vw, 240px);
    max-height: 68px;
  }
  .event-partner-logo:nth-child(3) {
    width: min(82vw, 285px);
    max-height: 102px;
  }
  .event-highlights {
    justify-content: flex-start;
    padding-top: 22px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .copyright {
    justify-self: start;
  }
  .lightbox {
    padding: 0 10px 12px;
  }
  .lightbox[open] {
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    grid-template-rows: 74px minmax(0, 1fr) 66px;
  }
  .lightbox-bar {
    padding-inline: 2px;
  }
  #image-counter {
    min-height: 42px;
    padding: 7px 12px;
    font-size: 0.9rem;
  }
  .lightbox-actions {
    gap: 8px;
  }
  .icon-button {
    width: 46px;
    height: 46px;
  }
  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0 2px;
  }
  .lightbox-figure img {
    max-height: calc(100dvh - 164px);
  }
  .previous-button,
  .next-button {
    grid-row: 3;
    width: 50px;
    height: 50px;
  }
  .previous-button {
    justify-self: start;
  }
  .next-button {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .hero-partner-logos {
    width: min(100%, 320px);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }
  .partner-logo--disraptor {
    width: min(100%, 205px);
    max-height: 68px;
  }
  .partner-logo--telkom {
    width: min(100%, 230px);
    max-height: 62px;
  }
  .partner-logo--uk {
    width: min(100%, 238px);
    max-height: 94px;
  }
}

@media (hover: none), (pointer: coarse) {
  .gallery-download {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
