@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap");

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

:root {
  font-size: 14px;
  --color-text: #151515;
  --color-bg: #fff;
  --color-link: #151515;
  --color-link-hover: #000000;
  --color-close: #a22d1d;
  --page-padding: 1.5rem;
  --c-gap: 0.6rem;
  --column: 80px;
  --column-count: 4;
  --aspect: 4/5;
  --font-size-l: 18px;
  --font-size-xl: clamp(2rem, 10vw, 6rem);
  --panel-gap: 1rem;
  --panel-img-size: calc(
    (100vh - var(--page-padding) * 2) * 4 / 5 - var(--panel-gap)
  );
  --heading-title-width: 220px;
  --resume-heading-width: 190px;
  --podcast-heading-width: 190px;
  --resume-heading-height: 90px;
}

html {
  overflow-x: hidden;
  height: fit-content !important;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "halyard-display", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  text-transform: lowercase;
  overflow: hidden !important; /* Remove scroll from body */
  height: fit-content !important;
  counter-reset: section-counter;
}

/* Fix for Lenis smooth scroll extra space */
html[data-lenis-prevent] body {
  height: auto !important;
}

/* Override Lenis calculated height */

/* Lazy loading background images */
.grid__item-image.lazy-bg {
  background-color: #f0f0f0; /* Placeholder color */
  transition: opacity 0.3s ease-in-out;
}

.grid__item-image.lazy-bg:not(.loaded) {
  opacity: 0.8;
}

.grid__item-image.lazy-bg.loaded {
  opacity: 1;
}
html.lenis {
  height: auto !important;
}

html.lenis body {
  height: auto !important;
  min-height: 0 !important;
}

/* Hide the gallery images by default - they're only used for animation */
.grid__item-gallery {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

@media (scripting: enabled) {
  .loading {
    &::before,
    &::after {
      content: "";
      position: fixed;
      z-index: 10000;
    }

    &::before {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-bg);
    }

    &::after {
      top: 50%;
      left: 50%;
      width: 100px;
      height: 1px;
      margin: 0 0 0 -50px;
      background: var(--color-link);
      animation: loaderAnim 1.5s ease-in-out infinite alternate forwards;
    }
  }
}

@keyframes loaderAnim {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }

  50% {
    transform: scaleX(1);
    transform-origin: 0% 50%;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }

  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  cursor: pointer;

  &:hover {
    text-decoration: none;
    color: var(--color-link-hover);
  }

  &:focus {
    outline: none;
    background: lightgrey;

    &:not(:focus-visible) {
      background: transparent;
    }

    &:focus-visible {
      outline: 2px solid red;
      background: transparent;
    }
  }
}

