body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: #181a1b;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
    transition: padding-top 0.3s;
}

.news{
    height: 73vh;
}

.news-container {
    padding-top: 90px;
    display: flex;
    justify-content: center; 
    margin: 20px 0; 
}

.news-box {
    width: 50%;
    height: auto; 
    border-radius: 8px; 
    background-color: #708564;
    padding: 15px; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.news-date {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 12px; 
    color: #d3d3d3;
    font-weight: bold; 
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin: 0; 
    color: #ffffff; 
    line-height: 1.4; 
}

.news-box p{
    color: #ebebeb;
}

.see-more{
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
}

.see-more:hover {
    background-color: #a3a3a3;
    transform: translateY(-2px);
}

.see-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-container a{
    text-decoration: none;
    color: #000000;
}

@media (max-width: 600px) {
    .news-box {
        width: 90%; 
        padding: 10px; 
        height: auto;
    }

    .news-title {
        margin-top: 20px;
        font-size: 16px; 
    }

    .news-box p{
        font-size: 14px;
    }

    .see-more {
        font-size: 16px;
        padding: 8px 14px;
        width: 100%;
    }

    .see-more:hover {
        background-color: white;
        transform: none;
    }
    
    .see-more:active {
        transform: none;
        box-shadow: none;
    }
}

@media (min-width: 601px) and (max-width: 1000px) {
    .news-box {
        width: 70%; 
        padding: 10px; 
        height: auto;
    }

    .news-title {
        margin-top: 20px;
        font-size: 16px; 
    }

    .news-box p{
        font-size: 14px;
    }

    .see-more {
        font-size: 16px;
        padding: 8px 14px;
        width: 100%;
    }

    .see-more:hover {
        background-color: white;
        transform: none;
    }
    
    .see-more:active {
        transform: none;
        box-shadow: none;
    }
}