.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

.case-card {
    position: relative;
    overflow: hidden;
}
.case-image img {
    width: 100%;
    display: block;
    height: 325px;
}

.case-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background: rgba(3, 133, 155, 0.73);
    padding: 20px;
    z-index: 2;
    width: 95%;
    margin: 0;
}

.case-title {


    /*font-size: 18px;*/
    margin: 0;
}

.case-title a {
    text-decoration: none;
    color: inherit;
}

.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
#nav-below a:hover {
    opacity: .9;
} 