* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}

/* Hide mobile hero elements on desktop */

.hero-mobile-logo,
.hero-mobile-image {
    display: none;
}

.public-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.public-alert.success {
    background: #e8f8ef;
    color: #18864b;
}

.public-alert.error {
    background: #fff0f0;
    color: #c33d3d;
}

.public-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    padding: 40px;
}

.gallery-public-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-public-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gallery-public-card img {
    height: 260px;
    object-fit: cover;
}

.gallery-public-card figcaption {
    padding: 18px;
    font-weight: 600;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: inherit;
}

