/* ==========================================================================
   KOMPACT AI PODCAST PAGE STYLESHEET (podcast.css)
   ========================================================================== */

:root {
  --font-sora: "Sora", sans-serif;
  --font-head: "Sora", sans-serif;
  --font-sans: "DM Sans", "Inter", -apple-system, sans-serif;
  --font-body: "DM Sans", "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Space Mono", monospace;
  --font-btn: "JetBrains Mono", "DM Sans", monospace, sans-serif;
  
  --bg-dark: #0D0B0B;
  
  --primary: #FFCE1B;
  --accent-yellow: #FFCE1B;
  --secondary: #FB1650;
  --accent-red: #FB1650;
  
  --border-light: rgba(255, 255, 255, 0.10);
  --border-mid: rgba(255, 255, 255, 0.20);
  
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-dimmer: rgba(255, 255, 255, 0.45);
  
  --max-w: 1376px;
  --px: 64px;
  --radius-card: 12px;
  --radius-btn: 4px;
}

/* Base Reset & Typography */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html, body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sora);
  font-weight: 300;
  margin: 0;
}

/* ==========================================================================
   DESKTOP PAGE MARGINS FRAME (.page-margins)
   ========================================================================== */
.page-margins {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w, 1376px);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  pointer-events: none;
  z-index: 99;
}

@media (max-width: 1024px) {
  .page-margins {
    display: none !important;
  }
}

/* Main Layout Wrapper */
.podcast-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Outer Mobile Page Wrapper for unbroken continuous left/right side borders */
.podcast-mobile-page-wrapper {
  width: 100%;
  display: block;
}

.podcast-main-content {
  flex: 1;
  position: relative;
  z-index: 2;
  width: 100%;
}

.podcast-container {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   HERO SECTION (FULL VIEWPORT WIDTH DIVIDER LINE AT BOTTOM)
   ========================================================================== */
.podcast-hero-section {
  position: relative;
  padding: 110px 0 60px 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  /* Full-width horizontal divider line matching Figma sitewide section dividers */
  border-bottom: 1px solid var(--border-light);
}

/* Ambient Radial Glow & Ellipse Background Asset (Visible on Desktop) */
.podcast-hero-glow-container {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-glow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: blur(8px);
}

.podcast-glow-radial {
  position: absolute;
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(208, 79, 32, 0.35) 0%, rgba(160, 45, 20, 0.15) 50%, transparent 75%);
  filter: blur(50px);
  border-radius: 50%;
}

.podcast-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Kompact AI Podcast Badge (White Text) */
.podcast-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ffffff !important; /* Text white */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.podcast-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-red);
}

/* Clean, centered "Podcasts" title */
.podcast-hero-title {
  font-family: var(--font-sora);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.podcast-hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 680px;
  margin: 16px auto 0 auto;
}

/* ==========================================================================
   PODCAST CONTAINER BOX & LINE-BY-LINE CARDS
   ========================================================================== */
.podcast-grid-section {
  padding: 50px 0 100px 0;
  position: relative;
  z-index: 2;
}

/* Outer Bordered Box Enclosing All Rows (Uses Page Background Color Only) */
.podcast-card-wrapper-box {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: transparent; /* No custom background color; uses page background */
  overflow: hidden;
}

.podcast-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Single Episode Row */
.podcast-card-row {
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.podcast-card-row:last-child {
  border-bottom: none;
}

.podcast-card-row:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

.podcast-card-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 32px 36px;
}

/* Thumbnail Link & Image (Left Side) */
.podcast-thumb-link {
  width: 320px;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
}

.podcast-thumb-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.podcast-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Hover Effect: Zoom & Brighten Thumbnail */
.podcast-thumb-link:hover .podcast-thumb-img,
.podcast-card-row:hover .podcast-thumb-img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* Details Section (Right Side) */
.podcast-details-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.podcast-row-title {
  font-family: var(--font-sora);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.4;
  margin: 0;
}

.podcast-row-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.podcast-thumb-link:hover ~ .podcast-details-container .podcast-row-title a,
.podcast-row-title a:hover {
  color: var(--accent-yellow);
}

/* Episode Description Text */
.podcast-row-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

/* Duration Row with Red Clock Icon */
.podcast-duration-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sora);
  font-size: 13px;
  color: var(--text-dimmer);
}

.podcast-clock-icon {
  flex-shrink: 0;
}

.podcast-duration-text {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
}

/* Social Icons Row */
.podcast-row-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.podcast-row-socials .social-icon {
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 0.5px solid rgba(255, 255, 255, 0.20) !important;
  transition: border-color 0.18s, background 0.18s, transform 0.18s !important;
  text-decoration: none !important;
}

