.articles {
    background-color: var(--background-color);
}

.article-preview {
    display: flex;
    align-items: stretch;
    margin: 20px auto;
    max-width: 1000px;
    height: 280px;
    background-color: var(--primary-text-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.article-preview img {
    max-width: 380px;
    object-fit: cover;
}

.content-overview {
    background-color: var(--background-color-light);
    width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content-overview p {
    padding-bottom: 10px;
    color: var(--secondary-text-color);
}

.content-overview h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-text-color);
}

.content-overview h3 {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin: 10px 0;
    display: flex;
    justify-content: left;
    hyphens: auto; 
	text-align: justify;
}

.content-overview button {
    background-color: var(--primary-key-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: auto;
    width: 50%;
}

.content-overview button:hover {
    background-color: var(--secondary-key-color);
}