/* Faculty Accordion Styles */
.fa-f1aead13-wrapper {
    position: relative;
    padding: 60px 20px;
    background-color: var(--rfr-4c58-bg, #f8fafd); /* Keep matching the roadmap bg if no elementor style applied to section wrapper directly but keep consistent */
    overflow: hidden;
}

.fa-f1aead13-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fa-f1aead13-heading {
    margin-bottom: 15px;
    /* Elementor typography controls will override this */
}

.fa-f1aead13-subheading {
    margin: 0;
    /* Elementor typography controls will override this */
}

.fa-f1aead13-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.fa-f1aead13-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .fa-f1aead13-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fa-f1aead13-grid {
        grid-template-columns: 1fr;
    }
    .fa-f1aead13-header {
        margin-bottom: 40px;
    }
}

.fa-f1aead13-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.8);
    /* Colors controlled by Elementor */
}

.fa-f1aead13-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(10, 88, 202, 0.1);
}

.fa-f1aead13-card-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.fa-f1aead13-card.active .fa-f1aead13-card-header {
    border-bottom-color: rgba(10, 88, 202, 0.1);
}

.fa-f1aead13-cat-title {
    margin: 0;
    transition: color 0.3s ease;
    /* Elementor typography controls will override this */
}

.fa-f1aead13-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-f1aead13-icon svg {
    width: 100%;
    height: 100%;
}

.fa-f1aead13-card.active > .fa-f1aead13-card-header .fa-f1aead13-icon {
    transform: rotate(180deg);
}

.fa-f1aead13-card-body {
    display: none;
    padding: 0 30px 24px 30px;
}

.fa-f1aead13-card.active > .fa-f1aead13-card-body {
    display: block;
    animation: fadeIn_f1aead13 0.4s ease;
}

.fa-f1aead13-fac-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fa-f1aead13-fac-item {
    border-bottom: 1px dashed rgba(10, 88, 202, 0.2);
}

.fa-f1aead13-fac-item:last-child {
    border-bottom: none;
}

.fa-f1aead13-fac-header {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.fa-f1aead13-fac-title {
    margin: 0;
    transition: color 0.3s ease;
    /* Elementor typography controls will override this */
}

.fa-f1aead13-fac-item.active > .fa-f1aead13-fac-header .fa-f1aead13-icon {
    transform: rotate(180deg);
}

.fa-f1aead13-fac-body {
    display: none;
    padding: 0 0 18px 15px;
}

.fa-f1aead13-fac-item.active > .fa-f1aead13-fac-body {
    display: block;
    animation: fadeIn_f1aead13 0.3s ease;
}

.fa-f1aead13-maj-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fa-f1aead13-maj-item {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
    /* Elementor typography controls will override this */
}

.fa-f1aead13-maj-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px; /* Adjust based on typography */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Default to match the text color, active color mapped in Elementor control */
    opacity: 0.5;
}

@keyframes fadeIn_f1aead13 {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
