.htu-box-wrap {
    color: white;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.htu-box-title {
    text-align: center;
    font-weight: 500;
    padding: 0.25rem;
    border-top-right-radius: var(--radius-lg);
    border-top-left-radius: var(--radius-lg);
}

.htu-box-title.outcall {
    background: var(--violet);
}

.htu-box-title.incall {
    background: var(--blue);
}

.htu-box-step {
    padding: 0.25rem 1rem;
    font-size: .9rem;
    font-weight: 500;
}

.htu-box-step.outcall {
    background: linear-gradient(90deg, rgba(183,44,229,1) 50%, rgba(183,44,229,0) 100%);
}

.htu-box-step.incall {
    background: linear-gradient(90deg, rgba(49,173,227,1) 50%, rgba(49,173,227,0) 100%);
}

.htu-box-content img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .htu-box-content img {
        height: 100%;
    }
}

.htu-box-content p {
    padding: 1rem;
    font-size: .9rem;
    white-space: pre-line;
}

@media screen and (min-width: 992px) {
    .htu-box-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
}

span.material-icons.down {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: -0.75rem;
}

@media screen and (min-width: 992px) {
    span.material-icons.down {
        display: none;
    }
}
