.gallery-wrapper {
    margin: 50px auto;
    text-align: center;
}

.gallery-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    text-decoration: none;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.gallery-image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-info {
    padding: 15px;
    text-align: center;
}

.gallery-info h3 {
    font-size: 20px;
    margin: 5px 0;
}

.gallery-info p {
    color: #777;
    font-size: 15px;
}
