/* ======================================================
//  MARK: VARIABLES & BASE
// ====================================================== */

/* ======================================================
//  MARK: LAYOUT
// ====================================================== */
.section {
  max-width: 912px;
  padding: 0 3.5%;
  margin: 0 auto;
}

.container {
  max-width: 726px;
  margin: 0 auto;
}

section {
  overflow: hidden;
}


/* ======================================================
//  MARK: BACKGROUND
// ====================================================== */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 892px;
  height: 100%;
  z-index: -1;
  background: url('../images/kv.png') top center / cover no-repeat;
  overflow-x: hidden;
}

/* 左側ぼかし */
.bg-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  right: auto;
  width: 120px;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  background: linear-gradient(to right, rgba(8, 13, 27, 1) 0%, rgba(8, 13, 27, 0) 100%);
}

/* 右側ぼかし */
.bg-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  left: auto;
  width: 120px;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  background: linear-gradient(to left, rgba(8, 13, 27, 1) 0%, rgba(8, 13, 27, 0) 100%);
}

/* ======================================================
//  MARK: HEADER
// ====================================================== */
.header {
  .logo {
    max-width: 165px;
    position: fixed;
    left: 50px;
    top: 50px;
    z-index: 50;

    @media screen and (max-width: 768px) {
      display: none;
    }
  }

  .header-menu {
    position: fixed;
    display: flex;
    gap: 24px;
    top: 50px;
    right: 50px;
    z-index: 50;

    .header-menu-ttl {
      display: none;
      letter-spacing: 0.3em;
      text-align: center;
      font-size: 14px;
      margin-bottom: 10px;
      font-family: var(--font-waverly);

      @media screen and (max-width: 768px) {
        display: inline-block;
      }
    }
    .header-info {
      display: none;
      font-family: var(--font-waverly);
      text-align: center;
      margin-bottom: 30px;

      @media screen and (max-width: 768px) {
        display: block;
        .date {
          font-size: 29px;

          span {
            font-size: 16px;
          }
        }

        .time {
          font-size: 22px;

          span {
            font-size: 13px;
          }
        }

        .venue {
          font-size: 17px;

          span {
            font-size: 13px;
          }
        }
      }
    }

    .sns-wrap {
      display: flex;
      gap: 24px;
      img {
        max-width: 25px;
      }
      
      @media screen and (max-width: 768px) {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }
    }

    a {
      color: #fff;
      font-size: 14px;

      &::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s;
      }
    }

    @media screen and (max-width: 768px) {
      padding: 0 11%;
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      display: none;
      flex-direction: column;
      justify-content: center;
      background: #9DA1AC;
      gap: 12px;
      opacity: 0;
      transition: opacity 0.3s ease;

      li {
        position: relative;
        &::before {
          content: "";
          display: block;
          width: 100%;
          border-top: 1px dashed #fff;
          margin-bottom: 12px;
        }
      }

      &.active {
        opacity: 1;
      }
    }
  }
  
  .hamburger-icon {
    position: fixed;
    top: 15px;
    right: 10px;
    width: 70px;
    height: 70px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    cursor: pointer;

    img {
      aspect-ratio: 70 / 46;
    }

    @media screen and (max-width: 768px) {
      display: flex;
    }

    span {
      font-size: 18px;
      font-family: var(--font-waverly);
      letter-spacing: 0.16em;
    }
  }
}

/* ホバーアンダーライン */
a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ======================================================
//  MARK: LOGO
// ====================================================== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 3px 10px 1px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.logo-name {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-top: 5px;
  opacity: 0.8;
  font-weight: 300;
}

/* ======================================================
//  MARK: TICKET
// ====================================================== */
.ticket {
  position: fixed;
  bottom: 50px;
  right: 50px;
  /* ✅ opacity: 0.3s はバグ。transition に修正 */
  transition: opacity 0.3s;
  z-index: 10;
  max-width: 224px;

  &:hover {
    opacity: 0.75;
  }

  @media screen and (max-width: 768px) {
    max-width: 173px;
    right: 16px;
    bottom: 16px;
  }
}

/* ======================================================
//  MARK: HERO
// ====================================================== */
#hero {
  width: 100%;
  max-width: 892px;
  height: 100vh;
  margin: 0 auto -260px auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#fw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  width: 77%;
  position: relative;
  z-index: 2;
}

