/* --- 1. INTRO SECTIE (Gecentreerd & Compact) --- */
.intro-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap; /* Zorgt voor flexibiliteit op mobiel */
}

.consultants-intro-content {
    flex: 1;
    max-width: 550px;
    min-width: 300px;
}

.consultants-intro-image {
    flex: 0 0 200px;
}

.image-glow-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(145deg, #c5a059, #1a1a1a);
    overflow: hidden;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-glow-container:hover .intro-img {
    transform: scale(1.1);
}

/* --- 2. MEDIUMS GRID (App-stijl) --- */
.homepage-mediums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 15px auto 0;
}

.medium-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.medium-card:hover {
    border-color: #c5a059;
    background: rgba(25, 25, 25, 0.5);
}

.medium-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #444;
    object-fit: cover;
}

.medium-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.medium-specialisms {
    font-size: 0.7rem;
    color: #c5a059;
    margin: 2px 0 0 0;
}

/* --- 3. KNOPPEN --- */
.medium-buttons-wrapper {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.medium-btn-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
    transition: 0.3s;
}

.medium-btn-round:hover {
    border-color: #c5a059;
    color: #c5a059;
    background: #000;
}

/* --- 4. RESPONSIVE --- */
@media (max-width: 768px) {
    .intro-flex-wrapper { text-align: center; }
    .consultants-intro-image { margin: 0 auto 20px; }
}
/* Container voor het grid */
.homepage-mediums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* De kaart zelf */
.medium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Avatar styling */
.medium-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Status tekst */
.status-label {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Naam en specialismen */
.medium-card h3 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.medium-card p.specialismen {
    margin: 5px 0 15px 0;
    font-size: 0.8rem;
    color: #c5a059;
    min-height: 35px;
}

/* Knoppenbalk */
.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #444;
    background: #222;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Specifieke stijl voor de Bel-knop (actief) */
.btn-action.btn-call {
    background: #333;
    color: white;
}