/* ============================================================
   POD Studio — Design System v2
   Palette: one purple family, warm violet accent, lavender tints
   ============================================================ */

:root {
  --pod-bg: #FDFCFF;
  --pod-bg-soft: #F6F2FC;
  --pod-card: #FFFFFF;
  --pod-purple: #713ABE;
  --pod-purple-dark: #5B0888;
  --pod-purple-light: #8B4FD6;
  --pod-violet: #A855F7;
  --pod-purple-soft: #F1EAFB;
  --pod-text: #241832;
  --pod-text-muted: #6F6582;
  --pod-border: #EAE3F4;
  --pod-gradient-purple: linear-gradient(135deg, #5B0888, #713ABE 45%, #A855F7);
  --pod-gradient-light: linear-gradient(135deg, #EFE9F8, #FFFFFF);
  --pod-shadow-sm: 0 2px 8px rgba(36, 24, 50, 0.06);
  --pod-shadow-md: 0 12px 32px rgba(36, 24, 50, 0.09);
  --pod-shadow-lg: 0 28px 64px rgba(91, 8, 136, 0.16);
  --pod-shadow-purple: 0 10px 28px rgba(113, 58, 190, 0.35);
  --pod-radius: 20px;
  --pod-radius-sm: 12px;
  --font-display: 'Sora', 'Poppins', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--pod-bg);
  color: var(--pod-text);
  font-family: var(--font-body);
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

::selection {
  background: var(--pod-purple);
  color: #fff;
}

a {
  color: var(--pod-purple-light);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--pod-purple);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pod-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.text-gradient {
  background: var(--pod-gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ Buttons ============ */
.btn-primary, .btn-pod {
  position: relative;
  overflow: hidden;
  background: var(--pod-gradient-purple);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--pod-shadow-purple);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary::after, .btn-pod::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}

.btn-primary:hover, .btn-pod:hover,
.btn-primary:focus, .btn-pod:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(113, 58, 190, 0.45);
}

.btn-primary:hover::after, .btn-pod:hover::after {
  left: 130%;
}

.btn-outline-pod {
  border: 1.5px solid rgba(113, 58, 190, 0.4);
  color: var(--pod-purple);
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: all .2s ease;
}

.btn-outline-pod:hover {
  background: var(--pod-gradient-purple);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--pod-shadow-purple);
}

.btn-light {
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ============ Header / Nav ============ */
.pod-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(253, 252, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.pod-header.scrolled {
  border-bottom-color: var(--pod-border);
  box-shadow: var(--pod-shadow-sm);
}

.pod-navbar {
  padding: 0.9rem 0;
}

.pod-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pod-text);
  letter-spacing: 1px;
}

.pod-brand-dot {
  color: var(--pod-purple);
}

.pod-brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.pod-nav .nav-link {
  color: var(--pod-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  position: relative;
}

.pod-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--pod-gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.pod-nav .nav-link:hover,
.pod-nav .nav-link.active {
  color: var(--pod-text);
}

.pod-nav .nav-link:hover::after,
.pod-nav .nav-link.active::after {
  transform: scaleX(1);
}

.pod-nav .btn-contact {
  background: var(--pod-gradient-purple);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600;
  box-shadow: var(--pod-shadow-purple);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pod-nav .btn-contact::after {
  display: none;
}

.pod-nav .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(113, 58, 190, 0.45);
}

.admin-nav .nav-link {
  color: var(--pod-text-muted);
}

.admin-nav .nav-link:hover {
  color: var(--pod-purple-light);
}

/* ============ Sections ============ */
.pod-section {
  padding: 5.5rem 0;
}

.pod-section-soft {
  background-color: var(--pod-bg-soft);
}

.pod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pod-purple);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(113, 58, 190, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.pod-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pod-gradient-purple);
}

.pod-section-head {
  margin-bottom: 3rem;
}

.pod-section-head p {
  color: var(--pod-text-muted);
  max-width: 560px;
  margin-bottom: 0;
}

/* ============ Hero ============ */
.pod-hero {
  position: relative;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.pod-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113, 58, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 58, 190, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 30%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 30%, #000 25%, transparent 75%);
  pointer-events: none;
}

.pod-hero .container {
  position: relative;
  z-index: 1;
}

.pod-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.1;
}

.pod-hero p.lead {
  color: var(--pod-text-muted);
  font-size: 1.13rem;
  max-width: 540px;
}

