/* ================================
   ESTATE SALES – HEADER REMOVED
================================ */

/* Hide theme / Elementor header ONLY */
.site-header,
header.elementor-location-header {
  display: none !important;
}

/* Ensure no leftover top spacing */
.aes-hub-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 0 !important;
}

/* ================================
   BACK TO HOME BUTTON
================================ */
.aes-back-nav {
  max-width: 1100px;
  margin: 20px auto 16px;
  padding: 0 20px;
}

.aes-back-link {
  font-size: 14px;
  font-weight: 600;
  color: #d63384;
  text-decoration: none;
}

.aes-back-link:hover {
  text-decoration: underline;
}

/* ================================
   HUB LAYOUT
================================ */
.aes-hub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ================================
   HEADER (PAGE TITLE)
================================ */
.aes-hub-header {
  text-align: center;
  margin-bottom: 26px;
}

.aes-hub-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.aes-hub-sub {
  margin-top: 6px;
  color: #666;
}

/* ================================
   TABS
================================ */
.aes-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 36px;
}

.aes-tab {
  border: 1px solid #d63384;
  background: #fff;
  color: #d63384;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.aes-tab.is-active {
  background: #d63384;
  color: #fff;
}

/* ================================
   PANELS
================================ */
.aes-panel {
  display: none;
}

.aes-panel.is-active {
  display: block;
}

/* ================================
   GRID
================================ */
.aes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px) {
  .aes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aes-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   CARD
================================ */
.aes-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.aes-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.aes-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.aes-card-cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.aes-card-body {
  padding: 14px 16px 16px;
}

.aes-card-timeline {
  font-weight: 800;
  color: #d63384;
  font-size: 13px;
  margin-bottom: 8px;
}

.aes-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.aes-card-meta {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.aes-card-desc {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.45;
}

/* Short gallery strip (shown under description) */
.aes-card-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #f4f4f4;
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.aes-strip-img img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  display: block;
}

/* (removed duplicate strip styles) */

/* ================================
   EMPTY STATE
================================ */
.aes-empty {
  text-align: center;
  color: #666;
  margin: 24px 0 0;
}
