.case-card {
    display: flex;
    width: 540px;
    height: 337px;
    min-height: 337px;
    background: #61c7ab;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
}

.case-image {
    width: 50%;
    height: 337px;
    min-height: 337px;
    background-size: cover;
    background-position: center;
}

.case-content {
    width: 50%;
    height: 337px;
    box-sizing: border-box;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}

.case-content h3 {
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 8px;
    color: white;
    font-weight: 300;
}

.case-content p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-button,
.case-button:visited,
.case-button:hover,
.case-button:active,
.case-button:focus {
    display: inline-block;
    background: #00506a;
    color: white !important;
    padding: 12px 34px;
    text-decoration: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    width: 160px;
    text-align: center;
    margin-top: 4px;
}

.case-button:hover {
    background: #003d52;
}

@media(max-width: 768px) {
    .case-card {
        width: 100%;
        height: auto;
        min-height: 0;
        flex-direction: column;
    }

    .case-image {
        width: 100%;
        height: 240px;
        min-height: 240px;
    }

    .case-content {
        width: 100%;
        height: auto;
        padding: 28px;
    }

    .case-content p {
        display: block;
        overflow: visible;
    }
}