/* =========================================================
   AMORA Contact – White on Dark Background (FULL)
   ========================================================= */



/* Title */
.amora-contact__title{
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 40px);
  opacity: .95;
}

/* List */
.amora-contact__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

/* Item */
.amora-contact__item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

/* Icon */
.amora-contact__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff !important;
  opacity: .9;
}

.amora-contact__icon svg{
  width: 20px;
  height: 20px;
  stroke: #ffffff !important;
}

/* Text */
.amora-contact__text{
  color: #ffffff !important;
  font-size: clamp(15px, 1.6vw, 19px) !important;
  line-height: 1.35;
  opacity: .9;
}

/* Link – giữ trắng, không đổi màu */
.amora-contact__link{
  color: #ffffff !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
  transition: border-color .2s ease, opacity .2s ease;
}

/* Hover – KHÔNG đổi màu */
.amora-contact__link:hover{
  color: #ffffff !important;
  border-bottom-color: rgba(255,255,255,.7);
  opacity: .95;
}

/* Focus (accessibility) */
.amora-contact__link:focus-visible{
  outline: none;
  border-bottom-color: rgba(255,255,255,.9);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 1024px){
  .amora-contact{
    padding: 48px 0;
  }

  .amora-contact__item{
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .amora-contact__icon{
    width: 40px;
    height: 40px;
  }

  .amora-contact__icon svg{
    width: 26px;
    height: 26px;
  }
}

/* Mobile */
@media (max-width: 640px){
  .amora-contact{
    padding: 42px 0;
  }

  .amora-contact__title{
    margin-bottom: 20px;
    font-size: 26px;
  }

  .amora-contact__list{
    gap: 16px;
  }

  .amora-contact__item{
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .amora-contact__icon{
    width: 36px;
    height: 36px;
  }

  .amora-contact__icon svg{
    width: 22px;
    height: 22px;
  }

  .amora-contact__text{
    font-size: 18px;
    line-height: 1.4;
  }
}

/* Very small mobile */
@media (max-width: 380px){
  .amora-contact__text{
    font-size: 17px;
  }
}