/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
:root {
  --content-background-color: #151521;
  --font: 'Roboto Mono', monospace;
  --font-size: clamp(12px, 3.2vw, 14px);
  --text-color: #e8e8e8;
  --link-color: #4667fa;
  --nav-color-hover: #8be4ff;
  --border: 1px solid #2d3450;
}

/* -------------------------------------------------------- */
/* MAIN LAYOUT */
/* -------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  background-color: #0e1016;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  font-size: var(--font-size);
  color: var(--text-color);
  font-family: var(--font);
  background: linear-gradient(180deg, #0e1016 0%, #0b0d12 40%, #080a0f 100%);
  margin: 0;
  padding: 0;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
  padding-inline: clamp(10px, 3vw, 24px);
}

main {
  width: 100%;
  margin-inline: auto;
  padding: clamp(16px, 3vw, 28px);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  line-height: 1.55;
  box-sizing: border-box;
}

.divider {
  width: clamp(80%, 65vw, 1300px);
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, rgba(90, 212, 255, 0.35), transparent);
}

.collapse-divider {
  width: clamp(80%, 65vw, 1300px);
  height: 1px;
  margin: 4px 0 20px auto;
  background: linear-gradient(90deg, transparent, rgba(90, 212, 255, 0.35), transparent);
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

.not-found {
  text-align: center;
  padding: 60px 20px;
}

h1, h2, h3 {
  line-height: 1.3;
}

a {
  color: var(--link-color);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 120ms ease;
}

a:hover {
  color: var(--link-color-hover);
}

@media (max-width: 768px) {
  main {
    padding-left: clamp(12px, 3vw, 16px);
    padding-right: clamp(12px, 3vw, 16px);
    margin-bottom: 20px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  main {
    max-width: 1300px;
  }
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */
.top-title {
  display: block;
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text-color);
  text-decoration: none;
  text-shadow: 1px 1px 100px rgba(0,0,0,0.5);
  background: linear-gradient(120deg, #4667fa, #ffffff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 4px;
  width: 75vw;
}

.brand-logo {
  width: auto;
  height: clamp(60px, 10vw, 120px);
  display: block;
}

@media (max-width: 768px) {
  .brand {
    gap: 10px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* -------------------------------------------------------- */
/* NAVIGATION BAR */
/* -------------------------------------------------------- */
.navbar {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px);
  background: linear-gradient(180deg, #121a2b, #0f1422);
  border: 1px solid #2f3a55;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.navbar li {
  flex: 1;
  margin: 0;
}

.navbar a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  white-space: nowrap;
  text-align: center;
  color: var(--text-color);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: box-shadow 160ms ease, border-color 160ms ease, color 120ms ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.navbar a:hover,
.navbar a:focus {
  color: var(--nav-color-hover);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 6px 16px rgba(0, 0, 0, 0.45);
}

.navbar a:hover::after,
.navbar a:focus::after {
  opacity: 1;
}

.navbar a:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar a:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
}

.navbar a[aria-current="page"] {
  color: var(--nav-color-hover);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 12px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

/* ------------------------- MOBILE HAMBURGER NAVBAR ------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  margin: 0 auto;
  transition: border-color 160ms ease;
}

.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-page-title {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 10px 16px;
  }

  .nav-page-title {
    display: block;
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
  }

  .hamburger {
    display: flex;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 250ms ease, padding 300ms ease;
  }

  .navbar ul.open {
    max-height: 400px;
    opacity: 1;
    padding: 10px 0 4px;
    display: flex;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    width: 100%;
    justify-content: flex-start;
    padding-left: 12px;
  }
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */
footer {
  margin-top: auto;
  text-align: center;
  padding: 16px 0;
  background-color: var(--content-background-color);
  border-top: var(--border);
  width: 100%;
  margin-inline: calc(-1 * clamp(10px, 3vw, 24px)); /* cancel out .layout padding */
  width: calc(100% + 2 * clamp(10px, 3vw, 24px));   /* stretch back to full width */
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-footer .social-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(12px, 4vw, 20px);
  max-width: none;
  margin: 0;
}

.site-footer .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: none;
  box-shadow: none;
  border: none;
  transform: scale(1);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}


.site-footer .social-icons a::after {
  display: none;
}

.site-footer .social-icons img {
  width: 100%;
  height: 100%;
}

.footer-text {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .site-footer {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px 20px;
  }

  .footer-text {
    white-space: nowrap;
    font-size: 12px;
    margin-right: 4px;
    margin-left: 4px;
  }
}

/* -------------------------------------------------------- */
/* SOCIALS ICONS */
/* -------------------------------------------------------- */
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.social-icons a {
  position: relative;
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid rgba(255, 255, 255, 0); /* invisible until hover */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.social-icons a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 80%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  transform: scale(1.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.social-icons a:hover::after,
.social-icons a:focus-visible::after {
  opacity: 1;
}

.social-icons img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .social-icons a {
    width: clamp(20px, 16vw, 80px);
    height: clamp(20px, 16vw, 80px);
  }
}

/* -------------------------------------------------------- */
/* MUSIC_MAKE PAGE */
/* -------------------------------------------------------- */
.music-player-rectangle {
  display: flex;
  gap: 30px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.iframe-box {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid #2f3a55;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.iframe-box:hover {
  transform: scale(1.02);
}

.iframe-box.tall {
  height: 300px;
}

.iframe-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-bandcamp {
  height: 120px;
}

.iframe-spotify {
  height: 155px;
  overflow: hidden;
}

.iframe-bandcamp-cover {
  width: 350px;
  height: 442px;
}

@media (max-width: 768px) {
  .music-player-rectangle {
    flex-direction: column;
    gap: 20px;
  }
}

/* -------------------------------------------------------- */
/* MUSIC_LISTEN PAGE */
/* -------------------------------------------------------- */

.section-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
}

.section-toggle h2 {
  margin: 0;
  flex: 1;
  font-family: var(--font);
}

.toggle-chevron {
  font-size: 1.4rem;
  color: var(--text-color);
  opacity: 0.5;
  transition: transform 250ms ease, opacity 250ms ease;
  transform: rotate(90deg); /* pointing down when open */
}

.section-toggle:not(.open) .toggle-chevron {
  transform: rotate(0deg); /* pointing right when closed */
}

.collapsible-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms ease, opacity 300ms ease, padding 350ms ease;
  margin-bottom: 1.5rem;
  padding: 6px 0 6px;
}

.collapsible-section.open {
  max-height: 10000px; /* must have max height for JS */
  opacity: 1;
  padding-top: 12px;
  overflow: visible;
}

.collapsible-section:last-of-type {
  margin-bottom: 0;
}

.spotify-embed {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 500px;
  aspect-ratio: 3 / 2;
  margin: 10px auto;
}

.spotify-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #2f3a55;
  border-radius: 12px;
}