.dropdown:hover {
  text-decoration: none;
}
.line {
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;

  &::before {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: transform 0.4s ease;
    width: 100%;
    transform: scaleX(0);
    transform-origin: right center;
  }

  &:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

main {
  padding: 1rem 3rem;
}

/* Script positioning to prevent visual space */
script {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Ensure no extra space after main */
main {
  margin-bottom: 0 !important;
}

body > script {
  bottom: 0 !important;
}

.frame {
  font-size: var(--font-size-l);
  font-weight: 500;
  display: grid;
  z-index: 1000;
  width: 100%;
  position: relative;
  grid-column-gap: var(--c-gap);
  grid-row-gap: 0.5rem;
  pointer-events: none;
  justify-items: start;
  grid-template-columns: auto;
  grid-template-areas:
    "title"
    "links"
    "tags"
    "sponsor";

  #cdawrap {
    justify-self: start;
    grid-area: sponsor;
  }

  a,
  button {
    pointer-events: auto;
    color: var(--color-text);
  }

  .frame__title {
    font-size: inherit;
    margin: 0;
    font-weight: inherit;
    grid-area: title;
    position: absolute;
    left: 0;
    top: 120px;
    padding: 0.5rem;
    margin-bottom: 2rem;
  }

  .frame__tags,
  .frame__links {
    grid-area: tags;
    display: flex;
    gap: 0.5rem;
    align-items: start;
  }

  .frame__links {
    grid-area: links;
  }

  .frame__tech-nav {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding: 0.5rem;
  }

  .tech-row {
    display: flex;
    gap: 0.5rem;
    align-items: start;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  &.frame--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;

    & + * {
      display: none;
    }
  }

  @media screen and (min-width: 65em) {
    grid-template-columns: repeat(
      var(--column-count),
      minmax(var(--column), 1fr)
    );
    grid-template-areas: "title title links links tags tags ... sponsor";
  }
}

.heading {
  display: grid;
  justify-content: start;
  grid-template-rows: auto 30px;
  gap: 0.4rem;
  align-items: center;
  /* margin styles moved to bottom for easy tweaking */
}

.heading__meta {
  margin: 0px 1px;
  font-size: 13px !important;
  font-family: "Courier New";
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  -webkit-font-smoothing: antialiased;
  color: #151515;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.2px black;
  position: relative;
  display: inline-block;
}

/* Only hide heading__meta text when modern header variant is active */
body.header-modern .heading__meta {
  margin: 0;
  padding: 0;
  font-size: 13px !important;
  line-height: 21px;
  height: auto;
  color: #151515;
  -webkit-text-stroke: 0.2px;
}

/* Reset font-size for dropdown inside heading__meta when modern variant is active */
body.header-modern .heading__meta .dropdown {
  font-size: 13px !important;
  line-height: normal;
}
.main_title {
  text-align: left;
  width: fit-content;
}

.heading__title {
  font-family: "owners-xnarrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  margin: 0;
  line-height: 0.77;
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: var(--heading-title-width) 90px;
}

.heading.resume .heading__title {
  grid-template-columns: var(--resume-heading-width) 90px;
  grid-template-rows: var(--resume-heading-height);
}

/* Podcast heading grid override */
:is(.heading.podcast) .heading__title {
  grid-template-columns: var(--podcast-heading-width) 90px !important;
}

/* Default styling for main_title */
.main_title {
  font-family: "owners-xnarrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  margin: 0;
  line-height: 0.77;
  position: relative;
  counter-increment: section-counter;
}

/* When nanum-gothic class is applied to main_title */
.main_title.nanum-gothic {
  font-family: "Nanum Gothic", sans-serif !important;
  font-weight: 100 !important;
  font-size: calc(
    var(--font-size-xl) * 0.7
  ) !important; /* 70% of original size */
  margin-left: -4px !important;
  line-height: 1 !important;
  letter-spacing: -0.13em !important;
  transform: scaleY(1.2) !important;
}
.main_title.geist-mono {
  font-family: "Geist Mono", monospace !important;
  font-weight: 500 !important;
  letter-spacing: -0.1em !important;
  line-height: 0.77 !important;
  transform: scaleY(1.1) !important;
  word-spacing: -10px;
  margin-left: -5px;
}
.main_title.neue-plak-thin {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 100 !important;
  letter-spacing: -0.1em !important;
  line-height: 0.9 !important;
  word-spacing: 5px;
  transform: scaleY(1.2) !important;
  margin-left: -5px;
}

.main_title.neue-plak-bold {
  font-weight: 500 !important;
  letter-spacing: -0.09em !important;
  transform: scaleY(1.2) !important;
  line-height: 1 !important;
  margin-left: -5px;
}
.main_title.anton {
  font-family: "Anton", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.064em !important;
  transform: scaleY(1.2) !important;
  line-height: 1.1 !important;
  margin-left: -2px;
}

.main_title.lato {
  font-family: "Lato", sans-serif !important;
  letter-spacing: -0.064em !important;
  line-height: 0.9 !important;
  margin-left: -5px;
}

.main_title.bebas-neue {
  font-family: "Bebas Neue", cursive !important;
  font-weight: 400 !important;
  letter-spacing: -0.064em !important;
  transform: scaleY(1.2) !important;
  margin-left: -2px;
  line-height: 0.9 !important;
}

.main_title.montserrat {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  margin-left: -8px;
}

.main_title.micro5 {
  font-family: "Press Start 2P", cursive !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  word-spacing: -1.5rem;
  font-size: calc(var(--font-size-xl) * 0.6) !important;
  letter-spacing: -0.064em !important;
  margin-left: 2px;
  transform: scaleY(1.4) !important;
}

.main_title.micro6 {
  font-family: "Oswald", sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: -0.05em !important;
  line-height: 0.7 !important;
  margin-left: -4px;
  transform: scaleY(1) !important;
}

.main_title.gemunu-libre {
  font-family: "Gemunu Libre", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  line-height: 0.9 !important;
  margin-left: -5px !important;
}
/* Dropdown styles */
.dropdown {
  font-size: 13px;
  font-family: "Courier New";
  font-weight: 400;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  padding-bottom: 0 !important;
  vertical-align: baseline;
  position: relative;
  top: auto !important;
  color: #000 !important;
  -webkit-text-stroke: 0px !important;
}

/* Section chevron button */
.section-chevron {
  background: transparent;
  border: none;
  cursor: pointer;
  vertical-align: middle;
  padding: 0;
  height: fit-content;
  width: fit-content;
}

.section-chevron svg {
  width: 22px;
  height: 24px;
}

.section-chevron svg polyline {
  stroke: #000000;
  stroke-width: 1.5;
}

/* Ensure all chevron SVGs have consistent sizing */
.chevron-svg {
  width: fit-content !important;
  height: fit-content !important;
}

.chevron-svg polyline {
  stroke-width: 1.5 !important;
}

/* Show only 1st chevron by default, 2nd and 3rd chevrons are hidden */
.chevron-svg .second-path {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.chevron-svg .third-path {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s;
}

/* When hovering on the chevron SVG, 2nd and 3rd chevrons animate in */
.chevron-svg:hover .second-path {
  opacity: 1;
  transform: translateX(0);
}

.chevron-svg:hover .third-path {
  opacity: 1;
  transform: translateX(0);
}

/* Add pointer cursor on chevron SVG */
.chevron-svg {
  cursor: pointer;
}

/* When header text is capitalized, add margin-top to chevron */
/* When header text is capitalized, reduce podcast heading width by 10px */
body.header-styled .heading.podcast .heading__title {
  grid-template-columns: calc(var(--podcast-heading-width) - 20px) 90px !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0.25rem;
  padding-top: 0.8rem;
  width: 95%;
  max-width: 2000px;
  place-self: center;
  justify-self: center;
}
.grid__item {
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  will-change: transform, clip-path;
  overflow: visible;
  position: relative;
}

.grid__item-images {
  position: relative;
  width: 100%;
  aspect-ratio: var(--aspect);
}

.grid__item:hover .grid__item-image {
  cursor: pointer;
}

/* Magnifier icon styles */
.grid__item-magnifier {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #000;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 5px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid__item-magnifier svg {
  width: 22px;
  height: 22px;
}

.grid__item:hover .grid__item-magnifier {
  opacity: 1;
  animation: magnifierBlink 0.8s linear infinite;
}

/* Magnifier blinking animation */
@keyframes magnifierBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Zoomed state styles */
.grid__item.zoomed .grid__item-image {
  background-size: 170% auto !important;
  background-position: center center;
  transition: background-size 0.3s ease;
  cursor: move !important;
  z-index: 10;
  position: relative;
}

.grid__item.zoomed .grid__item-magnifier {
  opacity: 1 !important;
  animation: none !important;
}

/* Ensure image has proper background properties */
.grid__item-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
}

.grid__item-image {
  width: 100%;
  aspect-ratio: var(--aspect);
  background-size: cover;
  background-position: 50% 50%;
  transition: opacity 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

/* Podcast grid styling */
.podcast-grid {
  margin-top: -3rem !important;
}

/* Center podcast images with contain to show full image */
.podcast-grid .grid__item-image {
  background-size: contain !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Maintain centering for zoomed podcast images */
.podcast-grid .grid__item.zoomed .grid__item-image {
  background-size: 170% auto !important;
  background-position: center bottom !important;
}

/* Reduce margin-bottom for podcast heading by 3rem */
.heading.podcast {
  margin-bottom: -3rem !important; /* Reduces the existing margin by 3rem */
}

/* Force podcast heading to use podcast-specific width */
.heading.podcast .heading__title {
  grid-template-columns: var(--podcast-heading-width) 90px !important;
}

.grid__item-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid__item-caption h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-align: right;
  flex: 1;
  font-family: "Courier New", Courier, monospace;
}

.grid__item-caption p {
  display: none;
}

/* Responsive Grid Media Queries */
@media screen and (min-width: 480px) {
  .grid {
    gap: 0.3rem;
  }
}

@media screen and (min-width: 769px) {
  .grid {
    gap: 0.4rem;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 2200px;
  }
}

@media screen and (min-width: 1440px) {
  .grid {
    gap: 0.6rem;
    width: 100%;
    max-width: 2400px;
  }
}

@media screen and (min-width: 1920px) {
  .grid {
    gap: clamp(0.7rem, 1.5vw, 1rem);
    max-width: 2600px;
  }
}

@media screen and (min-width: 65em) {
  :root {
    --column-count: 16;
  }
}
.head {
  font-size: 24px;
  font-weight: 400;
  font-family: "Bebas Neue", cursive !important;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  z-index: 999;
}

.head-side-text {
  position: fixed;
  left: 19px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-size: 16px;
  font-weight: 800;
  font-family: "Courier New", monospace;
  text-transform: lowercase;
  white-space: nowrap;
  color: #000000;
  z-index: 1000;
  display: block;
}

/* Hide the side text when modern header variant is active */
body.header-modern .head-side-text {
  display: none;
}
.dropdown {
  font-weight: 700 !important;
  color: #000;
}

/* Reduce gap between dropdown text and underline animations */
/* Adjust bottom position to bring underlines 4px closer */
.dropdown::before {
  bottom: calc(-2px + 4px) !important; /* Original -2px moved up by 4px = 2px */
}

.dropdown::after {
  bottom: calc(
    -5px + 4px
  ) !important; /* Original -5px moved up by 4px = -1px */
}

/* Override specific variants to maintain their relative positioning but 4px closer */
.underline-metis .dropdown::before {
  bottom: 2px !important; /* -2px + 4px */
}

.underline-io .dropdown::before {
  bottom: 2px !important; /* -2px + 4px */
}

.underline-io .dropdown::after {
  bottom: -1px !important; /* -5px + 4px */
}

.underline-thebe .dropdown::before {
  bottom: 2px !important; /* -2px + 4px */
}

.underline-thebe .dropdown::after {
  bottom: -2px !important; /* -6px + 4px */
}

.underline-elara .dropdown::before,
.underline-dia .dropdown::before,
.underline-kale .dropdown::before,
.underline-carpo .dropdown::before,
.underline-helike .dropdown::before,
.underline-eirene .dropdown::before {
  bottom: 0px !important; /* -4px + 4px */
}

.underline-dia .dropdown::after,
.underline-carpo .dropdown::after {
  bottom: -4px !important; /* -8px + 4px */
}

.underline-leda .dropdown::before {
  bottom: 4px !important; /* 0px + 4px */
}

.underline-mneme .dropdown::before {
  bottom: 4px !important; /* 0px + 4px */
}

.underline-mneme .dropdown::after {
  bottom: 6px !important; /* 2px + 4px */
}

/* Adjust Ersa center line to be closer to text */
.underline-ersa .dropdown::before {
  top: 45% !important; /* Move from 34% to 50% to center on text */
}

/* Ensure Leda text slide animation works properly */
.underline-leda .dropdown span {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1) !important;
}

.underline-leda .dropdown::after {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1) !important;
}

