#main {
	padding: 20px 0;
	max-width: min(60em, 100%);
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width: 980px) {
	#main {
		max-width: 100%;
		margin-left: 3%;
		margin-right: 3%;
	}
}
@media only screen and (max-width: 400) {
	#main {
		max-width: 100%;
		margin-left: 1em;
		margin-right: 1em;
	}
}
h3 {
	color: var(--secondary-color);
	font-weight: bold;
	margin-bottom: 4px;
}
p {
	margin-top: 0;
}
strong {
	color: var(--secondary-color);
}
.footer {
	margin-top: 2em;
}
.version {
	font-size: .9rem;
}
img.about {
	display: block;
	max-width: min(40em, 100%);
	margin-left: auto;
	margin-right: auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.post-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 12px;
}

.post-title {
    margin: 0 0 8px;
}

.post-title a {
    text-decoration: none;
    color: var(--dark-text-color);
}

.post-excerpt {
    margin-bottom: 12px;
}

.read-more {
    font-weight: 700;
    text-decoration: none;
    color: var(--secondary-color);
}