.hero-content img {
  width: 100%;
  max-width: 455px;
  height: auto;
}

.hero-jw {
  font-family: var(--serif);
  font-size: clamp(90px, 14vw, 150px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 0.85;
  text-shadow: 0 0 80px rgba(255, 205, 25, 0.35), 0 0 20px rgba(255, 205, 25, 0.2);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.2s forwards;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(16px, 3.5vw, 36px);
  letter-spacing: 0.35em;
  color: var(--yellow);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
  margin-top: 6px;
}

.hero-fireworks-txt {
  font-size: clamp(11px, 2vw, 16px);
  letter-spacing: 0.55em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.7s forwards;
  margin-top: 4px;
}

.hero-with {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.9s forwards;
}

.hero-date {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.1s forwards;
}

.hero-date span {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.4;
  font-weight: 100;
}

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

/* ======================================================
//  MARK: SECTION HEAD
// ====================================================== */
.sec-head {
  text-align: center;
}

.sec-head-left {
  text-align: left;
}

.sec-title {
  font-family: var(--font-waverly);
  font-weight: 500;
  font-style: normal;
  color: var(--yellow);
  font-size: 64px;
  line-height: 1;

  @media screen and (max-width: 768px) {
    font-size: 56px;
  }
}

.sec-title-ja {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-weight: 300;
  line-height: 2.2;
}

/* ======================================================
//  MARK: SCROLL REVEAL
// ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ======================================================
//  MARK: ABOUT
// ====================================================== */
.about {
  position: relative;
  padding: 262px 3.5% 80px 3.5%;
  background: linear-gradient(
    to bottom,
    rgba(8, 13, 27, 0)   0%,
    rgba(8, 13, 27, 0.4) 22%,
    rgba(8, 13, 27, 0.8) 80%,
    rgba(8, 13, 27, 1)   100%
  );

  &::after {
    content: "";
    position: absolute;
    background-color: #080D1B;
    inset: 0;
    -webkit-backdrop-filter: blur(68px);
    backdrop-filter: blur(68px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    z-index: -1;
  }

  .about-inner {
    position: relative;
    margin: 0 auto;
  }

  .about-border-left,
  .about-border-right {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    bottom: 0;
  }

  .about-border-left {
    left: 0;
  }

  .about-border-right {
    right: 0;
    transform: rotate(-180deg);
  }

  .about-border-center {
    max-width: 24.5px;
    aspect-ratio: 12 / 67;
    position: absolute;
    top: 50%;
    left: -15.5px;
    transform: translateY(-50%);
  }

  .about-text {
    width: 72%;
    margin: 0 auto;
    padding: 65px 0;
    line-height: 2.2;

    p {
      font-size: 18px;
      margin-bottom: 50px;

      &:last-child {
        margin: 0;
      }

      @media screen and (max-width: 768px) {
        font-size: 15px;
      }
    }
  }

  .about-box {
    border: 1px solid rgba(255, 205, 25, 0.45);
    padding: 34px 30px;
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 18px;
      width: 52px;
      height: 1px;
      background: var(--dark);
    }
  }

  .about-box-label {
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--yellow);
    background: var(--dark);
    padding: 0 6px;
  }

  .about-box p {
    font-size: 12px;
    line-height: 2.1;
  }
}

