.tfnz-sharesection_container {
    max-width: 1270px;
    margin: 0 auto;
    width: 90%;
    border: 2px solid var(--accent-color);
    border-radius: 0.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 64px 24px 40px 24px;
    gap: 16px;
}

.tfnz-sharesection_arrow {
    position: absolute;
    transform: translateX(-50%);
    top: -44px;
    left: 50%;
    width: 84px;
    color: var(--accent-color);
}

.tfnz-sharesection_text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.tfnz-sharesection_title {
    text-transform: none;
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin: 0 !important;
    color: #000 !important;
    font-weight: 500 !important;
}

.tfnz-sharesection_paragraph {
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.tfnz-sharesection_links {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: relative;
    padding-top: 46px;
    flex-wrap: wrap;
}

.tfnz-sharesection_links::before {
    content: "Share on";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.tfnz-sharesection_link {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.tfnz-sharesection_link svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    color: var(--accent-color);
}

@media screen and (min-width: 1250px) {
    .tfnz-sharesection_container {
        border-top-left-radius: 20px;
        flex-direction: row;
        gap: 120px;
        padding: 62px 120px 56px 120px;
        justify-content: center;
    }

    .tfnz-sharesection_arrow {
        top: -42px;
        left: -13px;
        transform: none;
        width: 104px;
    }

    .tfnz-sharesection_text {
        text-align: left;
        position: relative;
        gap: 24px;
    }

    .tfnz-sharesection_title {
        font-size: 1.7rem;
    }

    .tfnz-sharesection_text::after {
        content: "";
        position: absolute;
        right: -50px;
        width: 2px;
        top: 0;
        bottom: 0;
        background: var(--accent-color);
    }

    .tfnz-sharesection_links {
        width: min-content;
        justify-content: left;
        flex-grow: 0;
        flex-shrink: 0;
        flex-wrap: nowrap;
    }

    .tfnz-sharesection_links::before {
        text-align: left;
    }
}