.dc-dept-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.dc-dept-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dc-dept-title {
    flex: 1;
}

.dc-dept-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dc-dept-icon img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .dc-dept-item {
        flex-wrap: wrap;
    }
}
