.vtr-page-content {
    max-width: 820px;
    color: var(--vtr-text);
}

.vtr-page-content p {
    margin: 0 0 18px;
    line-height: var(--vtr-lh-body);
}

.vtr-page-content ol {
    margin: 14px 0 20px;
    padding-left: 22px;
}

.vtr-page-content ul {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 20px;
}

.vtr-page-content li {
    margin-bottom: 10px;
    line-height: var(--vtr-lh-body);
}

.vtr-page-content h2,
.vtr-page-content h3 {
    color: var(--vtr-heading);
    font-weight: 700;
}

.vtr-page-content h2 {
    margin: 42px 0 18px;
    font-size: 24px;
    line-height: var(--vtr-lh-h2);
}

.vtr-page-content h3 {
    margin: 26px 0 14px;
    font-size: 20px;
    line-height: var(--vtr-lh-h3);
}

.vtr-page-content h2:first-child,
.vtr-page-content h3:first-child {
    margin-top: 0;
}

.vtr-page-content h2:not(:first-child) {
    position: relative;
    padding-top: 34px;
}

.vtr-page-content h2:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(78%, 680px);
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(22, 196, 178, 0) 0%,
        rgba(22, 196, 178, 0.25) 15%,
        rgba(22, 196, 178, 0.6) 50%,
        rgba(22, 196, 178, 0.25) 85%,
        rgba(22, 196, 178, 0) 100%
    );
}

@media (max-width: 767px) {
    .vtr-page-content {
        max-width: 100%;
    }

    .vtr-page-content h2 {
        font-size: 22px;
        margin: 32px 0 14px;
    }

    .vtr-page-content h3 {
        font-size: 18px;
        margin: 22px 0 12px;
    }

    .vtr-page-content h2:not(:first-child) {
        padding-top: 26px;
    }

    .vtr-page-content h2:not(:first-child)::before {
        left: 50%;
        transform: translateX(-50%);
        width: min(88%, 420px);
        max-width: none;
    }

    .vtr-page-content p,
    .vtr-page-content li {
        line-height: 1.65;
    }
}

.vtr-page {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-top: 0;
    border-radius: 26px;
    box-shadow:
        inset 0 2px 0 #18c7bd,
        0 12px 28px rgba(15, 23, 42, 0.055);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.vtr-page::before,
.vtr-page::after {
    display: none !important;
    content: none !important;
    background: none !important;
    box-shadow: none !important;
}

.vtr-link {
    color: #16c4b2;
    text-decoration: none;
    font-weight: 500;

    background-image: linear-gradient(#16c4b2, #16c4b2);
    background-size: 0% 1px;
    background-position: left 100%;
    background-repeat: no-repeat;

    transition: background-size 0.4s ease;
}

.vtr-link:hover {
    background-size: 100% 1px;
}

.vtr-page-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.vtr-page-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;

    font-size: 14px;
    font-weight: 600;
    color: #16c4b2;

    text-shadow: 0 0 6px rgba(22, 196, 178, 0.35);
}
