/* static/css/photos_page.css */
.page-title {
margin: 0 0 8px 0;
font-size: 28px;
font-weight: 600;
color: var(--text);
}
.page-desc {
margin: 0 0 18px 0;
color: var(--muted);
line-height: 1.8;
font-size: 14px;
}
.empty {
margin: 0;
color: var(--muted);
line-height: 1.8;
font-size: 14px;
}
.mono {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
color: var(--text);
}
.gallery {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.tile {
display: block;
border: 1px solid var(--line);
border-radius: 16px;
overflow: hidden;
background: var(--panel);
box-shadow: var(--shadow);
}
.tile img {
width: 100%;
height: 190px;
object-fit: cover;
display: block;
transform: translateZ(0);
}
.tile:hover {
background: rgba(109, 71, 21, 0.06);
}
@media (max-width: 1100px) {
.gallery {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 700px) {
.gallery {
grid-template-columns: 1fr;
}
.tile img {
height: 220px;
}
}