/* О брокере: карточка */
.sem-broker-info {
    border-radius: 1rem;
    transition: box-shadow 0.25s ease;
}
.sem-broker-info:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Заголовок */
.sem-broker-info-title {
    font-size: 1.1rem;
    color: #1e293b;
}

/* Контент описания */
.sem-broker-info-content {
    line-height: 1.6;
    color: #334155;
}
.sem-broker-info-content :is(p, ul, ol) {
    margin-bottom: 0.5rem;
}
.sem-broker-info-content :is(p:last-child, ul:last-child, ol:last-child) {
    margin-bottom: 0;
}

/* Метки и значения */
.sem-broker-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

/* Ссылки в инфо */
.sem-broker-info-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}
.sem-broker-info-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Разделитель */
.sem-broker-info-divider {
    border-color: #e2e8f0;
    margin: 1rem 0;
}

/* Пустое состояние */
.sem-broker-info-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
}
/* Кнопка портала */
.sem-broker-portal-btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sem-broker-portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}
.sem-broker-portal-btn i {
    transition: transform 0.2s;
}
.sem-broker-portal-btn:hover i {
    transform: translateX(3px);
}

/* Email: визуальное выделение */
.sem-broker-info-link[href^="mailto:"] {
    color: #059669; /* зелёный для почты */
}
.sem-broker-info-link[href^="mailto:"]:hover {
    color: #047857;
    text-decoration: underline;
}
/* Аватар брокера */
.sem-broker-avatar {
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s, transform 0.2s;
    float:right;
}
.sem-broker-info:hover .sem-broker-avatar {
    border-color: #cbd5e1;
    transform: scale(1.05);
}