.banner-art {
    width: 240px;
    height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 100%);
    border-bottom-left-radius: 100%;
    border-left: 40px solid var(--primary-light);
    z-index: 1;
}

.social-widget {
    position: fixed;
    right: 0;
    top: 50%;
    height: 300px;
    margin-top: -120px;
    width: 50px;
    background: var(--primary-color);
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px 5px;
}

.social-widget a {
    color: var(--text-white);
    display: block;
    font-size: 24px;

}

.p-relative {
    position: relative;
}

.error-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 20px;
    color: #c7a627;
}

.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .banner-art {
        width: 140px;
        height: 100px;
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 100%);
        border-bottom-left-radius: 100%;
        border-left: 20px solid var(--primary-light);
        z-index: 1;
    }
}