.panel-social {
    position: relative;
    margin-bottom: 40px;
}

.panel-social .title-cont {
    position: relative;
    padding: 0 16px 30px;
    text-align: center;
}

.panel-social .bg-image,
.panel-social .bg-image .slide-img {
    position: absolute;
    z-index: 1;
}

.panel-social .bg-image {
    inset: 34px 0 0 0;
    background: var(--blue);
}

.panel-social .bg-image .slide-img {
    inset: 0;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-social .title,
.panel-social .hashtag {
    position: relative;
    z-index: 2;
}

.panel-social .title {
    margin-bottom: 4px;
    font-family: var(--handelson);
    font-weight: normal;
    font-size: 4.625rem;
    line-height: 0.8;
    color: var(--teal);
}

.panel-social .hashtag {
    display: block;
    font-family: var(--typewriter);
    font-weight: normal;
    font-size: 1.625rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--off-white);
}

.panel-social .links-cont {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 16px 20px;
    background:
        url('/includes/public/assets/shared/paint-left.svg') no-repeat left center / 170px auto,
        url('/includes/public/assets/shared/paint-right.svg') no-repeat right center / 170px auto,
        var(--teal-dark);
}

.panel-social .social-links {
    gap: 16px;
}

.panel-social .social-links .social-network {
    padding: 0;
}

.panel-social .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border: 1px solid var(--off-white);
    border-radius: 50%;
    font-size: 17.4px;
    text-decoration: none !important;
    color: var(--off-white);
    transition: border-color var(--transition), color var(--transition);
}

@media (hover: hover) {
    .panel-social .social-links .social-link:hover {
        border-color: var(--yellow);
        color: var(--yellow);
    }
}

@media (min-width: 64em) {
    .panel-social {
        display: grid;
        grid-template:
            'title links' auto
            'embed embed' auto / minmax(0, 1fr) 24.65%;
        gap: 0 2px;
        margin-bottom: 138px;
    }

    .panel-social .title-cont {
        display: flex;
        align-items: center;
        gap: 4rem;
        grid-area: title;
        padding: 0 58px 0 50px;
        text-align: left;
    }

    .panel-social .bg-image {
        inset: 0;
    }

    .panel-social .title {
        margin: 0;
    }

    .panel-social .embed-cont {
        grid-area: embed;
    }

    .panel-social .links-cont {
        grid-area: links;
    }
}

@media (min-width: 90em) {
    .panel-social {
        padding-top: 30px;
    }

    .panel-social .title {
        margin-top: -30px;
        font-size: 8.75rem;
    }

    .panel-social .hashtag {
        font-size: 26px;
    }
}