/* ======================================================
//  MARK:NEWS
// ====================================================== */
.news {
  background: var(--dark);
  a {
    color: #fff;
    &:hover {
      opacity: 0.8;
    } 
  }

  .news-list {
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .news-link {
    position: relative;
    margin-top: 30px;
    &::after {
      content: "";
      position: absolute;
      width: 100%;
      display: block;
      border: 0;
      border-bottom: 1px dashed var(--yellow);
      margin: 30px 0;
    }

    article {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .news-ttl {
      font-size: 16px;
    }
  }
}

/* ======================================================
//  MARK: AMBASSADOR
// ====================================================== */

.ambassador {
  background: var(--dark);
  padding: 120px 3.5% 0 3.5%;

  .profile {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 60px;
    place-content: space-between;
    margin: 50px 0 0 0;

    @media screen and (max-width: 768px) {
      gap: 30px;
    }
    
    .profile-img {
      @media screen and (max-width: 768px) {
        width: 50%;
        margin: 0 auto;
      }
    }

    .profile-text {
      font-size: 18px;
      p:first-child {
        font-size: 48px;
        color: var(--yellow);
        @media screen and (max-width: 768px) {
          font-size: 30px;
        }
        span {
          color: #fff;
          font-size: 24px;
          @media screen and (max-width: 768px) {
            font-size: 18px;
          }
        }
      }

      p:nth-child(2) {
        font-size: 16px;
        margin: 10px 0 0 0;
        @media screen and (max-width: 768px) {
          margin: 5px 0 0 0;
        }
      }

      p:nth-child(3) {
        font-size: 18px;
        margin: 10px 0 0 0;
        @media screen and (max-width: 768px) {
          margin: 5px 0 0 0;
        }
      }
      
      p:nth-child(4) {
        font-size: 14px;
        margin: 20px 0 0 0;
        @media screen and (max-width: 768px) {
          margin: 10px 0 0 0;
        }
      } 
    }

    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }
}

/* ======================================================
//  MARK: OUTLINE
// ====================================================== */
.outline {
  background: var(--dark);
  padding: 120px 3.5% 0 3.5%;

  .outline-table {
    position: relative;
    margin: 64px 0 0 0;
    border-top: 1px solid var(--yellow);
  }
}

.outline-row {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 26% 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--yellow);

  &::after {
    position: absolute;
    content: "";
    bottom: -5px;
    width: 26%;
    height: 1px;
    background: var(--yellow);
  }

  #contact {
    scroll-padding-top: 120px;
  }
}

.outline-key {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 400;
  padding: 0 0 0 16px;
}

.outline-val {
  font-size: 14px;
  color: #fff;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .price {
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* ── Notice ── */
.notice-wrap {
  position: relative;
  margin-top: 56px;
  border: 1px solid var(--yellow);
  padding: 44px 0;
}

.corner {
  position: absolute;
  width: 61px;
  height: 61px;
  border-color: var(--yellow);
  border-style: solid;
  border-width: 0;
}

.tl { top: 8px;    left: 8px;   border-top-width: 1px;    border-left-width: 1px; }
.tr { top: 8px;    right: 8px;  border-top-width: 1px;    border-right-width: 1px; }
.bl { bottom: 8px; left: 8px;   border-bottom-width: 1px; border-left-width: 1px; }
.br { bottom: 8px; right: 8px;  border-bottom-width: 1px; border-right-width: 1px; }

.notice-head {
  text-align: center;
  margin-bottom: 28px;
}

.notice-head-en {
  font-family: var(--font-waverly);
  font-size: 32px;
  color: var(--yellow);
}

.notice-head-ja {
  font-size: 14px;
  color: var(--yellow);
  display: block;
}

.notice-border {
  width: 54%;
  max-width: 406px;
  margin: 0 auto;
  height: 1px;
  border: 1px dashed var(--yellow);
}

.notice-list {
  width: 74%;
  max-width: 500px;
  margin: 40px auto;
}

.notice-list li {
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  margin: 6px 0;
}

.p-red {
  color: #FF5E19;
}

/* ── Seats Map ── */
.seats-map-wrap {
  max-width: 726px;
  margin: 50px auto 0 auto;
}

/* ======================================================
//  MARK: ACCESS
// ====================================================== */
.access {
  background: var(--dark);
  padding: 120px 3.5% 0 3.5%;
}

.access-body {
  margin-top: 32px;
}

.access-venue {
  font-size: 24px;
  color: var(--yellow);
  letter-spacing: 0.12em;
  margin-bottom: 8px;

  &::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 4px;
    background: var(--yellow);
    margin: auto 25px auto 0;
  }
}

.access-addr {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 6px;
}

.map-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transport-list {
  margin-top: 28px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.transport-item {
  font-size: 12px;
  line-height: 1.9;

  strong {
    display: block;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--yellow);
    font-weight: 400;
    margin-bottom: 4px;
  }
}

/* ======================================================
//  MARK: FOOTER
// ====================================================== */
.footer {
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 320px 0 22px 0;
  background: linear-gradient(
    to top,
    rgba(8, 13, 27, 0.5) 50%,
    rgba(8, 13, 27, 1)   100%
  );
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
}

.logo-wrap {
  width: 77%;
  max-width: 412px;
  margin: 0 auto 150px auto;
}

/* ======================================================
//  MARK: SINGLE
// ====================================================== */
.single-main {
  padding: 160px 3.5% 80px;
  min-height: 100vh;
}

