.related-clinics-section {
    padding: 40px 20px 80px;
    background-color: #e9f3f8;
}

.related-clinics-section .clinics-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin: 0 0 40px;
    text-align: center;
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px
}

.clinic-card {
    background: #fff;
    border: 1px solid #d5e5f2;
    box-shadow: 3px 2px 5px 3px rgba(115, 176, 207, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.clinic-card:hover {
    box-shadow: 3px 2px 5px 3px rgba(115, 176, 207, 0.5);
}

.clinic-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%
}

.clinic-card-image {
    height: 140px;
    background: #D9D9D9
}

.clinic-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.clinic-thumb.placeholder {
    background: #dbe5ef
}

.clinic-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 30px 15px 30px;
}

.clinic-card-title {
    font-size: 18px;
    line-height: 1.3;
    color: #04375f;
    padding: 15px 30px 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.clinic-card-phone {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #04375f;
}

.clinic-card-divider {
    height: 1px;
    background: #D7D7D7;
    margin: 25px 0 15px
}

.clinic-card-city {
    color: #1e5c9f;
    font-size: 14px
}


@media (min-width: 768px) {
    .hero-section-heading {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .clinics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}