.article-container h1
 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
}

.article-container h2
 {
    margin: 0;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 28px;
}

.article-container p {
    margin: 0;
}

.article-container {
    font-family: Josefin Sans;
    padding: 43.5px 0 43.5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    background-color: #204c8c;
}

.article-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.article-header h1 {
    color: #ffffff !important;
	text-align: center;
}

.article-header span {
    font-style: italic;
}

.article-header p {
    font-family: PT sans;
    font-weight: 400;
    font-size: 21px;
    line-height: 27.17px;
    color: #8c99b3;
}

.research-articles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.article-item {
    max-width: 256px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 24px 0px 24px;
    height: 312px;
}

.article-content h2 {
    color: #ff8900;
}

.article-content span {
    font-family: PT Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.12px;
    color: #5d5f64;
}
.article-item img {
    max-width: 100%;
    height: 198px;
    object-fit: cover;
}

.cta-button {
    width: 156px;
    background-color: #ff8900;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    border-radius: 1000px;
    border: 0;
    padding: 12px 0 12px 0;
    display: block;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .article-container {
        padding: 48px 16px;
    }
    .research-articles {
        flex-direction: column;
        gap: 24px;
    }
    .article-content {
        height: auto;
        padding: 24px;
    }
    .article-item {
        max-width: 328px;
        padding: 0;
    }
    .article-header {
        text-align: center;
    }
}

@media screen and ((min-width: 769px) and (max-width: 1024px)) {
    .article-container {
        padding: 48px 12px;
    }

    .article-item {
        max-width: 31%;
    }
	
    .research-articles {
        gap: 24px;
    }
	
	.article-item:last-child {
		display: none;
	}
}
