.clinic-card-link {
    color: inherit;
}

.clinic-card-link:hover .clinic-title-link {
    color: #0d6efd; /* Bootstrapのリンク色 (青) */
    text-decoration: underline;
}

.clinic-title-link {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0d6efd; /* 常に青色リンク */
    text-decoration: underline;
}

.clinic-address-area {
    color: #333;
    font-size: 0.95rem;
}

.clinic-card-link:hover .clinic-card {
    background-color: #f8f9fa; /* 薄いグレー */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32px, 1fr));
    gap: 4px;
    padding-top: 8px;
}

.icon-box {
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin: 0 auto;
}

