/* Mobile: center hotel feature items (icons + text) */
@media (max-width: 767px) {
  /* Stack feature items vertically (if area was grid) and give breathing room */
  .gt-hotel-feature-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  /* Make each item a centered column */
  .gt-hotel-feature-items {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 14px 12px !important;
    gap: 12px !important;
    background: transparent !important; /* keep existing look */
  }

  /* Icon wrapper: center and set consistent size */
  .gt-hotel-feature-items .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: #fff; /* fallback, will not change existing if different */
    box-shadow: 0 8px 20px rgba(17,17,17,0.06) !important;
  }

  /* Icon image: ensure it fits inside the square */
  .gt-hotel-feature-items .icon .icon-img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Content tweaks: center heading and paragraph, remove left padding */
  .gt-hotel-feature-items .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .gt-hotel-feature-items .content h3 {
    margin: 0 0 6px !important;
    font-weight: 600 !important;
  }
  .gt-hotel-feature-items .content p {
    margin: 0 !important;
    opacity: 0.9;
    color: rgba(67,67,67,0.9);
  }

  /* If original layout had border or separator, you can keep or remove it here.
     Example: add subtle divider */
  .gt-hotel-feature-items + .gt-hotel-feature-items {
    border-top: none !important; /* remove top border if present */
  }
}