.mobile--use-case--wrapper {
    display: grid;
    align-items: center;
    justify-items: center;
    border: 2px solid #0A60C8;
    border-radius: 8px;
    overflow: hidden;
}

.mobile--use-case-button {
    width: 100%;
    padding: 24px;
    background: #0A60C8;
    border: none;
    border-bottom: 2px solid #011C35;
    border-radius: 0;
    cursor: pointer;
    transition: all .1s;
    color: #e8f4fcb3;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.mobile--use-case-button:last-of-type {
    border-bottom: none;
}

.mobile--use-case-button.active {
    background: #FFFFFF;
    color: #011C35;
}

.mobile--use-case-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 16px;
    height: 100%;
    max-height: 0;
    transition: max-height .3s ease-in-out;
}

.mobile--use-case-content.uc-show {
    max-height: 1000px;
}

.mobile--use-case--wrapper .ucg-image {
    margin-top: 32px;
    margin-bottom: 32px;
    max-width: 300px;
}

.mobile--use-case-content--title {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.mobile--use-case-content--paragraph {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: #E8F4FC;
    margin-bottom: 16px;
}

.mobile--use-case--wrapper .tdna-cta-link {
    margin-bottom: 32px;
}

@media screen and (min-width: 576PX) {
    .mobile--use-case-content {
        padding: 0 32px;
    }
}

@media screen and (min-width: 768px) {
    .mobile--use-case--container {
        display: none;
    }
}