/* Rotating Ministry Profile Styles */
#ministry-profile-container {
    position: relative;
}

.ministry-profile-item {
    display: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ministry-profile-item.active {
    display: block;
    opacity: 1;
}

.profile-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2f4a3d;
    /* var(--sage) */
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-nav-btn:hover {
    background: #3d5f4e;
    /* var(--sage-2) */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.profile-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.profile-nav-btn.prev {
    left: -22px;
}

.profile-nav-btn.next {
    right: -22px;
}

@media (max-width: 768px) {
    .profile-nav-btn {
        width: 36px;
        height: 36px;
    }

    .profile-nav-btn.prev {
        left: 8px;
    }

    .profile-nav-btn.next {
        right: 8px;
    }
}