:root {
    --text-color: #333333;
    --text-secondary: #666666;
    --primary-color: #00BFFF;
    --bg-color: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --border-color: #E0E0E0;
    --section-padding: 80px 0;
}

.news {
    width: 100%;
    padding: var(--section-padding);
    background: var(--bg-color);
}

.news__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.news__header {
    text-align: center;
    margin-bottom: 60px;
}

.news__title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.news__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.news__item {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news__item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.news__item-image-wrapper {
    width: 350px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news__item-image {
    width: 100%;
    height: auto;
    display: block;
}

.news__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.news__item-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.news__item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news__item-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    word-break: break-word;
    overflow: hidden;
}

.news__item-links {
    display: flex;
    gap: 20px;
}

.news__item-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news__item-link:hover {
    color: #EF910D;
    text-decoration: none;
}

.news__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.news__pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news__pagination-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.news__pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.news__pagination-btn--active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
}

.news__pagination-btn--disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news__pagination-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.news__pagination-btn:hover:not(:disabled) .news__pagination-icon {
    opacity: 1;
}

.news__pagination-icon--rotate {
    transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
    .news__title {
        font-size: 1.8rem;
    }

    .news__item-image-wrapper {
        width: 300px;
    }
}

@media screen and (max-width: 992px) {
    .news__item {
        flex-direction: column;
        gap: 20px;
    }

    .news__item-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .news__item-content {
        text-align: center;
    }

    .news__item-links {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .news {
        padding: 60px 0;
    }

    .news__title {
        font-size: 1.5rem;
    }

    .news__header {
        margin-bottom: 45px;
    }

    .news__item-title {
        font-size: 1.1rem;
    }

    .news__item-description {
        font-size: 0.85rem;
    }

    .news__pagination {
        margin-top: 40px;
    }

    .news__pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .news__pagination-icon {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .news {
        padding: 40px 0;
    }

    .news__title {
        font-size: 1.3rem;
    }

    .news__subtitle {
        font-size: 0.9rem;
    }

    .news__header {
        margin-bottom: 35px;
    }

    .news__item {
        padding: 20px;
        gap: 15px;
    }

    .news__item-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .news__item-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .news__item-links {
        gap: 15px;
    }

    .news__item-link {
        font-size: 0.85rem;
    }

    .news__pagination {
        margin-top: 30px;
        gap: 8px;
    }

    .news__pagination-btn {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .news__pagination-icon {
        width: 12px;
        height: 12px;
    }
}