.divider-anaplast-1 {
    width: 100%;
    padding: 2.5rem 0;
    background-color: var(--apl-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.divider-anaplast-1 .divider {
    max-width: var(--apl-container);
    width: 100%;
    height: 1px;
    position: relative;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--apl-border) 12%,
        var(--apl-border) 88%,
        transparent 100%
    );
}
.divider-anaplast-1 .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3px;
    border-radius: 2px;
    background-color: var(--apl-accent);
}
