.random-photo {
    margin: 1.5rem 0;
    text-align: center;
}
.random-photo-link {
    display: inline-block;
}
.random-photo-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 1.5rem 0;
}
.photo-grid a {
    display: block;
}
.photo-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}
.photo-grid img:hover {
    transform: scale(1.05);
}
@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}