:root {
    --gallery-cta-shadow: rgba(44, 53, 55, 0.25);
}

.gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 40px;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gallery-cta-btn:hover {
    background: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px var(--gallery-cta-shadow);
}
