@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .blob { animation: none !important; }
  .animate-float, .animate-float-delayed, .animate-pulse, .animate-pulse-slow {
    animation: none !important;
  }
}
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #22c55e, #0ea5e9);
  border-radius: 3px;
}
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.homepage-headline-ticker {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  height: 46px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.homepage-headline-label {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0 1rem;
  background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 55%, #f97316 100%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.homepage-headline-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.homepage-headline-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  animation: homepage-headline-marquee 34s linear infinite;
  will-change: transform;
}

.homepage-headline-ticker:hover .homepage-headline-track {
  animation-play-state: paused;
}

.homepage-headline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 46px;
  padding: 0 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease, background 0.2s ease;
}

.homepage-headline-item:hover {
  color: #86efac;
  background: rgba(255, 255, 255, 0.06);
}

.homepage-headline-item img,
.homepage-headline-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  object-fit: cover;
}

.homepage-headline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #bbf7d0;
}

@keyframes homepage-headline-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gradient-mesh {
  background:
    radial-gradient(at 25% 15%, rgba(34, 197, 94, 0.08) 0px, transparent 45%),
    radial-gradient(at 75% 85%, rgba(14, 165, 233, 0.08) 0px, transparent 45%),
    radial-gradient(at 50% 50%, rgba(249, 115, 22, 0.05) 0px, transparent 50%);
}