.single-container {
  max-width: 726px;
  margin: 0 auto;
}

.single-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-waverly);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  opacity: 0.7;
  transition: opacity 0.25s;

  &:hover {
    opacity: 1;
  }

  &::after {
    display: none;
  }
}

.single-back--bottom {
  margin-top: 64px;
}

.single-article {
  margin-top: 48px;
}

.article-head {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 205, 25, 0.3);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-cat {
  font-family: var(--font-waverly);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--dark);
  background: var(--yellow);
  padding: 3px 10px;
  line-height: 1.6;
}

.article-date {
  font-family: var(--font-waverly);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.article-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

.article-body {
  margin-top: 48px;

  p {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 32px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  h2 {
    font-family: var(--font-waverly);
    font-size: 22px;
    font-weight: 400;
    color: var(--yellow);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--yellow);
  }
}

.article-img {
  margin: 0 auto 40px;
  max-width: 480px;

  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.article-notice {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  margin-bottom: 32px;

  p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

/* ── 前後記事ナビ ── */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 205, 25, 0.25);
  border-bottom: 1px solid rgba(255, 205, 25, 0.25);
}

.article-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  transition: background 0.25s;
  color: #fff;

  &:hover {
    background: rgba(255, 205, 25, 0.05);
  }

  &::after {
    display: none;
  }

  &--prev {
    border-right: 1px solid rgba(255, 205, 25, 0.25);
    padding-left: 0;
  }

  &--next {
    text-align: right;
    padding-right: 0;
  }

  &--disabled {
    pointer-events: none;
    opacity: 0.3;

    &:hover {
      background: transparent;
    }
  }
}

.article-nav__label {
  font-family: var(--font-waverly);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--yellow);

  .article-nav__item--prev &::before { content: "← "; }
  .article-nav__item--next &::after  { content: " →"; }
}

.article-nav__title {
  font-size: 14px;
  line-height: 1.6;
}

/* ======================================================
//  MARK: ARCHIVE
// ====================================================== */
.archive-main {
  padding: 160px 3.5% 100px;
  min-height: 100vh;
}

.archive-container {
  max-width: 726px;
  margin: 0 auto;
}

.archive-head {
  margin-bottom: 56px;
}

.archive-title {
  font-family: var(--font-waverly);
  font-size: 64px;
  font-weight: 500;
  color: var(--yellow);
  line-height: 1;

  @media screen and (max-width: 768px) {
    font-size: 48px;
  }
}

.archive-title-ja {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  opacity: 0.7;
  margin-top: 8px;
}

/* ── ニュースリスト ── */
.news-list {
  border-top: 1px solid rgba(255, 205, 25, 0.3);
}

.news-item {
  border-bottom: 1px solid rgba(255, 205, 25, 0.3);
}

.news-item__link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 8px;
  color: #fff;
  transition: background 0.25s;

  &:hover {
    background: rgba(255, 205, 25, 0.05);
  }

  &::after {
    display: none;
  }

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 10px;
    padding: 18px 4px;
  }
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.news-item__cat {
  font-family: var(--font-waverly);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dark);
  background: var(--yellow);
  padding: 2px 8px;
  line-height: 1.6;
  white-space: nowrap;
}

.news-item__date {
  font-family: var(--font-waverly);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.news-item__title {
  font-size: 15px;
  line-height: 1.6;
}

/* ── ページネーション ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-waverly);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;

  &:hover {
    color: var(--yellow);
    border-color: rgba(255, 205, 25, 0.4);
  }

  &::after {
    display: none;
  }

  &--current {
    color: var(--yellow);
    border-color: var(--yellow);
    pointer-events: none;
  }
}

.pagination__prev,
.pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-waverly);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.25s, border-color 0.25s;

  &:hover {
    color: var(--yellow);
    border-color: rgba(255, 205, 25, 0.4);
  }

  &::after {
    display: none;
  }

  &--disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
  }
}
/* ======================================================
//  MARK: WORDPRESS PAGINATION (paginate_links)
// ====================================================== */
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-waverly);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.pagination .page-numbers:hover {
  color: var(--yellow);
  border-color: rgba(255, 205, 25, 0.4);
}
.pagination .page-numbers::after { display: none; }
.pagination .page-numbers.current {
  color: var(--yellow);
  border-color: var(--yellow);
  pointer-events: none;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}
