<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.press-articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2em;
}

.press-articles-container .press-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.press-articles-container .press-article img {
	height: 400px;
    object-fit: contain;
    margin-bottom: 2em;
}

.press-articles-container .press-article&gt;div {
    max-width: 350px;
    margin: 0 auto;
}

.press-articles-container .press-article p {
	color: #000;
}

.press-articles-container a:hover {
	text-decoration: underline;
	text-decoration-color: #000;
}</pre></body></html>