/* Google Business Profile section styles */
.clinic-gmb-section {
    margin-bottom: 1.5em;
    padding: 1.5em;
    background: #fff;
    border-radius: 8px;
}

.gmb-data-grid {
    display: grid;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

@media (min-width: 768px) {
    .gmb-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gmb-item.gmb-hours {
        grid-column: 1 / -1;
    }
}

.gmb-item {
    display: grid;
    gap: 0.5em;
}

.gmb-label {
    font-weight: 600;
    color: #5f6368;
    font-size: 0.9em;
}

.gmb-value {
    color: #202124;
}

.gmb-value a {
    color: #1a73e8;
    text-decoration: none;
}

.gmb-value a:hover {
    text-decoration: underline;
}

.opening-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.opening-hours-list li {
    padding: 0.25em 0;
    color: #202124;
    font-size: 0.95em;
}

.rating-stars {
    color: #fbbc04;
    letter-spacing: 1px;
}

.gmb-view-profile {
    text-align: right;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25em;
    margin-top: 1.25em;
}

.gmb-view-profile .button-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1em;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s;
}

.gmb-view-profile .button-link:hover {
    background: rgba(26, 115, 232, 0.1);
    text-decoration: none;
}