.podcast-row-socials .social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: scale(1.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Continuous Unbroken Side Borders Wrapper (< 1024px) */
@media (max-width: 1024px) {
  .podcast-mobile-page-wrapper {
    display: block !important;
    width: calc(100% - 48px) !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .podcast-hero-section {
    padding: 80px 0 40px 0;
  }

  /* Padding 0 so horizontal line dividers touch the side borders directly */
  .podcast-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
  }

  .podcast-card-wrapper-box {
    max-width: 100% !important;
    width: 100% !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
  }

  /* Horizontal lines stretch 100% to touch left & right side borders */
  .podcast-card-row {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  }

  .podcast-card-inner {
    padding: 24px 20px !important;
    gap: 28px;
  }

  .podcast-thumb-link {
    width: 280px;
  }
}

@media (max-width: 767px) {
  .podcast-mobile-page-wrapper {
    width: calc(100% - 40px) !important;
  }

  /* Remove hero ellipse background image & glow on mobile screens only */
  .podcast-hero-glow-container,
  .podcast-glow-image,
  .podcast-glow-radial {
    display: none !important;
  }

  .podcast-container {
    padding: 0 !important;
  }

  .podcast-card-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px !important;
    gap: 20px;
  }
  .podcast-thumb-link {
    width: 100%;
  }
  .podcast-row-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   SITEWIDE FOOTER STYLES (Verbatim copy from philosophy.css)
   ========================================================================== */

.footer {
  position: relative;
  z-index: 10;
  background: #140B0B !important;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.footer-inner {
  width: calc(100% - calc(var(--px, 64px) * 2)) !important;
  max-width: var(--max-w, 1376px) !important;
  margin: 0 auto !important;
  padding: 40px 40px !important;
  box-sizing: border-box !important;
}

/* Footer Top Nav Row */
.footer-nav-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 40px !important;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.15) !important;
  margin-bottom: 48px !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.footer-nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
}

.footer-nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.18s !important;
}

.footer-nav-link:hover {
  color: #ffffff !important;
}

.footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.social-icon {
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 0.5px solid rgba(255, 255, 255, 0.20) !important;
  transition: border-color 0.18s, background 0.18s !important;
  text-decoration: none !important;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Footer Bottom Row: Big K logo + addresses + ZIROHLabs */
.footer-bottom-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  margin-bottom: 0 !important;
}

.footer-big-logo {
  flex-shrink: 0 !important;
}

.big-k-square {
  width: 120px !important;
  height: 120px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  color: #000 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
}

.footer-addresses {
  display: flex !important;
  gap: 60px !important;
  flex: 1 !important;
  padding: 0 60px !important;
}

.footer-address {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.footer-city {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
}

.footer-addr-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 20px !important;
  margin: 0 !important;
}

.footer-ziroh {
  flex-shrink: 0 !important;
}

.ziroh-logo {
  height: 36px !important;
  width: auto !important;
  filter: none !important;
  transition: filter 0.18s !important;
}

.ziroh-logo:hover {
  filter: brightness(1.2) !important;
}

/* Footer Legal Section */
.footer-legal {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 40px !important;
  margin-top: 40px !important;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15) !important;
}

.footer-legal-links {
  display: flex !important;
  gap: 32px !important;
}

.footer-legal-links a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  transition: color 0.18s !important;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin: 0 !important;
}

/* ── Tablet Footer (768px - 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 32px 24px !important;
    border-left: none !important;
    border-right: none !important;
  }

  .footer-bottom-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr auto !important;
    row-gap: 40px !important;
    align-items: start !important;
  }

  .footer-addresses {
    grid-column: 1 / 3 !important;
    padding: 0 !important;
  }

  .footer-address {
    margin-left: 0 !important;
    flex: 1 !important;
  }

  .footer-big-logo {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .footer-ziroh {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }
}

/* ════════════════════════════════════════════════
   MOBILE FOOTER OVERRIDES (<= 1024px / <= 767px)
   Verbatim from philosophy.css
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  body .footer,
  body footer.footer,
  body footer#footer,
  .footer,
  #footer {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #1c1414 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 10 !important;
  }

  body .footer .footer-inner,
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 32px 20px !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
  }

  /* Top Nav Row */
  body .footer .footer-nav-row,
  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-links,
  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-link,
  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* Social Icons */
  body .footer .footer-socials,
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body .footer .social-icon,
  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .social-icon svg path,
  body .footer .social-icon svg circle,
  .social-icon svg path,
  .social-icon svg circle {
    stroke: #000000 !important;
    fill: #000000 !important;
  }

  body .footer .social-icon svg path[fill="none"],
  .social-icon svg path[fill="none"] {
    fill: none !important;
  }

  /* Middle Row: Addresses & Logos */
  body .footer .footer-bottom-row,
  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Addresses: Left (Bengaluru) & Right (Palo Alto) */
  body .footer .footer-addresses,
  .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-address:first-child,
  .footer-address:first-child {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-address:last-child,
  body .footer .footer-address:nth-child(2),
  .footer-address:last-child,
  .footer-address:nth-child(2) {
    flex: 1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-city,
  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  body .footer .footer-addr-text,
  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ZIROHLabs Logo: Below Addresses, Left Aligned */
  body .footer .footer-ziroh,
  .footer-ziroh {
    order: 2 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 24px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    text-align: left !important;
  }

  body .footer .ziroh-logo,
  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Big K. Square Logo: Below ZIROHLabs Logo, Left Aligned */
  body .footer .footer-big-logo,
  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
  }

  body .footer .big-k-square,
  .big-k-square {
    width: 72px !important;
    height: 72px !important;
    border-radius: 4px !important;
    display: block !important;
    margin-left: 0 !important;
  }

  /* Bottom Legal Section */
  body .footer .footer-legal,
  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-legal-links,
  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    order: 1 !important;
    width: 100% !important;
  }

  body .footer .footer-legal-links a,
  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .footer-copyright,
  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    order: 2 !important;
    width: 100% !important;
    text-align: left !important;
  }
}
