.wave-container {
    position: relative; 
    width: 100%; 
    height: 200px;
    overflow: hidden;
    
    #wave-canvas {
        width: 100% !important;
        left: 0 !important;
    }

    @media (max-width: 768px) {
        #wave-canvas {
            height: 100px;
        }
    }
    .wave-items {
        position: relative; 
        z-index: 2; 
        height: 100%;
        width: 100%; 
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap:2rem;

        .wave-content{
            padding-left: 12px;
            padding-bottom: 17px;
            gap: 8px;
            display: flex;
            flex-direction: column;

            .hosted-author{
                color: #757575;
                font-size: 10px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: .3px;
                text-transform: uppercase;
            }
            .links{
                display: flex;
                align-items: center;
                flex-direction: row;
                gap: 6px;
                align-self: stretch;
                .links-1 {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }
                .link-item {
                    font-size: 10px;
                    text-transform: uppercase;
                    text-decoration: none;
                    font-weight: 700;
                    border: 1px solid #757575;
                    border-radius: 4px;
                    padding: 4px 8px;
                    color: #757575;
                    white-space: nowrap;
                }
            }
            @media (max-width: 768px) {
                .hosted-author{
                    font-size: 8px;
                }

                .links {
                    flex-direction: column;
                    align-self: flex-start;
                    gap:3.2px;
                
                    .links-1 {
                        gap:3.2px;
                    }
                    .link-item{
                        padding: 3.2px 6.4px;
                        font-size: 8px;
                    }
                }
                .link-item:last-child{
                    width: -webkit-fill-available;
                    text-align: center;
                }
            
            }
        }
        .social-medias {
            padding-right: 12px;
            padding-bottom: 17px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
			justify-content: right;
        }
    }
}
