/* ==========================================================================
   1. APARTMENT AMENITIES BADGES
   ========================================================================== */
.suite-amenities-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.suite-amenities-mini span {
  background-color: #F8F4EE;
  color: #2D261E;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #EADFCF;
  display: inline-flex;
  align-items: center;
}

.suite-amenities-mini span i {
  margin-right: 10px; 
  font-size: 0.95rem;
}

/* ==========================================================================
   2. CLEAN STATIC IMAGE FRAME
   ========================================================================== */
.suite-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E8DFD1;
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  background-color: #F8F4EE;
  height: 400px; /* Uniform height across desktop layout rows */
}

.suite-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image distortion */
  border-radius: 20px;
}

/* ==========================================================================
   3. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  .suite-img-frame {
    height: 300px; /* Scales down cleaner on mobile devices */
  }
}


/* Sleek Inner Page Hero Proportions */
.hero-section.inner-hero {
  min-height: 45vh !important; /* Drops the height drastically from full-screen */
  height: 45vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px; /* Accounts for the fixed navbar height safely */
}

/* Tighter Text Clusters */
.hero-section.inner-hero .main-title {
  font-size: 2.75rem !important; /* Crisper, premium display scale */
  letter-spacing: 1px;
}

.hero-section.inner-hero .hero-description {
  max-width: 600px;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}