.news-article-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    margin-bottom: 20px;
}

.news-article-header {
    text-align: left;
    display: flex;
    gap: 20px;
}

.news-article-date {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: auto;
}

.news-day {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.news-month,
.news-year {
    display: block;
    font-size: 12px;
}

.news-article-title {
    font-size: 24px;
    margin: 10px 0;
    font-family: 'Geologica';
}


.news-article-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: system-ui;
}

.news-images-container {
    display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	gap: 10px;
    cursor: pointer;
}
.news-images-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    aspect-ratio: 16 / 9;
}
.image-container-view-all {
    position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: white;
	padding: 10px 15px;
	border-radius: 8px;
	font-family: system-ui;
	font-weight: 400;
    cursor: pointer;
}
.image-container-view-all:hover {
    opacity: 0.7;
}

.article-navigation-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    width: 70%;
    max-width: 970px;
    padding: 20px;
    background: lightgray;
    border-radius: 8px;
}

.article-nav-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.article-nav-button img {
    width: 100px;
    height: auto;
    display: block;
}

.article-nav-text {
    display: flex;
    align-items: center;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
}

.article-nav-button.prev .nav-text {
    left: 0;
    transform: translateX(-100%);
}

.article-nav-button.next .nav-text {
    right: 0;
    transform: translateX(100%);
}

.article-nav-button:hover {
    color: #555;
}

.article-nav-button.prev i {
    margin-right: 8px;
}

.article-nav-button.next i {
    margin-left: 8px;
}

.article-center-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
}

.article-center-button:hover {
    background-color: #555;
    color: #fff;
}

@media(max-width: 768px) {
    .news-article-image img {
        max-height: 50vh;
    }

    .news-article-container {
        margin: 20px;
    }

    .article-navigation-section {
        width: 80%;
    }
}
