

/* Start:/bitrix/templates/ipovszrt/components/bitrix/news/template1/bitrix/news.detail/.default/style.css?17735186464716*/
/* Основной контейнер */
.employee-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Карточка */
.card-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transition: box-shadow 0.3s ease;
}

.card-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Фото */
.card-photo {
    flex: 0 0 280px;
    max-width: 100%;
}

.card-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-photo img:hover {
    transform: scale(1.02);
}

/* Информационный блок */
.card-info {
    flex: 1;
    min-width: 280px;
}

.card-name {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.card-position {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    font-weight: 500;
}

/* Учёные степени / звания */
.card-academic {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.academic-badge {
    background: #eef2ff;
    color: #4338ca;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
}

/* Диссертация */
.card-dissertation {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 5px solid #3b82f6;
}

.diss-label {
    font-weight: 600;
    color: #1e293b;
    margin-right: 8px;
}

.diss-text {
    color: #334155;
    line-height: 1.5;
}

/* Контакты */
.card-contacts {
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.icon-phone {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233b82f6"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.icon-email {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233b82f6"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.contact-text {
    color: #2c3e50;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-text:hover {
    color: #3b82f6;
}

/* Дата (если нужна) */
.card-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Детальный текст */
.card-description {
    flex: 0 0 100%;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid #eef2f6;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1e293b;
}

.card-description p:first-child {
    margin-top: 0;
}

.card-description p:last-child {
    margin-bottom: 0;
}

/* Дополнительные свойства */
.card-properties {
    flex: 0 0 100%;
    margin-top: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px 20px;
}

.property-row {
    display: flex;
    align-items: baseline;
}

.property-name {
    font-weight: 600;
    color: #4b5563;
    min-width: 120px;
    margin-right: 10px;
}

.property-value {
    color: #1f2937;
}

/* Ссылка назад */
.back-link-container {
    margin-top: 30px;
    text-align: center;
}

.back-link {
    display: inline-block;
    padding: 12px 28px;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.2s;
}

.back-link:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Адаптивность */
@media (max-width: 768px) {
    .card-container {
        padding: 20px;
        gap: 20px;
    }
    .card-photo {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .card-name {
        font-size: 1.8rem;
    }
    .card-properties {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /bitrix/templates/ipovszrt/components/bitrix/news/template1/bitrix/news.detail/.default/style.css?17735186464716 */
