.dw-depot-grid {
    display: grid;
    align-items: stretch;
}

.dw-depot-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    box-sizing: border-box;
    min-height: 360px;
    padding: 38px 28px 34px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dw-depot-card:hover {
    transform: translateY(-2px);
}

.dw-depot-head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 0 28px;
}

.dw-depot-icon {
    flex: 0 0 auto;
    margin: 0 20px 0 0;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.dw-depot-icon i {
    font-size: 78px;
    line-height: 1;
    display: inline-block;
}

.dw-depot-icon svg {
    width: 78px;
    height: 78px;
    display: inline-block;
}

.dw-depot-icon img {
    width: 78px;
    max-width: 100%;
    object-fit: contain;
    height: auto;
    display: block;
}

.dw-depot-title {
    flex: 1 1 auto;
    width: auto;
    margin: 0;
    padding-top: 6px;
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.dw-depot-title span {
    display: block;
}

.dw-depot-lines {
    width: 100%;
    margin: 0;
    color: #6f6f6f;
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
}

.dw-depot-lines span {
    display: block;
}

.dw-depot-lines span + span {
    margin-top: 2px;
}

@media (max-width: 767px) {
    .dw-depot-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .dw-depot-head {
        margin-bottom: 22px;
    }

    .dw-depot-icon {
        margin-right: 16px;
    }

    .dw-depot-icon i,
    .dw-depot-icon svg,
    .dw-depot-icon img {
        width: 60px;
        height: auto;
    }

    .dw-depot-title {
        font-size: 18px;
        padding-top: 2px;
    }
}
