   
   
    .podwitaj {
        display: block;

        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500;

        margin-bottom: 1rem;

        text-shadow: 0 4px 15px rgba(0,0,0,.4);
    }

    .river {
        position: absolute;
        left: 0;
        top: 100vh;
        width: 100%;
        height: 500vh;
        background-image: url("/images/rzeka/rzeka.png");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100% 500vh;
        z-index: 0;
        pointer-events: none;
    }

    .zone {
        background: transparent;
    }

    .project-card2 {
        width: min(80vw, 670px);
        margin-bottom: 20px;
        border-radius: 24px;
        border-color: white;
        overflow: hidden;
    }

    .project-card2 img {
        display: block;
        width: 100%;
        max-height: 65vh;
        object-fit: cover;
    }

    #karolewka {
        object-position: bottom;
    }

    #current-icons {
        margin-top: 5px;
    }
    
    #current-icons a::after {
        content: attr(data-label);

        position: absolute;
        left: 50%;
        bottom: 130%;

        transform: translateX(-50%) translateY(8px);

        padding: .45rem .8rem;

        background: #d8c3a5;
        color: white;

        font-size: .8rem;
        font-weight: 500;
        white-space: nowrap;

        border-radius: 12px;

        opacity: 0;
        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease;
    }

    #current-icons a:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    #myAudio {
        overflow: visible;
        min-height: 50px;
        padding: 5px 0;
    }

@media (max-width: 768px) {
    .river {
        background-repeat: repeat;
        height: 525vh;
    }
    #current-icons {
        gap: 1rem;
    }

    #current-icons a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    #current-icons a::after {
        content: attr(name);
        position: static;
        transform: none;
        opacity: 1;
        display: block;
        background: none;
        color: white;
        padding: 0;
        border-radius: 0;
    }
}