

/* Start:/local/templates/epitum/components/bitrix/news/authors/bitrix/news.detail/.default/style.css?17501523554875*/
/* Author section styles */

.author + .articles {
	margin-bottom: 2em;
}

.author {
    margin: 0 auto;
}

.author__header {
    margin-bottom: 30px;
}

.author__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 0.93;
    color: #7B80BD;
}

.author__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author__profile {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-top: 50px;
}

.author__linkedin {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px;
    border-radius: 5px;
    background: #4652a0;
    z-index: 2;
}

.author__linkedin img{
	width: 15px;
	height: 15px;
}

.author__avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    //overflow: hidden;
    background-color: #4652A0; /* Фиолетовый фон, если изображение не загрузится */
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.author__avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.author__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.author__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author__name {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: #4652A0;
	margin-block-start: 0em;
    margin-block-end: 6px;
    margin-inline-start: 0px;
    margin-inline-end: 6px;
}

.author__position {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.08;
    color: #000000;
	margin-block-start: 0em;
    margin-block-end: 6px;
    margin-inline-start: 0px;
    margin-inline-end: 6px;
}

.author__bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin-bottom: 20px;
}

.author__bio-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
}

.author__social {
    margin-top: 20px;
}

.author__social-link {
    display: inline-block;
}

.author__social-icon {
    width: 24px;
    height: 24px;
}

/* Articles section styles */
.articles {
    margin: 0 auto;
}

.articles__title {
    font-weight: 400;
    font-size: 34px;
    line-height: 1.29;
    color: #4652A0;
    margin-bottom: 30px;
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.article-card__date {
    font-weight: 300;
    font-size: 10px;
    line-height: 1;
    color: #FFFFFF;
}

.article-card__tag {
    font-weight: 300;
    font-size: 10px;
    line-height: 1;
    color: #FFFFFF;
}

.article-card__image {
    height: 122px;
    overflow: hidden;
    position: relative;
}

.article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__content {
    padding: 20px;
}

.article-card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    color: #23224A;
    margin-bottom: 15px !important;
}

.article-card__title a {
    color: #23224A;
    text-decoration: none;
}

.article-card__description {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.1;
    color: #4652A0;
    margin-bottom: 15px;
    margin-top: 0;
	-webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card--featured {
    position: relative;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .author__profile {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author__name {
        font-size: 32px;
    }
    
    .author__position {
        font-size: 20px;
    }
    
    .author__bio-text {
        font-size: 18px;
    }

    .articles__grid {
        grid-template-columns: 1fr;
    }

    .articles__title {
        font-size: 28px;
    }
} 



/* End */
/* /local/templates/epitum/components/bitrix/news/authors/bitrix/news.detail/.default/style.css?17501523554875 */