/* Animated gradient blobs */
.pod-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.pod-blob-1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.35), rgba(113, 58, 190, 0.18) 55%, transparent 75%);
  animation: blobFloat 14s ease-in-out infinite;
}

.pod-blob-2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle at 60% 40%, rgba(139, 79, 214, 0.28), rgba(91, 8, 136, 0.12) 55%, transparent 75%);
  animation: blobFloat 18s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* Hero image + floating badges */
.pod-hero-visual {
  position: relative;
}

.pod-hero-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(113, 58, 190, 0.18);
  background: var(--pod-gradient-light);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pod-shadow-lg);
}

.pod-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.pod-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pod-float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(113, 58, 190, 0.18);
  border-radius: 14px;
  padding: 0.65rem 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pod-text);
  box-shadow: var(--pod-shadow-md);
  animation: floatY 6s ease-in-out infinite;
}

.pod-float-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pod-gradient-purple);
}

.pod-float-badge.badge-1 { top: 8%; left: -26px; }
.pod-float-badge.badge-2 { bottom: 12%; right: -20px; animation-delay: 1.6s; }
.pod-float-badge.badge-3 { top: 48%; right: -34px; animation-delay: 3.2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero stats */
.pod-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pod-border);
}

.pod-stat .pod-stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--pod-gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pod-stat .pod-stat-label {
  color: var(--pod-text-muted);
  font-size: 0.85rem;
}

/* ============ Marquee band ============ */
.pod-marquee {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--pod-border);
  border-bottom: 1px solid var(--pod-border);
  background: #fff;
  position: relative;
}

.pod-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.pod-marquee-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.pod-marquee-group span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  color: var(--pod-text);
}

.pod-marquee-group span.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(113, 58, 190, 0.55);
}

.pod-marquee-group .star {
  color: var(--pod-violet);
  font-size: 1.1rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.pod-marquee:hover .pod-marquee-track {
  animation-play-state: paused;
}

/* ============ Service cards ============ */
.pod-service-card {
  position: relative;
  display: block;
  background: var(--pod-card);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius);
  padding: 2.1rem 1.9rem;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--pod-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.pod-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pod-gradient-purple);
  opacity: 0;
  transition: opacity .35s ease;
}

.pod-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pod-shadow-lg);
}

.pod-service-card:hover::before {
  opacity: 1;
}

.pod-service-card > * {
  position: relative;
}

.pod-service-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(113, 58, 190, 0.3);
  margin-bottom: 1.4rem;
  transition: -webkit-text-stroke .35s ease;
}

.pod-service-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  transition: color .35s ease;
}

.pod-service-card p {
  color: var(--pod-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  transition: color .35s ease;
}

.pod-service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pod-purple);
  transition: color .35s ease;
}

.pod-service-card:hover .pod-service-num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.pod-service-card:hover h5 {
  color: #fff;
}

.pod-service-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.pod-service-card:hover .pod-service-link {
  color: #fff;
}

/* ============ Cards ============ */
.pod-card {
  position: relative;
  background-color: var(--pod-card);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--pod-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pod-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--pod-gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.pod-card:hover {
  transform: translateY(-8px);
  border-color: rgba(113, 58, 190, 0.3);
  box-shadow: var(--pod-shadow-lg);
}

.pod-card:hover::after {
  transform: scaleX(1);
}

.pod-card-img-wrap {
  overflow: hidden;
}

.pod-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--pod-gradient-light);
  object-fit: cover;
  transition: transform .55s ease;
}

.pod-card:hover .pod-card-img {
  transform: scale(1.06);
}

.pod-card-body {
  padding: 1.4rem;
}

.pod-card-category {
  color: var(--pod-purple);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.pod-card-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--pod-text);
  margin: 0.45rem 0;
  letter-spacing: -0.01em;
}

.pod-card-desc {
  color: var(--pod-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pod-card-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pod-gradient-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(8px, -8px) rotate(-20deg);
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: var(--pod-shadow-purple);
}

.pod-card:hover .pod-card-arrow {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
}

/* ============ Category pills ============ */
.pod-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--pod-border);
  color: var(--pod-text-muted);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0 0.5rem 0.5rem 0;
  transition: all .2s ease;
  box-shadow: var(--pod-shadow-sm);
}

.pod-pill:hover {
  border-color: var(--pod-purple);
  color: var(--pod-purple);
  transform: translateY(-2px);
}

