/* Guide / Tour section block: icon, title, description, list with checkmarks, 2 gallery images */

.guide-line-tour {
  width: 100%;
  margin-bottom: 2rem;
}

.guide-line-tour__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Optional: faint map/circle pattern background */
.guide-line-tour__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(20, 184, 166, 0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.guide-line-tour__content {
  flex: 1 1 50%;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.guide-line-tour__icon {
  margin-bottom: 1rem;
}

.guide-line-tour__icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.guide-line-tour__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.guide-line-tour__description {
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.guide-line-tour__description p:last-child {
  margin-bottom: 0;
}

/* List items with green checkmark */
.guide-line-tour__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-line-tour__list-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: #334155;
  line-height: 1.5;
}

.guide-line-tour__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid #22c55e;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    center/0.6rem no-repeat;
  background-color: #fff;
}

/* Gallery: two overlapping circular images */
.guide-line-tour__gallery {
  flex: 0 0 auto;
  position: relative;
  width: 280px;
  height: 280px;
  min-width: 280px;
}

.guide-line-tour__gallery-img {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.guide-line-tour__gallery-img--1 {
  top: 0;
  right: 0;
  z-index: 2;
}

.guide-line-tour__gallery-img--2 {
  bottom: 0;
  left: 0;
  z-index: 1;
}

.guide-line-tour__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .guide-line-tour__inner {
    flex-direction: column;
    padding: 1.5rem;
  }

  .guide-line-tour__content {
    min-width: 100%;
  }

  .guide-line-tour__gallery {
    width: 240px;
    height: 240px;
    min-width: 240px;
  }

  .guide-line-tour__gallery-img {
    width: 160px;
    height: 160px;
  }
}
