.frontpage-hero-logo{
    filter: drop-shadow(0px 1.5px 1.5px black);
}

.frontpage-popup{
    position: absolute;
    max-width: 300px;
    max-height: 200px;
    bottom: 15px;
    right: clamp(20px, 4vw, 100px);
    margin: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.frontpage-popup > img{
    height: 150px;
}

.frontpage-popup.hidden {
    opacity: 0;
    pointer-events: none;
}
.frontpage-popup a{
    color: #333;
    text-align: center;
    letter-spacing: inherit;
}

.popup-image-title{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 40px;
    color: #333;
    background: rgba(255, 255, 255);
}

/* Close button */
.close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #eee;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.close-btn:hover {
    background-color: #ccc;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .frontpage-popup{
        display: none;
    }
}