.msb-guide-item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* ── Layout 1 ────────────────────────────────────── */
.msb-guide-item--layout1 {
  gap: 16px;
}

.msb-guide-item__number-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.msb-guide-item__line {
  flex: 1;
  height: 1px;
  background-color: #d0d7e2;
}

.msb-guide-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f4600c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.msb-guide-item__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.msb-guide-item__image-wrap--placeholder {
  background-image:
    repeating-conic-gradient(#e8ecf0 0% 25%, #f5f7fa 0% 50%);
  background-size: 24px 24px;
}

.msb-guide-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msb-guide-item--layout1 .msb-guide-item__title {
  font-size: 18px;
  font-weight: 600;
  color: #091e42;
  margin: 0;
  line-height: 1.4;
}

.msb-guide-item--layout1 .msb-guide-item__content {
  font-size: 15px;
  color: #505f79;
  line-height: 1.7;
  margin: 0;
}

/* ── Layout 2 ────────────────────────────────────── */
.msb-guide-item--layout2 {
  gap: 12px;
}

.msb-guide-item__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.msb-guide-item__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.msb-guide-item--layout2 .msb-guide-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #091e42;
  margin: 0;
  line-height: 1.4;
}

.msb-guide-item--layout2 .msb-guide-item__content {
  font-size: 15px;
  color: #505f79;
  line-height: 1.7;
  margin: 0;
}

.msb-guide-item__content p {
  margin: 0 0 12px;
}

.msb-guide-item__content p:last-child {
  margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .msb-guide-item--layout1 .msb-guide-item__title,
  .msb-guide-item--layout2 .msb-guide-item__title {
    font-size: 16px;
  }

  .msb-guide-item__content {
    font-size: 14px;
  }
}
