body {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
}
html, body {
  min-height: 100%;
  height: auto;
  overflow-y: auto !important;
}
main, #content, .content, .page-content, .page-wrapper {
  min-height: 100%;
  height: auto;
  overflow: visible !important;
}
.home-page,
.home-page h1, .home-page h2, .home-page h3, .home-page h4, .home-page h5, .home-page h6,
.home-page p, .home-page ul, .home-page li, .home-page span, .home-page div, .home-page input, .home-page button {
  color: #666666 !important;
}

.home-page .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  vertical-align: middle;
  margin-right: 8px;
  color: #333;
}

.lazy-section {
  display: block;              /* keep layout height so scrolling is possible */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
  will-change: opacity, transform;
}

.lazy-section.lazy-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .lazy-section {
    transition: none;
    transform: none;
  }
}

.hero-band{
  background:#fff;
  padding: 50px 0 146px;
  overflow: visible;
}
.hero-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem 1rem;
}
.hero-section h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  line-height:1.15;
}
.hero-subtitle{
  font-size:18px;
  color:#555;
  margin-top:0.25rem;
  margin-bottom:1.2rem;
}
.hero-section{
  padding: 0 0.9rem 1rem;
}

@media (max-width: 768px){
  .hero-section h1{
    font-size: 26px;
    line-height: 1.15;
  }
  .hero-subtitle{
    font-size: 15px;
    line-height: 1.4;
  }
  .search-box input{
    font-size: 18px;
  }
  .search-bar input::placeholder{
    font-size: 16px;
  }
}
@media (max-width: 600px){
  .hero-section h1{
    font-size: 24px;
    line-height: 1.2;
    display: inline;
  }
  .hero-subtitle{
    font-size: 14px;
  }
  .search-box input{
    font-size: 16px;
  }
  .search-bar input::placeholder{
    font-size: 14px;
  }
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 7px solid #f7f7cc;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  max-width: 690px;
  margin: 0 auto 0rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
.search-box input {
  border: none;
  flex: 1;
  font-size: 22px;
  outline: none;
  padding: 0.5rem 0;
  width: 100%;
  color:#444;
}
.search-bar i {
  font-size: 20px;
  margin-right: 1.2rem;
  color: #333;
}
.search-bar input::placeholder {
  font-size: 18px;
  color: #888;
  opacity: 1;
}

.category-buttons-wrapper {
  max-width: 700px;
  margin: 8px auto 0;
}
.category-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  justify-items: stretch;
}
.category-buttons button{
  width:100%;
  min-width:0;
  background:#fdfdc6;
  padding:0 1.6rem;
  font-size:22px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  height:92px;
  color:#444;
}
.category-buttons button:hover {
  background:#f4f4b8;
  transform:scale(1.05);
}
@media (max-width:820px){
  .category-buttons{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width:768px){
  .category-buttons button{ 
    height:70px; 
    font-size:20px; 
    padding: 0 1.2rem;
  }
}
/* Force 2x2 on small widths even if other styles override */
@media (max-width:820px){
  .category-buttons{
    display:grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
  }
  .category-buttons button{
    width:100% !important;
    min-width:0 !important;
  }
}
@media (max-width:480px){
  .category-buttons button{ 
    height:70px; 
    font-size:20px;
  }
}

.info-highlight {
  background-color: #fffccf;
  position: relative;
  padding: 0rem 1rem 0rem;
  margin-top: 0;
  overflow: visible;
}
.info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.info-img {
  flex: 0 0 380px;
  position: relative;
  margin-top: -100px;
  z-index: 2;
  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.info-img img {
  width: 100%;
  max-width: 380px;
}
.info-text {
  flex: 1;
  padding-left: 2rem;
  max-width: 500px;
}
.info-text strong {
  font-size: 28px;
  display: block;
  margin-bottom: 0.8rem;
  color: #222;
}
.info-text ul {
  padding-left: 1.2rem;
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .info-content { flex-direction: column; text-align: center; }
  .info-text { padding: 2rem 1rem 0; }
  .info-img { margin-top: -80px; }

  /* Bot carousel section: stack image on top, text below on mobile */
  .bot-section .bot-inner[style*="grid-template-columns: 1fr 1fr"],
  .bot-section .bot-inner[style*="grid-template-columns: .9fr 1.1fr"] {
    grid-template-columns: 1fr !important;
  }

  .bot-carousel {
    order: -1;
  }
}

.fun-facts-wrapper {
  background-color: #f3f2f2;
  border-top: none;
  border-bottom: none;
  padding: 2rem 0;
  overflow: visible;
}

.logo-img {
  max-width: 200px;
  max-height: 60px;
  height: auto;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.suggestions div {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size:16px;
  color:#444;
}
.suggestions div:hover { background: #f0f0f0; }
.suggestions i { color: #333; }

.audience-cta {
  max-width: 1100px; margin: 4rem auto 2rem; padding: 0 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.aud-card {
  position: relative;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  gap: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.aud-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}
.aud-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 .2rem;
  color:#222;
}
.aud-copy {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 .8rem;
  color:#444;
}
.aud-bubbles { display: flex; flex-wrap: wrap; gap: .6rem; }
.bubble-cta {
  display: inline-flex; align-items: center; gap:.4rem;
  padding: .55rem .95rem; border-radius: 999px; text-decoration: none;
  font-weight:700; border: 1px solid rgba(0,0,0,0.06); background:#fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .15s ease, background .15s ease, color .15s ease;
  color:#555;
}
.bubble-cta:hover {
  transform: translateY(-1px);
  background:#f8f8f8;
}
.aud-illus {
  justify-self: end;
  width: 120px; height: 120px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  display:flex; align-items:center; justify-content:center;
}
.aud-illus .material-symbols-outlined {
  font-size: 56px; margin:0;
}

.aud-landlord { background: #fffde7; border: 7px solid #f7f7cc; }
.aud-seeker   { background: #f3f6ff; border: 7px solid #e7eefc; }

@media (max-width: 900px){
  .aud-card { grid-template-columns: 1fr; }
  .aud-illus {
    justify-self: start;
    width: 100%; height: 90px;
    border-radius: 12px;
  }
}

:root{
  --accent: #2f8652;
  --card-bg: #ffffff;
  --card-radius: 18px;
}

.feature-duo{
  max-width: 1100px;
  margin: 3.5rem auto 2rem;
  padding: 0 1rem;
  display: grid;
  gap: 48px;
}
.duo-row{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.duo-row:nth-child(even){
  grid-template-columns: 1fr 1.1fr;
}
.duo-row:nth-child(even) .duo-text{ order: 2; }
.duo-row:nth-child(even) .duo-media{ order: 1; }

.duo-text h3{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 .6rem;
  color: var(--accent);
  font-weight: 800;
}
.duo-text p{
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 1rem;
  color:#444;
}
.duo-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:.6rem;
}

.pill-btn{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.55rem .95rem;
  height:72px;
  border-radius:999px;
  border:0px solid rgba(0,0,0,.12);
  background:#ffffff;
  text-decoration:none;
  font-weight:700;
  color:#797979;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.pill-btn:hover{
  transform:translateY(-1px);
  background:#eeeeee;
  color:#797979;
}
.pill-btn .material-symbols-outlined{ color:inherit; margin:0; }

.duo-media{
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.duo-card{
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: visible;
  min-height: 280px;
  box-shadow:none !important;
  border:1px solid #ececec;
}
.duo-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.duo-media::after{
  content:none !important;
}

@media (max-width: 960px){
  .duo-row,
  .duo-row:nth-child(even){
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .duo-text, .duo-media{ order: initial; }
  .duo-media{
    justify-self: stretch;
    max-width: 100%;
  }
}

.bot-section{
  background:#f3f2f2;
  border-top:none;
  border-bottom:none;
}
.bot-inner{
  max-width:1150px;
  margin:0 auto;
  padding:48px 16px;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:28px;
  align-items:center;
}
.bot-hero img{
  width:100%;
  max-width:420px;
  display:block;
  margin:0 auto;
  animation:botFloat 3s ease-in-out infinite;
}
@keyframes botFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.bot-copy h2{
  margin:0 0 .4rem;
  font-size:34px;
  font-weight:800;
  color:#1f4f3c;
  line-height:1.2;
}
.bot-copy p.lead{
  margin:.2rem 0 1rem;
  font-size:18px;
  color:#555;
}
.bot-points{
  display:grid;
  gap:.45rem;
  margin: .6rem 0 1rem;
}
.bot-point{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
}
.bot-point .material-symbols-outlined{
  font-size:22px;
  color:#2f8652;
  margin:0;
}
.bot-point span{ color:#444; }

.bot-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.bot-card{
  background:#ffffff;
  border:1px solid #e8e8e8;
  border-radius:14px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.bot-card:hover{
  transform: translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  border-color:#e3e2c2;
}
.bot-chip{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#fffde7;
  border:2px solid #f7f7cc;
}
.bot-chip .material-symbols-outlined{
  font-size:24px;
  color:#5f6f52;
  margin:0;
}
.bot-title{
  font-weight:800;
  color:#222;
}
.bot-sub{
  color:#666;
  font-size:14px;
  line-height:1.45;
  min-height:40px;
}
.bot-cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  align-self:flex-start;
  padding:.5rem .85rem;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9d9d9;
  text-decoration:none;
  font-weight:700;
  color:#666;
}
.bot-cta:hover{ background:#f5f5f5; }
@media (max-width: 980px){
  .bot-inner{ grid-template-columns:1fr; }
  .bot-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .bot-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .bot-section{ padding: 0; }
  .bot-inner{ padding:32px 14px 24px; }
  .bot-copy h2{
    font-size: clamp(22px, 5vw + 4px, 28px);
    line-height:1.15;
    margin-bottom:8px;
  }
  .bot-copy p.lead{
    font-size:15px;
    line-height:1.5;
    margin-bottom:12px;
  }
  .bot-points{ gap:.35rem; }
  .bot-point span{ font-size:14px; line-height:1.4; }
  .bot-slide-card{ padding:16px 14px; }
  .bot-slide-media{ height:300px; }
  .bot-dots{ bottom:6px; }
}

.bot-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.bot-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.bot-slide-card {
  background:#ffffff;
  border:1px solid #ecebd3;
  border-radius:16px;
  box-shadow:0 16px 32px rgba(0,0,0,.08);
  width:100%;
  padding:20px 20px 16px;
  display:flex;
  flex-direction:column;
}
.bot-slide-head {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
  color:#222;
}
.bot-slide-icon {
  width:42px;
  height:42px;
  border-radius:12px;
  background:#fffde7;
  border:2px solid #f7f7cc;
  display:grid;
  place-items:center;
  flex-shrink:0;
}
.bot-slide-icon .material-symbols-outlined {
  font-size:24px;
  color:#5f6f52;
  margin:0;
}
.bot-slide-title {
  line-height:1.2;
  font-size:20px;
  font-weight:800;
  color:#222;
}

.bot-slide-media {
  flex:1;
  border:1px solid #efeecf;
  background:#fffef7;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.03) inset;
  height:420px;
  padding:0;
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  overflow: visible;
}
.bot-slide-media > img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  display:block;
  max-width:none;
  max-height:none;
}

.ast-preview-inner{
  display:flex;
  flex:1 1 auto;
  width:100%;
  height:100%;
  gap:0;
}
.ast-shot{
  flex:1 1 50%;
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  overflow: visible;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}
.ast-shot img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  background:#fffef7 !important;
  display:block !important;
  max-width:none !important;
  max-height:none !important;
}

.bot-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid #d9d9d9;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:0;
  line-height:0;
  z-index:3;
}
.bot-nav-prev { left:-16px; }
.bot-nav-next { right:-16px; }
.bot-nav .material-symbols-outlined{
  font-size:24px;
  color:#444;
  margin:0;
}
.bot-nav:hover{ background:#f5f5f5; }

.bot-dots {
  position:absolute;
  bottom:12px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:6px;
  z-index:3;
}
.bot-dots button{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:#d9d9d9;
  padding:0;
  cursor:pointer;
}
.bot-dots button.active{
  background:#5f6f52;
}

@media(max-width:500px){
  .bot-carousel{ max-width:100%; }
  .bot-nav-prev{ left:4px; }
  .bot-nav-next{ right:4px; }
}

.ms{
  font-family: "Material Symbols Outlined";
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  color: #888;
  display: inline-block;
}
.forum-logo{
  height: 84px;
  vertical-align: -10px;
}
.forum-hero{
  background:#f3f2f2;
  padding:56px 0 64px;
}
.forum-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.forum-title{
  font-weight: 800;
  line-height: 1.15;
  color: #454545;
  font-size: 42px;
  margin: 0 0 10px;
}
.forum-points{
  list-style: none;
  padding: 16px 0 0;
  margin: 0 auto 14px;
  display: inline-block;
  text-align: left;
  font-size: 20px;
  line-height: 1.85;
  color: #565656;
}
.forum-points li{
  display: flex;
  gap: 12px;
  align-items: center;
}
.forum-chips{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0 18px;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ece9c8;
  color: #5b5b5b;
  text-decoration: none;
  font-weight: 700;
  font-size:15px;
  line-height:1.2;
}
.chip:hover{ background: #fff9cc; }
.forum-frame{
  margin-top: 4px;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 10px 34px rgba(0,0,0,.14);
  background: #fff;
}
.forum-browser{
  height: 36px;
  background: #d8d8d8;
  border-bottom: 1px solid #e7e7e7;
}
.forum-shot img{
  display: block;
  width: 100%;
  height: auto;
}
.forum-cta{
  display:flex;
  gap:.6rem;
  justify-content:center;
  margin-top:16px;
  flex-wrap:wrap;
}
.btn-dark-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:#1f2937;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  padding:.9rem 1.25rem;
  border-radius:999px;
}
.btn-dark-pill:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.btn-ghost-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:#fff;
  color:#6b7280;
  text-decoration:none;
  font-weight:700;
  padding:.86rem 1.1rem;
  border-radius:999px;
  border:1px solid #e5e7eb;
}
.btn-ghost-pill:hover{
  background:#fff8d6;
  color:#4b5563;
}
@media (max-width: 700px){
  .forum-title{ font-size:34px; }
  .forum-points{ font-size:19px; }
}

.wrapup {
  background-color: #fffef0;
  max-width: 100%;
  margin: 0;
  padding: 4rem 1rem;
  text-align: center;
}
.wrapup h2{
  font-size: 36px;
  line-height:1.15;
  margin:0 0 .6rem;
  font-weight: 800;
  color:#1f4f3c;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.wrapup p{
  font-size: 18px;
  line-height:1.7;
  margin:0 auto 1.2rem;
  max-width: 760px;
  color:#333;
}
.wrapup-chips{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:.8rem;
}
.wrap-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.5rem .9rem;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  font-weight:700;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  color:#555;
}

.wrapup-media{
  position: relative;
  width:100%;
  max-width: 600px;
  margin: 1.2rem auto 0;
}
.wrapup-card{
  position: relative;
  overflow: visible;
  border-radius: 22px;
  background:#fff;
  box-shadow:none !important;
  border:1px solid #ececec;
}
.wrapup-card img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.wrapup-media::after{
  content:none !important;
}

.wrapup-cta{
  margin-top:1.2rem;
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  justify-content:center;
}
.wrap-btn{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.65rem 1.05rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  transition:transform .15s ease, background .15s ease;
  height:72px;
  color:#6f7070 !important;
}
.wrap-btn:hover{
  transform: translateY(-1px);
  background:#f8f8f8;
}
.wrapup .material-symbols-outlined{
  font-size:22px;
  margin:0;
  color:#1f4f3c;
}
@media (max-width: 960px){
  .wrapup h2{ font-size: 30px; }
}

#mlCarousel {
  max-width:900px;
  width:100%;
  margin:0 auto 60px;
}

#mlCarousel .carousel-control-prev,
#mlCarousel .carousel-control-next {
  width: 44px;
}
#mlCarousel .carousel-control-prev-icon,
#mlCarousel .carousel-control-next-icon {
  background-color: rgba(0,0,0,.6);
  border-radius:999px;
  background-size: 50% 50%;
  padding:16px;
  filter:none;
}

#mlCarousel .feature-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 20px 12px;
  background: #4b5563;
  border-bottom: 1px solid #6b7280;
  border-radius: 4px 4px 0 0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}
#mlCarousel .feature-head .material-symbols-outlined {
  font-size: 16px;
  line-height: 1;
  color: #fff !important;
  margin:0;
}
#mlCarousel .feature-head .ttl {
  color: #fff !important;
  font-weight: 500;
}
#mlCarousel .feature-head .right {
  margin-left: auto;
  font-size: 12px;
  color: #fff !important;
  opacity: .8;
}

