.articles {
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 100vw;
}

.article {
	padding: 1rem;
	margin: 1rem;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: #fafafa;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.article-title {
    color: #067031;
    font-size: 18px;
    text-decoration: none;
}
.article-title:hover {
    text-decoration: underline;
}

.link-image-card {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #fafafa;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 16px;
	margin: 12px;
	min-width: 210px;
	max-width: 320px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-image-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-image-card img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
	margin-bottom: 8px;
}

.link-image-card a {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0044cc;
	text-decoration: none;
}

.link-image-card a:hover {
  	text-decoration: underline;
}

.show-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    box-sizing: border-box;
}

.show-article-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.show-article-flex-item {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    min-width: 0;
}
.show-article-flex-item h1 {
	overflow-wrap: break-word;
	word-break: break-word;
}

.show-article-flex-item img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.indexize-title {
    font-size: 24px;
    font-weight: 800;
    margin: 1rem 0;
}

.indexize-content {
    font-size: 16px;
    font-weight: 300;
    margin: 1rem 0;
}

@media(max-width: 772px) {
	.show-article-container {
		padding: 12px;
	}
}
