/* Стили для страницы "СМИ о нас" */
.media-about-us {
    margin: 40px 0 0 0;
}

.media-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 66.666%;
    margin: 0;
}

.media-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.media-item:last-child {
    border-bottom: none;
}

.media-date {
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 400;
    margin: 0;
    padding: 8px 12px;
    position: relative;
    display: inline-block;
    background-color: #ECF1F5;
}

.media-date:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ECF1F5;
}

.media-title {
    font-size: 24px;
    margin: 15px 0;
    color: #0167B3;
    line-height: 1.3;
    font-weight: 700;
}

.media-excerpt {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.media-link {
    display: inline-flex;
    align-items: center;
    color: #0167B3;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 24px;
}

.media-link:hover {
    color: #014d84;
}

.media-link svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.media-link:hover {
    color: #000;
    text-decoration: none;
}

.media-link:hover svg {
    transform: translate(5px, -50%);
}

/* Адаптивность */
@media (max-width: 991px) {
    .media-about-us {
        margin: 30px 0 60px;
    }
    
    .media-list {
        gap: 30px;
        max-width: 100%;
    }
    
    .media-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .media-title {
        font-size: 20px;
    }
    
    .media-excerpt {
        font-size: 15px;
    }
}
