.mathinal-view {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.edition-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.edition-header h1 {
    margin: 0 0 10px;
}

.edition-header .meta {
    font-size: 0.9rem;
    color: #aaa;
}

.edition-content {
    line-height: 1.6;
}

.edition-content h2,
.edition-content h3 {
    margin-top: 20px;
}

.edition-images {
    margin-top: 30px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.image-item img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}