/* общий контейнер */
.department__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* строка со второй кнопкой */
.department__row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.department__item {
    width: 320px;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.department__item--wide {
    width: 420px;
}

.department__item--info {
    width: 700px;
    font-size: 12px;
}

.department__item-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

/* стрелка */
.department__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16;
}