#mlCarousel .shot-frame {
  border:0;
  border-radius:0;
  background: transparent;
  overflow: visible;
  box-shadow:none;
  padding:0;
}
#mlCarousel .shot-frame img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

#mlCarousel .carousel-inner {
  border:0;
  border-radius:4px;
  background:#fdfdfd;
  box-shadow:0 8px 20px rgba(0,0,0,.07);
}

#mlCarousel .carousel-indicators {
  bottom:-30px;
  margin-bottom:0;
}
#mlCarousel .carousel-indicators [data-bs-target] {
  width:8px;
  height:8px;
  border-radius:999px;
  background-color:#d9d9d9;
}
#mlCarousel .carousel-indicators .active {
  background-color:#5f6f52;
}
.forum-subline {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #4a4a4a;
  display: inline-block;
}
@media (max-width:700px){
  .forum-subline {
    font-size: 22px;
  }
}

/* Fun facts section */
.fun-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 6px;
  display: inline-block;
}
.fun-subtitle{
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 20px;
}
.fun-bullets{
  text-align: left;
  font-size: 22px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 700px){
  .fun-title{ font-size: 30px; }
  .fun-subtitle{ font-size: 23px; }
  .fun-bullets{ font-size: 17px; line-height: 1.5; }
}
@media (max-width: 520px){
  .fun-title{ font-size: 26px; }
  .fun-subtitle{ font-size: 20px; }
  .fun-bullets{ font-size: 15.5px; line-height: 1.48; }
}

/* Remove bullets on mobile for info-highlight list */
@media (max-width: 700px){
  .info-highlight ul{
    list-style: none;
    padding-left: 0;
  }
}