.pod-pill.active {
  background: var(--pod-gradient-purple);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--pod-shadow-purple);
}

.pod-pill.active:hover {
  color: #fff;
}

/* ============ About / value cards ============ */
.pod-value-card {
  background-color: var(--pod-card);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--pod-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pod-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(113, 58, 190, 0.3);
  box-shadow: var(--pod-shadow-md);
}

.pod-value-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--pod-gradient-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--pod-shadow-purple);
}

/* ============ Project detail ============ */
.pod-project-gallery img {
  width: 100%;
  border-radius: var(--pod-radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--pod-border);
  box-shadow: var(--pod-shadow-md);
}

/* ============ CTA box ============ */
.pod-cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--pod-purple-dark), var(--pod-purple) 55%, var(--pod-violet));
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--pod-shadow-lg);
}

.pod-cta-box::before,
.pod-cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.pod-cta-box::before {
  width: 340px;
  height: 340px;
  top: -150px;
  right: -80px;
}

.pod-cta-box::after {
  width: 250px;
  height: 250px;
  bottom: -130px;
  left: -60px;
}

.pod-cta-box h2, .pod-cta-box h3 {
  color: #fff;
  position: relative;
}

.pod-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* ============ Contact / Forms ============ */
.pod-form-card {
  background: var(--pod-card);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius);
  padding: 2.5rem;
  box-shadow: var(--pod-shadow-md);
}

.pod-form .form-control {
  background-color: var(--pod-bg-soft);
  border: 1.5px solid transparent;
  color: var(--pod-text);
  border-radius: var(--pod-radius-sm);
  padding: 0.8rem 1.1rem;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.pod-form .form-control:focus {
  background-color: var(--pod-card);
  color: var(--pod-text);
  border-color: var(--pod-purple);
  box-shadow: 0 0 0 0.25rem rgba(113, 58, 190, 0.12);
}

.pod-form label {
  color: var(--pod-text);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

/* ============ Footer ============ */
.pod-footer {
  position: relative;
  background: linear-gradient(180deg, var(--pod-bg) 0%, var(--pod-bg-soft) 60%, #EFE7F9 100%);
  border-top: 1px solid var(--pod-border);
  padding: 4.5rem 0 2rem;
  margin-top: 5rem;
  overflow: hidden;
}

.pod-footer::before {
  content: "POD";
  position: absolute;
  right: -1.5rem;
  bottom: -4rem;
  font-family: var(--font-display);
  font-size: 17rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(113, 58, 190, 0.09);
  pointer-events: none;
  user-select: none;
}

.pod-footer .container {
  position: relative;
}

.footer-heading {
  color: var(--pod-text);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-text, .footer-copy {
  color: var(--pod-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--pod-text-muted);
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
  color: var(--pod-purple);
  padding-left: 4px;
}

.footer-divider {
  border-color: rgba(113, 58, 190, 0.15);
  margin: 2.5rem 0 1.5rem;
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 991.98px) {
  .pod-float-badge { display: none; }
  .pod-footer::before { font-size: 9rem; bottom: -2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pod-blob, .pod-float-badge, .pod-marquee-track {
    animation: none;
  }
  .pod-card, .pod-value-card, .pod-service-card, .btn-pod, .btn-primary, .btn-outline-pod, .pod-pill {
    transition: none;
  }
}

/* ============ Admin layout helpers ============ */
.admin-sidebar {
  background-color: var(--pod-bg-soft);
  min-height: 100vh;
  border-right: 1px solid var(--pod-border);
}

.admin-sidebar a {
  color: var(--pod-text-muted);
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 10px;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
  background-color: var(--pod-card);
  color: var(--pod-text);
}

.admin-content {
  background-color: var(--pod-bg);
  min-height: 100vh;
  padding: 2rem;
}

/* Admin tables */
.pod-table {
  background-color: var(--pod-card);
  color: var(--pod-text);
}

.pod-table thead th {
  color: var(--pod-text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  border-bottom: 1px solid var(--pod-border);
  background-color: transparent;
}

.pod-table tbody tr {
  border-bottom: 1px solid var(--pod-border);
}

.pod-table tbody tr:hover {
  background-color: var(--pod-bg-soft);
}

.pod-table td, .pod-table th {
  background-color: transparent;
  color: var(--pod-text);
  --bs-table-bg: transparent;
  --bs-table-color: var(--pod-text);
}
