:root {
	--main-color: #002469;
	--main-text-color: white;
	--slider-background: #404040;
	--grey-color: #F4F4F4;
	--accent-color: #F2A900;

	--header-padding: 50px;
	--container-max-width: 1500px;

	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;

	/* font-family: 'Montserrat', sans-serif; */
	font-size: 21px;
	font-weight: 400;
	overflow-x: hidden;
}



/* General Styles */

.container {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.flex__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 40px;
    background-color: #f9f9f9;
}

.news__title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 20px;
}

.news__image {
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.news__content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}

.news__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 30px;
    margin-top: 20px;
    background-color: #f2f2f2;
}

.news__block-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.news__block-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 10px;
}

.news__image {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.timestamp {
    text-align: left;
    font-size: 14px;
    color: #616161;
    margin-top: 20px;
    width: 100%;
}