.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #ccc;
    aspect-ratio: 1;
    border-radius: 15px;
}

.gallery-coming-soon {
    margin-top: 1.2rem;
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 34, 64, 0.06);
}

.gallery-coming-soon h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2e4a72;
}

.gallery-coming-soon p {
    margin: 0.5rem 0 0;
    color: #5a7090;
    font-size: 0.95rem;
    line-height: 1.45;
}