/* Spotlight Section */
.aer-spotlight-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #f9fafb, white);
}

.aer-spotlight-card {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 0;
    background-color: white;
    border-radius: 0.5rem;
    /* overflow: hidden; */
}

.aer-spotlight-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #fb923c, #f97316);
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.aer-carousel-container {
    position: relative;
    min-height: 20rem;
    overflow: hidden;
    /* Allow shadow to overflow in all directions */
}

.aer-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    align-items: stretch;
}

.aer-carousel-slide {
    width: 100%;
    max-width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    flex-shrink: 0;
    transition: none;
    opacity: 1;
    position: relative;
    z-index: 1;
    display: grid;
    box-shadow: 0 8px 32px 0 rgba(31,41,55,0.16), 0 1.5px 6px 0 rgba(31,41,55,0.10);
    background: #fff;
    border-radius: 0.75rem;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
    /* Shadow is now visible on all sides */
}

@media(min-width: 1024px) {
    .aer-carousel-slide {
        grid-template-columns: 1fr 1fr;
    }
}

.aer-carousel-img {
    height: 16rem;
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
}

.aer-section-header {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.aer-carousel-arrow span {
    display: none;
}

@media(min-width: 1024px) {
    .aer-carousel-img {
        height: 24rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .aer-carousel-arrow span {
        display: block;
    }
}

.aer-carousel-text {
    padding: 2rem;
}

.aer-carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.aer-carousel-desc {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aer-carousel-details {
    margin-bottom: 1rem;
}

.aer-carousel-details p:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.aer-carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 2rem;
}

.aer-carousel-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.aer-carousel-arrow:hover {
    color: #1f2937;
    background-color: #f3f4f6;
}

.aer-carousel-arrow svg {
    height: 1rem;
    width: 1rem;
}

.aer-carousel-arrow span {
    font-size: 0.875rem;
    font-weight: 500;
}

.aer-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.aer-carousel-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.aer-carousel-indicator.is-active {
    background-color: var(--daikin-blue);
}