.gradient-text-green {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-sky {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-combo {
  background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg-green {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
}

.gradient-bg-sky {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
}

.gradient-bg-orange {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
}
.gradient-bg-combo {
  background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 50%, #f97316 100%);
}

.gradient-shadow-green {
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}

.gradient-shadow-sky {
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.gradient-shadow-orange {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
  will-change: transform;
  contain: strict;
}

.card-hover {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.team-member-hidden {
  display: none;
}

.team-member-visible {
  animation: fade-in 0.4s ease-out forwards;
}

.load-more-btn {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.gallery-container {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallery-main {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}

.gallery-main:hover {
  transform: translateY(-3px);
}

.gallery-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-main-img:hover {
  transform: scale(1.015);
}

.gallery-main-caption {
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.gallery-main-caption h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.gallery-main-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.gallery-thumbnails::-webkit-scrollbar { width: 4px; }
.gallery-thumbnails::-webkit-scrollbar-track { background: #e2e8f0; border-radius: 10px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: #22c55e; border-radius: 10px; }

.thumbnail-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.thumbnail-item:hover {
  transform: translateX(4px);
  border-color: #22c55e;
}

.thumbnail-item.active {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34,197,94,0.15);
}

.thumbnail-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.thumbnail-info {
  padding: 0.75rem;
}

.thumbnail-info h4 {
  font-size: 0.9rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbnail-info p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-thumb {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumb:hover {
    transform: translateX(4px);
    border-color: rgba(34, 197, 94, 0.3);
}

#videoThumbnailsContainer::-webkit-scrollbar {
    width: 4px;
}

#videoThumbnailsContainer::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

#videoThumbnailsContainer::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #22c55e, #0ea5e9);
    border-radius: 10px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#videoPlayerContainer {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

#videoPlayerContainer iframe,
#videoPlayerContainer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.phone-frame {
  border: 8px solid #1e293b;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.1);
  z-index: 10;
  will-change: transform;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #1e293b;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-w-16 iframe,
.aspect-w-16 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lgtop {
  position: absolute;
  top: 3em;
  z-index: 1;
  opacity: 0.15;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container { padding: 1rem; }
  .gallery-main-img { height: 250px; }
  .gallery-main-caption h3 { font-size: 1rem; }
  .gallery-main-caption p { font-size: 0.8rem; }
  .thumbnail-img { height: 70px; }
  .thumbnail-info h4 { font-size: 0.8rem; }
  .thumbnail-info p { font-size: 0.7rem; }
  .glass-card.animate-float,
  .glass-card.animate-float-delayed {
    display: none !important;
  }
}

@media (min-width: 300px) and (max-width: 600px) {
  h1.font-bold.text-xl.text-slate-800.tracking-tight { font-size: 13px; }
  p.text-xs.text-slate-500.font-medium.tracking-wide.uppercase { font-size: 9px; }
}

@media (max-width: 640px) {
  .site-title-container { display: none; }
}

@media (max-width: 300px) {
  .site-title-container { display: none; }
}
.gallery-swipe-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f8fafc;
}

.gallery-swipe-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-swipe-card {
  min-width: 100%;
  position: relative;
  cursor: grab;
  user-select: none;
}

.gallery-swipe-card:active {
  cursor: grabbing;
}

.gallery-swipe-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  pointer-events: none;
}

.gallery-swipe-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  color: white;
}

.gallery-swipe-overlay h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-swipe-overlay p {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.gallery-swipe-views {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-btn.prev {
  left: 20px;
}

.gallery-nav-btn.next {
  right: 20px;
}

.gallery-nav-btn .material-icons-round {
  font-size: 28px;
  color: #1e293b;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.gallery-dot.active {
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
  width: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}
.gallery-thumb-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #22c55e #e2e8f0;
}

.gallery-thumb-strip::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumb-strip::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.gallery-thumb-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  border-radius: 10px;
}

.gallery-thumb-item {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.gallery-thumb-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-thumb-item.active {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-item .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumb-item:hover .thumb-overlay {
  opacity: 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(12px);
}

.gallery-lightbox.hidden {
  display: none;
}

.gallery-lightbox-frame {
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #020617;
}

.gallery-lightbox-frame figcaption {
  width: min(780px, 100%);
  text-align: center;
  color: #fff;
}

.gallery-lightbox-frame h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
}

.gallery-lightbox-frame p {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 56px;
  border-radius: 16px;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-nav.prev {
  left: 18px;
}

.gallery-lightbox-nav.next {
  right: 18px;
}

@keyframes swipe-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.gallery-swipe-hint {
  animation: swipe-hint 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-swipe-card img {
    height: 300px;
  }
  
  .gallery-swipe-overlay {
    padding: 1.5rem;
  }
  
  .gallery-swipe-overlay h3 {
    font-size: 1.2rem;
  }
  
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .gallery-nav-btn.prev {
    left: 10px;
  }
  
  .gallery-nav-btn.next {
    right: 10px;
  }
  
  .gallery-thumb-item {
    width: 80px;
    height: 60px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-frame {
    max-height: calc(100vh - 32px);
  }

  .gallery-lightbox-frame img {
    max-height: calc(100vh - 150px);
    border-radius: 14px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .gallery-lightbox-nav {
    bottom: 18px;
    top: auto;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: scale(1.04);
  }

  .gallery-lightbox-nav.prev {
    left: 18px;
  }

  .gallery-lightbox-nav.next {
    right: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-swipe-card img {
    height: 250px;
  }
  
  .gallery-nav-btn {
    width: 36px;
    height: 36px;
  }
}

.latest-sticky-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.latest-sticky-copy {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 6px 0 24px;
}

.latest-sticky-copy::after {
  content: '';
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #0ea5e9, #f97316);
}

.latest-sticky-list {
  display: grid;
  gap: 22px;
}

.latest-sticky-card {
  min-height: 236px;
}

.latest-sticky-card-link {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
  min-height: 236px;
  height: 100%;
}

.latest-sticky-thumb {
  min-height: 236px;
}

.latest-sticky-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.latest-sticky-cta {
  width: fit-content;
}

.qa-ai-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.qa-ai-intro {
  position: sticky;
  top: 104px;
}

.qa-ai-list {
  display: grid;
  gap: 14px;
}

.qa-ai-item {
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.qa-ai-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.qa-ai-item summary::-webkit-details-marker {
  display: none;
}

.qa-ai-number {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #15803d;
  background: linear-gradient(135deg, #dcfce7, #e0f2fe);
  font-size: 12px;
  font-weight: 900;
}

.qa-ai-question {
  color: #0f172a;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.qa-ai-icon {
  color: #64748b;
  transition: transform 0.2s ease;
}

.qa-ai-item[open] .qa-ai-icon {
  transform: rotate(180deg);
}

.qa-ai-answer {
  padding: 0 20px 20px 74px;
}

.qa-ai-answer p {
  color: #475569;
  line-height: 1.75;
  margin: 0 0 16px;
}

.qa-ai-ask {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.qa-ai-ask:hover {
  background: #dcfce7;
}

.qa-ai-button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .latest-sticky-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .latest-sticky-copy {
    position: static;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .latest-sticky-copy::after {
    margin-left: auto;
    margin-right: auto;
  }

  .latest-sticky-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .latest-sticky-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .latest-sticky-card-link {
    display: flex;
    flex-direction: column;
  }

  .latest-sticky-thumb {
    min-height: 190px;
    height: 190px;
  }

  .qa-ai-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .qa-ai-intro {
    position: static;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .homepage-headline-ticker {
    height: 42px;
  }

  .homepage-headline-label {
    padding: 0 0.7rem;
    font-size: 0.64rem;
  }

  .homepage-headline-track {
    animation-duration: 28s;
  }

  .homepage-headline-item {
    height: 42px;
    padding: 0 0.85rem;
    font-size: 0.78rem;
  }

  .homepage-headline-item img,
  .homepage-headline-icon {
    width: 24px;
    height: 24px;
  }

  .latest-sticky-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .latest-sticky-list {
    grid-template-columns: 1fr;
  }

  .latest-sticky-card,
  .latest-sticky-card-link {
    min-height: 0;
  }

  .qa-ai-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .qa-ai-item summary {
    grid-template-columns: auto 1fr auto;
    padding: 15px;
    gap: 10px;
  }

  .qa-ai-number {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .qa-ai-question {
    font-size: 14px;
  }

  .qa-ai-answer {
    padding: 0 15px 16px 59px;
  }
}