/* ------------------------ PLAYLIST GRID ------------------------ */

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.playlist-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: 12px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.playlist-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.playlist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 80%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.playlist-card:hover,
.playlist-card:focus-visible {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.playlist-card:hover::after,
.playlist-card:focus-visible::after {
  opacity: 1;
}

.playlist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.playlist-card h3 {
  margin: 10px 0 -2px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .spotify-embed {
    overflow: hidden;
    border-radius: 12px;
    height: 480px;
  }

  .spotify-embed iframe {
    height: 500px;
    border-radius: 0;
  }

  .playlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .playlist-card {
    padding: 8px;
  }

  .playlist-card h3 {
    font-size: 0.75rem;
  }
}

/*

.playlist-description {
  font-size: 0.8rem;
  color: rgba(232, 232, 232, 0.55);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* PLAYLIST LIGHTBOX */
/* -------------------------------------------------------- */

/*

.playlist-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 15, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.playlist-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.playlist-lightbox-content {
  width: min(92vw, 700px);
  max-height: 85vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid #2f3a55;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 24px;
  animation: lightbox-pop 180ms ease;
}

.playlist-lightbox-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.playlist-lightbox-cover {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid #2f3a55;
}

.playlist-lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.playlist-lightbox-name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
}

.playlist-lightbox-description {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.6);
  line-height: 1.4;
}

.playlist-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.playlist-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  counter-increment: track-counter;
}

.track-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.track-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.8rem;
  color: rgba(232, 232, 232, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-duration {
  font-size: 0.8rem;
  color: rgba(232, 232, 232, 0.5);
  flex-shrink: 0;
}


/* -------------------------------------------------------- */
/* PHOTOGRAPHY PAGE */
/* -------------------------------------------------------- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 100%;
}

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

/* mobile */
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid #2f3a55; /* same family as iframe boxes */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: scale(1);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  cursor: pointer;
}

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

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 75%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.photo-card:hover,
.photo-card:focus-visible {
  transform: scale(1.05); /* straight-out pop */
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.photo-card:hover::after,
.photo-card:focus-visible::after {
  opacity: 1;
}

/* --------------------------- LIGHTBOX --------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 15, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  border-radius: 16px;
  background: linear-gradient(180deg, #161b2b, #101522);
  border: 1px solid #2f3a55;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: lightbox-pop 180ms ease;
  transition: opacity 180ms ease, transform 180ms ease;
}

.lightbox-image.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

.lightbox-image.fade-in {
  opacity: 1;
  transform: scale(1);
}

@keyframes lightbox-pop {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.5rem;
  color: #e8e8e8;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 120ms ease, transform 120ms ease;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.lightbox-caption {
  max-width: min(92vw, 900px);
  height: 1.4em;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  color: rgb(255, 255, 255);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10em;
  line-height: 1;
  color: rgba(232, 232, 232, 0.75);
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 140ms ease, transform 120ms ease, color 120ms ease;
}

.lightbox-arrow.left {
  left: calc(50% - min(46vw, 600px) - 60px);
}

.lightbox-arrow.right {
  right: calc(50% - min(46vw, 600px) - 60px);
}

.lightbox-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
  color: #ffffff;
}

.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.95);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .lightbox-arrow {
    font-size: 1.8rem;
    padding: 10px 12px;
  }
}
