.accommodation-card {
    background-color: var(--color-navy);
    border-radius: 22px;
    padding: 30px 40px 0px 40px !important;
    height: 450px;
}

.accommodation-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  /* sharp edges */
  display: block;
}
#accommodation .hotel-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 22px 10px 22px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

#accommodation .hotel-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #0f1f5c;
  margin-bottom: 8px;
}

#accommodation .hotel-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1f1f1f;
  margin-bottom: 16px;
}

 .hotel-image-wrap {
  position: relative;

  
  overflow: hidden;
}



 .hotel-arrow {
  position: absolute;
  transform: rotate(-45deg);
  right: 15px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #24bfc5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(36, 191, 197, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

 .hotel-arrow img {
  width: 40px;
  height: 35px;
}