body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    text-align: center;
    padding: 40px 0;
}

.site-title {
    margin: 0;
    font-size: 2em;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

/* Navigation */
.site-nav {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
}

.site-nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
}

/* Grid layout for artwork */
.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.post-preview {
    display: block;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.preview-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.title {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Hover effects */
.post-preview:hover .preview-header {
    opacity: 1;
}

.post-preview:hover .preview-image {
    transform: scale(1.02);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #ddd;
}

.painting_et_description {
    width: auto;
    text-align: center;
    padding: 20px;
    max-height: 100vh;
}

img {
    max-width: 100%;
    max-height: 60vh;
    margin: auto;
}
	