/* --- Section Layout --- */
.aer-experts-section {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

.aer-experts-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.aer-experts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.aer-experts-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.aer-experts-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* --- Specialists Grid --- */
.aer-experts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* --- Specialist Card --- */
.aer-experts-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out;
}
.aer-experts-card:hover {
    transform: scale(1.05);
}

.aer-experts-card-content {
    padding: 1.5rem;
    text-align: center;
}

.aer-experts-card-icon-wrapper {
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 151, 211, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.aer-experts-card-icon {
    height: 2.5rem;
    width: 2.5rem;
    color: var(--daikin-blue);
}

.aer-experts-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.aer-experts-card-title {
    color: var(--daikin-blue);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.aer-experts-card-location {
    color: var(--gray-600);
    margin-top: 0;
    margin-bottom: 1rem;
}

.aer-experts-card-contact-details {
    font-size: 0.875rem;
    color: var(--gray-600);
}
.aer-experts-card-contact-details > *:not(:first-child) {
    margin-top: 0.5rem;
}

.aer-experts-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aer-experts-contact-icon {
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
}

.aer-experts-contact-link {
    color: var(--daikin-blue);
    text-decoration: none;
}
.aer-experts-contact-link:hover {
    text-decoration: underline;
}

.aer-experts-see-more-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

/* --- Responsive Breakpoints --- */
@media (min-width: 640px) {
    .aer-experts-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .aer-experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .aer-experts-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}