/*
 * BrandTimelineItem — one milestone row (dot + card) inside BrandTimeline.
 * Stitch reference: marka.html, "Timeline / Heritage" section.
 * The vertical connector line itself is drawn by the PARENT (BrandTimeline)
 * as a single ::before spanning the whole list — this component only draws
 * its own dot + card.
 */

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__dot-col {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid var(--mh-outline-variant);
  background-color: var(--mh-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item--active .mh-brand-timeline-item__dot {
  border-color: var(--mh-primary);
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__dot-inner {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--mh-primary);
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__card {
  flex: 1;
  min-width: 0;
  background-color: var(--mh-surface);
  border: 1px solid var(--mh-outline-variant);
  border-radius: 0.125rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__title {
  margin: 0;
  font-family: var(--mh-font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mh-primary);
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__year {
  flex-shrink: 0;
  font-family: var(--mh-font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--mh-on-surface-variant);
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__image-wrap {
  margin: 0 0 0.75rem;
  border-radius: 0.125rem;
  overflow: hidden;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__description {
  margin: 0;
  font-family: var(--mh-font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--mh-on-surface-variant);
}

@media (min-width: 768px) {
  .cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__card {
    padding: 1.25rem 1.5rem;
  }

  .cc_t2dowgyg_JykGFG0rBf .mh-brand-timeline-item__title {
    font-size: 16px;
  }
}
