.banner {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #f39200;
    color: white;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.banner .container .text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.banner svg {
    width: 1.25rem;
    height: 1.25rem;
}

.banner p {
    font-size: 0.875rem;
    line-height: calc(1.25 / 0.875);
}

.banner p .hidden {
    display: none;
}

.banner label {
    flex-shrink: 0;
    border-radius: 9999px;
    padding: 0.375rem;
    margin: 0;
    text-decoration: none;
    border: none;
}

.banner label:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {

    .banner p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .banner p .hidden {
        display: inline;
    }
}

#close-banner:checked+.banner {
    display: none;
}