/* Ensure tooltip text is visible and properly styled */
.tooltip__content {
  color: #333 !important;
  opacity: 1 !important;
  height: 100% !important;
  padding: 20px 0px !important; /* Override flex from tooltip.css */
  text-align: left !important;
  display: grid !important;
  align-content: space-between;
}

.tooltip__content-title {
  color: #333 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-transform: capitalize !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  font-family: "Courier New", Courier, monospace !important;
  height: fit-content;
}

.tooltip__content-desc {
  color: #333 !important;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
  height: fit-content;
  margin: 0 !important; /* Override auto margin from tooltip.css */
}

/* Password overlay styles */
.password-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(170px);
  -webkit-backdrop-filter: blur(170px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.password-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: lowercase;
  color: #151515;
}

.password-input {
  padding: 0.8rem 1.5rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  border: 2px solid #151515;
  background: transparent;
  color: #151515;
  text-align: center;
  outline: none;
  text-transform: lowercase;
}

.password-input:focus {
  border-color: #000;
}

.password-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hide overlay when authenticated */
.password-overlay.hidden {
  display: none;
}

/* Submit button styling */
.password-submit {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  background: #151515;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: lowercase;
  transition: background 0.3s ease;
}

.password-submit:hover {
  background: #000;
}

.password-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body[data-header-transform="capitalize"] .section-chevron {
  margin-top: 4px;
  margin-right: 10px;
}

