/* assets/css/guesty-list-style.css */

/* Wrapper grid */
.guesty-list-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;

}
@media (min-width: 640px) {
  .guesty-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .guesty-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.guesty-list-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.guesty-list-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Image */
.guesty-list-image {
  width: 100%;
  height: 235px !important;
  object-fit: cover;
}

/* Content */
.guesty-list-content {
  padding: 1.25rem 1.25rem;
}
.guesty-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #404040;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
      
}
.guesty-list-location {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #555;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.guesty-list-location i {
  margin-right: 0.5rem;
}

/* Features */
.guesty-list-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.guesty-list-features > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 27px 0 0;
    text-align: center;
    position: relative;
}
.guesty-list-features span {
    font-size: 14px;
    font-weight: 300;
}

.guesty-list-features > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0%;
  bottom: 14%;
  right: 0;
  width: 1px;
  background-color: #ccc;
}
.guesty-list-feature .icon{
  height: 20px;
  margin-bottom: 0.3rem;
}

/* Price + Button */
.guesty-list-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.guesty-list-price {
  font-size: 16px;
      font-weight: 500;
        margin-bottom: 0
}
.guesty-list-price strong {
font-size: 24px;
    font-weight: 700;
    display: inherit;
        margin-bottom: 0
}

.guesty-list-note {
  font-size: 9.6px;
  opacity: 0.75;
      margin-bottom: 0
}

/* View Button */
.guesty-list-button {
    background: #000;
    color: #fff;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 13px;
    font-weight: 400;
}
.guesty-list-button:hover {
  background: #DF533F;
  color:#fff;
}


.guesty-load-more-container {
    text-align: center;
    margin: 30px 0;
}

.guesty-load-more {
    color: white;
    border: none;
    cursor: pointer;
    background-color: var(--e-global-color-primary);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 6px 6px 6px 6px;
    padding: 18px 25px 18px 25px;
}

.guesty-load-more:hover {
    background-color: #000;
}
