/* Practice Page Styles */

/* Hospital & clinic affiliation cards */
.practice-location-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.practice-location-card .hospital-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 43, 78, 0.1);
    flex-grow: 1;
}

.practice-location-card .hospital-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
}

.practice-location-card .hospital-meta-item:last-child {
    margin-bottom: 0;
}

.practice-location-card .hospital-meta-item i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 14px;
}

.practice-location-card .hospital-meta-item strong {
    color: var(--primary-navy);
}

/* Get Directions link */
.hospital-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--accent-gold);
    color: var(--primary-navy) !important;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.hospital-directions:hover {
    background: #b89a3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 168, 75, 0.3);
}

/* Technology strip intro. */
.tech-strip .process-step-card {
    background: #fff !important;
    border: 1px solid rgba(200, 168, 75, 0.2);
    border-radius: 12px;
}

/* Supporting visual */
.supporting-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13, 43, 78, 0.15);
}

.supporting-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Related links strip */
.related-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--accent-gold);
    border-left: 4px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    height: 100%;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.related-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(200, 168, 75, 0.18);
}

.related-link-card h5 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.related-link-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.related-link-card .related-arrow {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}