.gallery-feature-notice {
    background-color: #E3AB4A;
    color: #000;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 1.25rem;
    transition: max-height 0.55s ease, opacity 0.45s ease, padding 0.55s ease;
}

.gallery-feature-notice.is-visible {
    max-height: 140px;
    opacity: 1;
    padding: 0.9rem 1.25rem;
}

.gallery-feature-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-feature-notice.is-visible {
        max-height: 200px;
    }

    .gallery-feature-notice p {
        font-size: 0.95rem;
    }
}
