.dept-card {
    border: 1px solid #e6edf2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border-left: 3px solid transparent;
    padding: 16px 18px;

    display: flex;
    align-items: center;
    gap: 16px;

    transition: all 0.25s ease;
    position: relative;
}

/* hover */
.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border-color: transparent;
    border-left: 3px solid #2c7da0;
}

/* иконка */
.dept-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(44, 125, 160, 0.08);

    color: #2c7da0;

    font-size: 18px;

    transition: all 0.25s ease;
}

.dept-icon i {
    font-size: 22px;
    color: #2c7da0;
    transition: 0.25s;
}

/* текст */
.dept-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.dept-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

/* ссылка */
.dept-link {
    font-size: 14px;
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;

    transition: 0.2s;
}

.dept-link::after {
    content: " →";
    opacity: 0.6;
    transition: 0.2s;
}

/* стрелка справа */
.dept-card::before {
    content: "›";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 22px;
    color: #94a3b8;

    transition: 0.25s;
}

/* анимации */
.dept-card:hover::before {
    transform: translateY(-50%) translateX(4px);
    color: #2c7da0;
}

.dept-card:hover .dept-icon i {
    transform: scale(1.1);
}

.dept-card:hover .dept-link::after {
    margin-left: 6px;
    opacity: 1;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-8 { transition-delay: 0.7s; }