body {
margin: 0;
padding: 0;
background: #f8f8f8;
color: #222;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
}

.wrapper {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background: white;
}

.site-header {
border-bottom: 1px solid #ccc;
margin-bottom: 24px;
padding-bottom: 12px;
}

.site-title a {
font-size: 1.8rem;
font-weight: bold;
color: #333;
text-decoration: none;
}

.site-nav {
margin-top: 8px;
}

.site-nav a {
margin-right: 16px;
color: #0066cc;
text-decoration: none;
}

.site-nav a:hover {
text-decoration: underline;
}

.content {
display: flex;
gap: 24px;
align-items: flex-start;
}

.page-image {
flex: 0 0 400px;
max-width: 100%;
height: auto;
border: 1px solid #ccc;
}

.page-text {
flex: 1;
}

.page-text p {
margin-top: 0;
}

.pager {
margin-top: 30px;
padding-top: 15px;
border-top: 1px solid #ddd;
display: flex;
justify-content: space-between;
/*border: 1px solid red;*/
}

.pager a {
color: #0066cc;
text-decoration: none;
/*border: 1px solid blue;*/
}

.pager a:hover {
text-decoration: underline;
}

.site-footer {
margin-top: 40px;
font-size: 0.9rem;
color: #666;
}

@media (max-width: 768px) {

```
.wrapper {
    padding: 12px;
}

.content {
    flex-direction: column;
}
/* 
.page-image {
    width: 100%;
    max-width: 100%;
}
*/

.page-image {
    flex: 0 1 400px;
    /*max-width: 45%;*/
    max-width: 100%;
    height: auto;
}
/*
.pager a {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
*/
```

}