/* Listen On The App button for podcast items */
.listen-on-app-btn {
  position: absolute;
  right: 2px;
  bottom: 2px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 13px;
  font-family: "Courier New", Courier, monospace;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.2s ease;
}

/* Show button on hover only when podcast tooltips are disabled */
.podcast-tooltips-disabled .grid__item:hover .listen-on-app-btn {
  opacity: 1;
}

/* Always hide button when podcast tooltips are enabled */
.podcast-tooltips-enabled .listen-on-app-btn {
  display: none !important;
}

/* Apply underline animations to both joke-trigger and standalone-joke-trigger elements */
.underline-metis .joke-trigger::before,
.underline-metis .standalone-joke-trigger::before {
  bottom: 2px !important;
}

.underline-io .joke-trigger::before,
.underline-io .standalone-joke-trigger::before {
  bottom: 2px !important;
}

.underline-io .joke-trigger::after,
.underline-io .standalone-joke-trigger::after {
  bottom: -1px !important;
}

.underline-thebe .joke-trigger::before,
.underline-thebe .standalone-joke-trigger::before {
  bottom: 2px !important;
}

.underline-thebe .joke-trigger::after,
.underline-thebe .standalone-joke-trigger::after {
  bottom: -2px !important;
}

.underline-elara .joke-trigger::before,
.underline-elara .standalone-joke-trigger::before,
.underline-dia .joke-trigger::before,
.underline-dia .standalone-joke-trigger::before,
.underline-kale .joke-trigger::before,
.underline-kale .standalone-joke-trigger::before,
.underline-carpo .joke-trigger::before,
.underline-carpo .standalone-joke-trigger::before,
.underline-helike .joke-trigger::before,
.underline-helike .standalone-joke-trigger::before,
.underline-eirene .joke-trigger::before,
.underline-eirene .standalone-joke-trigger::before {
  bottom: 0px !important;
}

.underline-dia .joke-trigger::after,
.underline-dia .standalone-joke-trigger::after,
.underline-carpo .joke-trigger::after,
.underline-carpo .standalone-joke-trigger::after {
  bottom: -4px !important;
}

.underline-leda .joke-trigger::before,
.underline-leda .standalone-joke-trigger::before {
  bottom: 4px !important;
}

.underline-mneme .joke-trigger::before,
.underline-mneme .standalone-joke-trigger::before {
  bottom: 4px !important;
}

.underline-mneme .joke-trigger::after,
.underline-mneme .standalone-joke-trigger::after {
  bottom: 6px !important;
}

.underline-ersa .joke-trigger::before,
.underline-ersa .standalone-joke-trigger::before {
  top: 45% !important;
}

.underline-leda .joke-trigger span,
.underline-leda .standalone-joke-trigger span {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1) !important;
}

.underline-leda .joke-trigger::after,
.underline-leda .standalone-joke-trigger::after {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1) !important;
}
