/* ===== Section ===== */
.esim-guide {
  padding: 40px 0;
}

/* ===== Header ===== */
.esim-guide__header {
  text-align: center;
  margin-bottom: 40px;
}

.esim-guide__title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
}

.esim-guide__subtitle {
  font-size: 16px;
  color: #666;
}

/* ===== List ===== */
.esim-guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* ===== Item ===== */
.esim-guide__item {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

/* Hover nhẹ */
.esim-guide__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== Image ===== */
.esim-guide__image {
  width: 100%;
  aspect-ratio: 4 /3;
  background-color: #e5e7ec;
}

.esim-guide__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Content ===== */
.esim-guide__content {
  padding: 30px 20px;
}

.esim-guide__item-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.esim-guide__item-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .esim-guide {
    padding: 35px 0;
  }
  .esim-guide__header {
    margin-bottom: 35px;
  }
  .esim-guide__list {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .esim-guide {
    padding: 30px 0;
  }
  .esim-guide__title {
    font-size: 26px;
  }

  .esim-guide__header {
    margin-bottom: 30px;
  }
  .esim-guide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .esim-guide {
    padding: 25px 0;
  }
  .esim-guide__header {
    margin-bottom: 25px;
  }
  .esim-guide__title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .esim-guide {
    padding: 20px 0;
  }
  .esim-guide__header {
    margin-bottom: 20px;
  }
  .esim-guide__title {
    font-size: 22px;
  }

  .esim-guide__subtitle {
    font-size: 14px;
  }

  .esim-guide__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .esim-guide__content {
    padding: 20px;
  }

  .esim-guide__item-desc {
    font-size: 14px;
  }
}
