.hamburgerMenu {
  height: 2px;
  width: 28px;
  background-color: white;
  position: relative;
}
:global(.hamburgerMenu.active::after) {
  content: '';
  width: 10px;
}
.hamburgerMenu::after {
  content: '';
  width: 28px;
  position: absolute;
  height: 2px;
  top: -6px;
  background-color: white;
}
.hamburgerMenu::before {
  content: '';
  width: 18px;
  position: absolute;
  height: 2px;
  top: 6px;
  background-color: white;
}

.tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}
.animate-shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.transition-height {
    transition: height 0.5s ease-in-out;
}

.lazy-video-container {
    position: relative;
    display: inline-block;
}

.lazy-video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
}

/* Hide video before it loads to avoid flickering */
.lazy-video:not([src]) {
    visibility: hidden;
}

.loading-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    color: #666;
    z-index: 1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.article {
    padding-top: 100px;
  }
  .article span {
    font-weight: 600 !important;
  }
  .article h1  {
    font-size: 32px;
    font-weight: 600;
    font-family: "Excon";
    color: var(--color-primary-950);
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .article h2:not(.notuse) {
    font-size: 26px;
    font-weight: 500;
    font-family: "Excon";
    color: var(--color-primary-950);
    margin-top: 32px;
    margin-bottom: 20px;
  }
  .article h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: "Excon";
    color: var(--color-primary-950);
    margin-top: 26px;
    margin-bottom: 18px;
  }
  .article h4 {
    font-size: 18px;
    font-weight: 400;
    font-family: "Excon";
    color: var(--color-primary-950);
    margin-top: 22px;
    margin-bottom: 14px;
  }
  .article p {
    font-size: 16px;
    line-height: 145%;
    color: var(--color-neutral-600);
    letter-spacing: 1%;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  .article ol {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: decimal;
  }
  .article ol li {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 145%;
    color: var(--color-neutral-600);
    letter-spacing: 1%;
    vertical-align: middle;
    padding: 0px 0px 0px 10px;
    position: relative;
  }
  .article ul {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .article ul li {
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 145%;
    color: var(--color-neutral-600);
    letter-spacing: 1%;
    vertical-align: middle;
    padding: 0px 0px 0px 4px;
    position: relative;
  }
  .article ul li::before {
    content: '';
    background: url('./images/tick-orange-article.svg') center/cover;
    width: 19px;
    height: 19px;
    display: inline-flex;
    position: absolute;
    left: -24px;
    top: 2px;
  }
  .article figure {
    display: flex;
    justify-content: center;
  }
  .article img {
    border-radius: 16px;
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .article a {
    position: relative;
  }
  .article a::after:not(#to-share) {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-600);
    bottom: -4px;
    left: 0;
  }
  .article table {
    width: 100%;
    margin: 10px 0;
    border-radius: 12px;
    padding: 8px;
    position: relative;
  }
  .article table td {
    padding: 12px 16px !important;
    border: 1.5px solid #d3d3d3;
    color: var(--color-zinc-600);
  }
  .article table td p strong {
    color: var(--color-primary-950) !important;
  }
  .article table::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #E44412;
  }
  @media (max-width: 1024px) {
    .article {
      margin-top: 60px;
    }
    .article img {
      border-radius: 16px;
      margin-top: 35px;
      margin-bottom: 35px;
    }
    .article h1  {
      font-size: 30px;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .article h2 {
      font-size: 24px;
    }
    .article h3 {
      font-size: 20px;
    }
    .article h4 {
      font-size: 18px;
    }
    .article p {
      font-size: 16px;
    }
    .article ul li {
      font-size: 16px;
    }
    .article ol li {
      font-size: 16px;
    }
    .article ol {
      margin-top: 12px;
      margin-bottom: 12px;
    }
    .article ul {
      margin-top: 12px;
      margin-bottom: 12px;
    }
  }
  @media (max-width: 640px) {
    .article {
      margin-top: 40px;
    }
    .article img {
      border-radius: 12px;
      margin-top: 28px;
      margin-bottom: 0px;
    }
    .article h1  {
      font-size: 30px;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .article h2 {
      margin-top: 30px;
      margin-bottom: 24px;
    }
    .article h3 {
      margin-top: 26px;
      margin-bottom: 18px;
    }
    .article h4 {
      margin-top: 22px;
      margin-bottom: 12px;
    }
    .article ol {
      margin-top: 6px;
      margin-bottom: 6px;
    }
    .article ul {
      margin-top: 6px;
      margin-bottom: 6px;
    }
  }