.panel-social {
    position: relative;
    padding-block-start: 43px;
    margin-block-end: 50px;
}

.panel-social::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 500px;
    opacity: 0.16;
    z-index: -2;
    background-image: url(/includes/public/assets/shared/decorations/palms/black-palms-social-desk.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 90em) {
    .panel-social::before {
        height: 686px;
        top: 42px;
    }
}

.panel-social .header-container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media screen and (min-width: 40em) {
    .panel-social {
        padding-block-start: 120px;
        margin-block-end: 100px;
    }
    .panel-social .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding-block-end: 41px;
    }
    .panel-social .header-container .title-container {
        width: max-content;
        text-align: left;
    }
}

.panel-social .title-container h2 {
    color: var(--teal-34);
    font-family: var(--font-delight);
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.panel-social .title-container p {
    line-height: 28px; /* 175% */
}

@media screen and (min-width: 40em) {
    .panel-social .title-container h2 {
        font-size: 4.375rem;
    }
    .panel-social .title-container p {
        font-size: var(--text-lg);
    }
}

@media screen and (min-width: 64em) {
    .panel-social .title-container h2 {
        font-size: 7.5rem;
    }
}

.panel-social .social-container .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    color: var(--white);
    border-radius: 50%;
    background-color: var(--teal-34);
    font-size: 25px;
}

@media (hover: hover) {
    .panel-social .social-container .social-links a:hover {
        background-color: var(--teal-26);
    }
}

@media screen and (min-width: 40em) {
    .panel-social .social-container {
        align-self: center;
    }
    .panel-social .social-container .social-links a {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}