/* Mobile Responsive Styles for Hero Slider */

@media (max-width: 768px) {
  .cygnus-hero-slider {
    width: 100%;
    height: 550px;
  }

  .hero-slide {
    position: relative;
    height: 550px;
  }

  .hero-divider {
    display: none;
  }

  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(90, 90, 90, 60%);
    z-index: 1;
    pointer-events: none;
  }

  /* Hide arrows on mobile */
  .hero-arrows {
    right: 15px;
    display: none;
  }

  /* HERO INFO - Full width, stacked layout at bottom */
  .hero-info {
    width: 100%;
    margin-left: 0;
    padding: 20px 16px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 16px;
    transform: translateX(0);
    z-index: 2;
  }
  .hero-info p {
    display: none !important;
  }

  /* TOP ROW - Logo and Status stacked vertically */
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 12px;
  }

  .hero-project-logo {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
  }

  .hero-status {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 700;
  }

  /* SPECS SECTION - Stack vertically */
  .hero-specs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 16px;
    margin-bottom: 0px;
  }

  .hero-spec {
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    padding: 0;
  }

  .hero-spec p {
    margin: 0;
  }

  .hero-spec div:not(.hero-icon) {
    margin: 0;
  }

  /* Icon sizes for mobile */
  .hero-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .hero-icon.bed {
    width: 28px;
    height: 28px;
    background-color: #ff8a00;
  }

  .hero-icon.area {
    width: 28px;
    height: 28px;
    background-color: #ff8a00;
  }

  .hero-icon.pin {
    width: 28px;
    height: 28px;
    background-color: #ff8a00;
  }

  /* LOCATION SECTION */
  .hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding-top: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-location p {
    margin: 0;
  }

  .hero-location strong {
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .hero-info {
    padding: 16px 12px;
  }

  .hero-top {
  }

  .hero-project-logo {
    max-height: 80px;
    max-width: 160px;
  }

  .hero-status {
    font-size: 16px;
  }

  .hero-specs {
  }

  .hero-spec {
    font-size: 16px;
  }

  .hero-location {
    font-size: 16px;
    padding-top: 0px;
  }

  .hero-icon {
    width: 20px;
    height: 20px;
  }

  .hero-icon.bed {
    width: 24px;
    height: 24px;
  }

  .hero-icon.area,
  .hero-icon.pin {
    width: 20px;
    height: 20px;
  }
}
