/* ─── CAR360 About Widget ─────────────────────────────────────────────────── */

.c360-about {
  background-color: var(--bg-light, #fff);
  overflow: hidden;
}

.c360-about__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 96px 24px;
}

/* ── Two-column grid ─────────────────────────────────────────────────────── */

.c360-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .c360-about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   LEFT — Media collage
══════════════════════════════════════════════════════════════════════════ */

.c360-about__media {
  position: relative;
  /* total height driven by the main image */
}

/* ── Main image (tall, left-aligned) ─────────────────────────────────────── */

.c360-about__img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 75%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.c360-about__img-main img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ── Secondary image (square, bottom-right overlap) ─────────────────────── */

.c360-about__img-secondary {
  position: absolute;
  bottom: -32px;
  right: 0;
  width: 52%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--bg-light, #fff);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.c360-about__img-secondary img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ── Image placeholder (no image set) ───────────────────────────────────── */

.c360-about__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light-alt, #FAF7F6);
}

/* ── Floating stat pill ──────────────────────────────────────────────────── */

.c360-about__stat-pill {
  position: absolute;
  top: 28px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  border: 1px solid var(--border-light, #E8E2E0);
  min-width: 110px;
  text-align: center;
}

.c360-about__stat-pill-value {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.50rem;
  font-weight: 700;
  color: var(--brand-500, #EC3D23);
  line-height: 1;
}

.c360-about__stat-pill-label {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .70rem;
  font-weight: 600;
  color: var(--text-muted, #767676);
  line-height: 1.3;
  max-width: 80px;
}

/* ── Decorative dots ─────────────────────────────────────────────────────── */

.c360-about__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-500, #EC3D23);
  opacity: .35;
}

.c360-about__dot--tl {
  top: -18px;
  left: 30px;
  box-shadow: 20px 0 0 var(--brand-500, #EC3D23), 40px 0 0 var(--brand-500, #EC3D23),
              0 20px 0 var(--brand-500, #EC3D23), 20px 20px 0 var(--brand-500, #EC3D23), 40px 20px 0 var(--brand-500, #EC3D23),
              0 40px 0 var(--brand-500, #EC3D23), 20px 40px 0 var(--brand-500, #EC3D23), 40px 40px 0 var(--brand-500, #EC3D23);
  opacity: .18;
}

.c360-about__dot--br {
  bottom: 8px;
  left: 8px;
  width: 56px;
  height: 56px;
  background: var(--brand-50, #FEEEEA);
  border-radius: 50%;
  opacity: .7;
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════════════════════
   RIGHT — Content
══════════════════════════════════════════════════════════════════════════ */

.c360-about__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */

.c360-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-500, #EC3D23);
  margin-bottom: 16px;
}

.c360-about__eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brand-500, #EC3D23);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Title ───────────────────────────────────────────────────────────────── */

.c360-about__title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-title-strong, #0D0D0D);
  margin: 0 0 16px;
  line-height: 1.18;
}

/* ── Description ─────────────────────────────────────────────────────────── */

.c360-about__desc {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .92rem;
  color: var(--text-muted, #767676);
  margin: 0 0 32px;
  line-height: 1.70;
}


/* ── Feature list ────────────────────────────────────────────────────────── */

.c360-about__features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c360-about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light, #E8E2E0);
}

.c360-about__feature:first-child {
  border-top: 1px solid var(--border-light, #E8E2E0);
}

.c360-about__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--brand-50, #FEEEEA);
  color: var(--brand-600, #C92F1A);
  margin-top: 1px;
  transition: background 0.20s, color 0.20s;
}

.c360-about__feature:hover .c360-about__feature-icon {
  background: var(--brand-500, #EC3D23);
  color: #fff;
}

.c360-about__feature-copy {
  flex: 1;
}

.c360-about__feature-title {
  display: block;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
  margin-bottom: 4px;
}

.c360-about__feature-text {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .83rem;
  color: var(--text-muted, #767676);
  margin: 0;
  line-height: 1.60;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.c360-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  height: 48px;
  padding-inline: 28px;
  border-radius: 10px;
  background: var(--brand-500, #EC3D23);
  color: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .90rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.20s, transform 0.20s;
  line-height: 1;
  white-space: nowrap;
}

.c360-about__cta:hover {
  background: var(--brand-600, #C92F1A);
  color: #fff;
  transform: translateY(-1px);
}

.c360-about__cta svg {
  flex-shrink: 0;
  transition: transform 0.20s;
}

.c360-about__cta:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .c360-about__img-main  { width: 65%; }
  .c360-about__img-secondary { width: 48%; bottom: -24px; }
  .c360-about__media { padding-bottom: 32px; }
}

@media (max-width: 600px) {
  .c360-about__inner { padding: 56px 16px; }
  .c360-about__img-main  { width: 80%; }
  .c360-about__img-secondary { width: 55%; }
  .c360-about__stats { flex-direction: column; gap: 16px; }
  .c360-about__stat-divider { width: 40px; height: 1px; margin-block: 0; }
}
