@font-face {
    font-family: 'StapleExpanded';
    src: url(/_nuxt/fonts/Stapel-SemiExpandedMedium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.news-page {
    box-sizing: border-box;
    width: 100%;
    
    margin: 0 auto;
    padding: 12rem 5% 5rem;
    color: #fff;
    font-family: 'Factor A', 'FactorA', sans-serif;
}

.news-filter {
    margin-bottom: 3rem;
}
.date-range {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.date-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.date-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1.2rem 2rem;
    font-size: 1.8rem;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.date-input:focus {
    border-color: rgba(255, 255, 255, 0.8);
}



.year-select option {
    background: #0a1913;
    color: #fff;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.news-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    opacity: 0.9;
}

.news-item-image {
    width: 40%;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.news-item-titles {
    flex-grow: 1;
}

.news-item-date {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.news-item-title {
    font-family: 'Factor A', 'FactorA', sans-serif !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 3.2rem;
    margin: 0;
}

.news-item-arrow {
    width: 6rem;
    height: 6rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-item-arrow svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.news-item:hover .news-item-arrow {
    background-color: #fff;
    color: #000;
}

.news-item-text {
    font-size: 1.7rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 80%;
}





.btn-more:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 991px) {
    .news-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .news-item-image {
        width: 100%;
        aspect-ratio: auto;
    }
    .news-item-image img {
        height: auto;
    }
    .news-item-text {
        max-width: 100%;
    }
    .news-page {
        padding-top: 10rem;
    }
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link svg {
    width: 2rem;
    height: 2rem;
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.page-link.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.page-dots {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 0 0.5rem;
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.page-link.disabled:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}
