

/* Start:/bitrix/templates/university_default/components/bitrix/news.detail/sotrudnik_detail/style.css?17470393612737*/
.employee-detail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin: 0 auto 20px auto;
    padding: 0 0px;
    max-width: 1200px;
}

.employee-detail__photo {
    flex: 1;
    max-width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    border-radius: 10px;
}

.employee-detail__photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.employee-detail__info {
    flex: 1;
    background-color: #fdfdfd;
    border-radius: 10px;
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.employee-detail__name {
    padding-left: 20px;
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.employee-detail__column a {
    color: #007acc;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: break-word;
}

.employee-detail__link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.employee-detail__link:hover {
  
    text-decoration: none;
	color: #0078D7 !important;
}

.employee-detail__name:hover {
    color: #0078D7 !important;
}

.employee-detail__properties {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.employee-detail__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.employee-detail__properties i,
.employee-detail__icon {
    margin-left: 30px;
    color: #666666;
    font-size: 22px;
}

.employee-detail__link:hover .employee-detail__icon {
    color: #0078D7;
}

.employee-detail__properties p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    word-break: break-word;
    overflow-wrap: break-word;
}

.employee-detail__properties i {
    margin-right: 20px;
    color: #666666;
    font-size: 18px;
}
.employee-detail__photo-icon {
    font-size: 100px;
    color: #999;
    opacity: 0.5;
}

/* Медиа-запросы */
@media (min-width: 768px) {
    .employee-detail-wrapper {
        flex-direction: row;
    }

    .employee-detail__photo {
        flex: 1;
        max-width: 200px;
    }

    .employee-detail__properties {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .employee-detail__photo {
        flex: 1;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .employee-detail__info {
        padding: 0px;
    }
.employee-detail__icon {
    margin-right: 50px;
}
}

/* End */


/* Start:/bitrix/templates/university_default/components/bitrix/news.detail/journal/style.css?17689912353387*/
.journal-detail-new {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #ffffff;
}

.journal-bg-split {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #1b4723;
    z-index: 1;
}

.journal-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* СЕТКА ДЛЯ ДЕСКТОПА */
.journal-grid {
    display: grid;
    grid-template-columns: 450px 1fr; /* Левая колонка 450px, правая - остаток */
    grid-template-areas: 
        "cover info-top"
        "cover info-bottom";
    gap: 0 40px;
}

.journal-left {
    grid-area: cover;
    align-self: start;
    padding-top: 20px;
}

.journal-info-top {
    grid-area: info-top;
    padding-bottom: 40px;
    align-self: end; /* Прижимаем к низу, чтобы быть ближе к нижнему блоку, если текста мало */
}

.journal-info-bottom {
    grid-area: info-bottom;
    padding-top: 40px;
    color: #fff;
}

/* Стили элементов (без изменений логики) */
.journal-main-cover img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 4px;
}

.journal-title { font-size: 38px; line-height: 1.2; margin-bottom: 10px; }
.journal-title a { color: #222; text-decoration: none; }
.journal-title a:hover { color: #222 }
.journal-meta { color: #888; margin-bottom: 20px; }
.journal-descr { line-height: 1.6; color: #222; }
.other-title { font-size: 20px; margin-bottom: 30px; }

.other-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.other-item-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.other-item-link:hover { transform: translateX(5px); opacity: 0.8; color: #fff; }
.other-img { flex: 0 0 80px; }
.other-img img { width: 100%; border-radius: 2px; }
.other-name { font-size: 14px; font-weight: 500; }

.archive-btn {
    display: inline-block;
    padding: 12px 35px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    margin-top: 40px;
}

.archive-btn:hover { background: #fff; color: #1b4723;text-decoration: none }

/* АДАПТИВНОСТЬ */
@media (max-width: 991px) {
    .journal-grid {
        grid-template-columns: 1fr; /* Одна колонка */
        grid-template-areas: 
            "info-top"    /* Сначала текст */
            "cover"       /* Потом картинка */
            "info-bottom"; /* Потом выпуски */
        gap: 30px 0;
    }

    .journal-bg-split {
        display: none;
    }

    .journal-left {
        justify-self: center; /* Центрируем обложку */
        width: 100%;
        max-width: 400px;
        padding-top: 0;
    }

    .journal-info-top {
        padding-bottom: 0;
        align-self: start;
    }

    .journal-info-bottom {
        background: #1b4723;
        margin: 0 -20px; /* Растягиваем фон на всю ширину экрана */
        padding: 40px 20px;
    }

    .other-grid {
        grid-template-columns: 1fr; /* Выпуски в столбик */
        gap: 20px;
    }

    .journal-title { font-size: 28px; }
}
/* End */
/* /bitrix/templates/university_default/components/bitrix/news.detail/sotrudnik_detail/style.css?17470393612737 */
/* /bitrix/templates/university_default/components/bitrix/news.detail/journal/style.css?17689912353387 */
