﻿.case-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: .3s;
}

    .case-card:hover {
        transform: translateY(-5px);
        border-color: #c8a14d;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

.case-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #f8f5e8;
    color: #c8a14d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 18px;
}

.case-content {
    flex: 1;
}

    .case-content h5 {
        margin: 0 0 8px;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.4;
    }

    .case-content p {
        margin: 0;
        color: #666;
        line-height: 1.7;
    }
