/* Layout */
.vga-home-callouts-area {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 300px;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
}

/* Layout classes for callouts area with/without chamber status */
.vga-home-callouts-with-status {
  max-width: 1200px;
  justify-content: space-between;
  align-items: stretch;
  min-height: 320px;
  width: 100%;
  gap: 1rem;
  display: flex;
  margin-bottom: 2rem;
}

.vga-home-callouts-full-width {
  max-width: 900px;
  justify-content: center;
}

.vga-home-callouts-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.vga-home-callouts-two-thirds {
  flex: 0 0 66.666667%;
}

.vga-home-callouts-full {
  flex: 0 0 100%;
}

.vga-chamber-status-sidebar {
  flex: 0 0 350px;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.vga-chamber-status-one-third {
  /* No flex-basis here, width is controlled by sidebar class above */
}

.vga-home-callout {
  width: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  flex: 1;
}

/* When chamber status is present, make callout match its height */
.vga-home-callouts-with-status .vga-home-callout {
  min-height: 320px;
}

/* Callout Titles - removed old positioning styles */

.vga-home-callout-empty {
  background: #e5e5e5;
  color: #888;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
}

.vga-home-callouts-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  cursor: grab;
  transition: transform 0.1s ease;
}

.vga-home-callouts-carousel-wrapper:active {
  cursor: grabbing;
}

.vga-home-callouts-carousel-wrapper.vga-carousel-interacting {
  transform: scale(0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* When chamber status is present, make carousel wrapper stretch to match height */
.vga-home-callouts-with-status .vga-home-callouts-carousel-wrapper {
  height: auto;
  min-height: 320px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  max-height: 100%;
}

.vga-home-callouts-with-status .vga-home-callouts-carousel {
  flex: 1;
  min-height: 320px;
  height: auto;
  width: 100%;
}

.vga-home-callouts-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.vga-home-callout-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.5s;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.vga-home-callout-slide.active {
  opacity: 1;
  z-index: 2;
}

.vga-home-callout-gradient {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.vga-home-callout-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.vga-home-callout-title {
  color: var(--color-white);
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 600;
  width: 50%;
  margin: 0;
}

/* Carousel Callout Buttons */
.vga-home-callout-btn {
  display: block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-white);
  border-radius: 1.25rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 3rem;
  align-self: flex-start;
}
.vga-home-callout-btn:hover {
  background: var(--color-white);
  color: #222;
}

/* Carousel Navigation Dots */
.vga-home-callouts-dots {
  position: absolute;
  left: 2.5rem;
  bottom: 1.5rem;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}
.vga-home-callout-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: background 0.2s;
}
.vga-home-callout-dot.active,
.vga-home-callout-dot:hover {
  background: var(--color-white);
}

/* Mobile */
.vga-chamber-status-mobile-above {
  order: 2;
}

/* Mobile */
@media (max-width: 1080px) {
    .vga-home-callouts-section {
        padding: 0 1rem;
    }
    
    .vga-home-callout {
        min-height: 220px;
    }
    
    .vga-home-callouts-with-status {
        margin-bottom: 0;
    }
    /* Reset height behavior on mobile when stacked */
    .vga-home-callouts-with-status .vga-home-callout {
        min-height: 220px;
        height: auto;
    }
    
    .vga-home-callouts-with-status {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .vga-home-callouts-two-thirds,
    .vga-home-callouts-full,
    .vga-chamber-status-one-third {
        flex: 0 0 100%;
    }
    
    .vga-chamber-status-sidebar {
        order: 2;
        height: auto;
    }
    
    .vga-home-callouts-main {
        order: 1;
        width: 90%;
        margin: 0 auto;
        height: auto;
    }
    
    .vga-home-callout-title {
        font-size: 1.4rem;
        padding: 1rem;
        width: 100%;
    }
    
    .vga-home-callout-content {
        padding: 1rem;
    }
    
    /* Carousel responsive styles */
    .vga-home-callouts-carousel-wrapper {
        height: 220px;
        flex: none;
    }
    
    /* Reset carousel wrapper height on mobile when chamber status is present */
    .vga-home-callouts-with-status .vga-home-callouts-carousel-wrapper {
        height: 220px;
        min-height: auto;
        margin-bottom: 2.5rem;
        flex: none;
        display: block;
    }
    
    .vga-home-callouts-with-status .vga-home-callouts-carousel {
        height: 220px;
        min-height: auto;
        flex: none;
    }
    
    .vga-home-callout-slide {
        padding-left: 1rem;
    }
    
    .vga-home-callout-content {
        width: 100%;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .vga-home-callout-carousel-title {
        font-size: 1.1rem;
        width: 250px;
    }
    
    .vga-home-callout-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-left: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .vga-home-callouts-dots {
        left: 1.5rem;
        bottom: 1rem;
        z-index: 10;
    }
    
    .vga-home-callout-dot {
        width: 12px; height: 12px;
    }
    
    /* Chamber status mobile above */
    .vga-chamber-status-mobile-above {
        order: 0;
        width: 100%;
        max-width: none;
        flex: 0 0 100%;
    }
} 
