*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --c-bg: #0e0e0e;
    --c-nav: #1b1c1d;
    --c-red: #e50539;
    --c-green: #28a909;
    --c-text: #e8e8e8;
    --c-muted: #9a9a9a;
    --c-border: #2a2b2d;
    --c-card: #161718;
    --radius: 10px;
    --radius-sm: 6px;
    --font-sans: 'Inter', sans-serif
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: var(--c-red);
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .82
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

.wr {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 20px;
    line-height: 1
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .45)
}

.btn:active {
    transform: translateY(0)
}

.btn--red {
    background: var(--c-red);
    color: #fff
}

.btn--red:hover {
    filter: brightness(1.1);
    color: #fff
}

.btn--green {
    background: var(--c-green);
    color: #fff
}

.btn--green:hover {
    filter: brightness(1.1);
    color: #fff
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--c-red);
    color: var(--c-red)
}

.btn--outline:hover {
    background: var(--c-red);
    color: #fff
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm)
}

.btn--sm {
    padding: 7px 14px;
    font-size: 13px
}

#hdr {
    background: var(--c-nav);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 62px
}

.hdr-logo {
    flex-shrink: 0
}

.hdr-logo img {
    height: 36px;
    width: auto
}

.hdr-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px
}

.hdr-logo-text span {
    color: var(--c-red)
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    margin: 0 12px
}

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.hdr-nav a svg {
    flex-shrink: 0;
    opacity: .75
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto
}

.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--c-muted);
    margin-right: 4px;
    white-space: nowrap
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(40, 169, 9, 0)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background .2s
}

.burger:hover {
    background: rgba(255, 255, 255, .07)
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.is-open span:nth-child(2) {
    opacity: 0
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-nav);
    z-index: 850;
    flex-direction: column;
    padding: 20px 16px;
    gap: 6px;
    overflow-y: auto
}

.mob-menu.is-open {
    display: flex
}

.mob-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    transition: background .2s
}

.mob-menu a:hover {
    background: rgba(255, 255, 255, .06)
}

.mob-menu-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.mob-menu-btns .btn {
    flex: 1;
    justify-content: center
}

#hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-cas-aviator.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(.55)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .88) 40%, rgba(14, 14, 14, .1) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .35);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-red);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px
}

.hero-title {
    font-size: clamp(26px, 5vw, 50px);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hero-title span {
    color: var(--c-red)
}

.hero-desc {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 520px
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.hero-stat strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff
}

.hero-stat span {
    font-size: 12px;
    color: var(--c-muted)
}

.section {
    padding: 64px 0
}

.section-title {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center
}

.section-sub {
    font-size: 14px;
    color: var(--c-muted);
    text-align: center;
    margin-bottom: 40px
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.feature-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 220px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color .25s, transform .25s, box-shadow .25s
}

.feature-card:hover {
    border-color: rgba(229, 5, 57, .4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(229, 5, 57, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0
}

.feature-icon svg {
    color: var(--c-red)
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.feature-card p {
    font-size: 13.5px;
    color: var(--c-muted);
    line-height: 1.6
}

.winners-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.winners-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border);
    background: rgba(229, 5, 57, .06)
}

.winners-header span {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.winners-table-wrap {
    overflow-x: auto
}

.winners-table {
    width: 100%;
    border-collapse: collapse
}

.winners-table th {
    padding: 10px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--c-border);
    background: rgba(0, 0, 0, .2)
}

.winners-table td {
    padding: 11px 14px;
    font-size: 13.5px;
    color: var(--c-text);
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.winners-table tr:last-child td {
    border-bottom: none
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.w-rank {
    font-weight: 700;
    color: var(--c-muted);
    width: 36px
}

.w-rank.top1 {
    color: #ffd700
}

.w-rank.top2 {
    color: #c0c0c0
}

.w-rank.top3 {
    color: #cd7f32
}

.w-nick {
    font-weight: 600;
    color: #fff
}

.w-mult {
    font-weight: 700;
    color: var(--c-red)
}

.w-win {
    font-weight: 700;
    color: var(--c-green)
}

.w-time {
    color: var(--c-muted);
    font-size: 12.5px
}

.video-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.video-tabs {
    display: flex;
    border-bottom: 1px solid var(--c-border)
}

.video-tab {
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-sans)
}

.video-tab.active {
    color: var(--c-red);
    border-bottom-color: var(--c-red)
}

.video-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

.video-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--c-border);
    flex-wrap: wrap;
    gap: 10px
}

.demo-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-top: 1px solid var(--c-border);
    gap: 12px;
    flex-wrap: wrap
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.is-open {
    border-color: rgba(229, 5, 57, .35)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none
}

.faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(229, 5, 57, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .3s
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--c-red)
}

.faq-icon svg {
    color: var(--c-red);
    transition: color .3s
}

.faq-item.is-open .faq-icon svg {
    color: #fff
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7
}

.faq-item.is-open .faq-a {
    display: block
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--c-text);
    line-height: 1.7
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4 {
    color: #fff;
    margin-bottom: 12px;
    margin-top: 28px;
    line-height: 1.3
}

.content-block h1:first-child, .content-block h2:first-child {
    margin-top: 0
}

.content-block h1 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800
}

.content-block h2 {
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 700
}

.content-block h3 {
    font-size: 17px;
    font-weight: 700
}

.content-block h4 {
    font-size: 15px;
    font-weight: 600
}

.content-block p {
    margin-bottom: 14px;
    color: var(--c-text)
}

.content-block ul, .content-block ol {
    margin: 12px 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.content-block li {
    color: var(--c-text);
    font-size: 14.5px
}

.content-block ul li {
    list-style: disc
}

.content-block ol li {
    list-style: decimal
}

.content-block a {
    color: var(--c-red)
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.content-block table th {
    background: rgba(229, 5, 57, .12);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 13.5px;
    border: 1px solid var(--c-border)
}

.content-block table td {
    padding: 10px 14px;
    font-size: 13.5px;
    border: 1px solid var(--c-border);
    color: var(--c-text)
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025)
}

.content-block strong {
    color: #fff;
    font-weight: 700
}

.content-block em {
    color: var(--c-muted)
}

.content-block blockquote {
    border-left: 3px solid var(--c-red);
    padding: 12px 18px;
    background: rgba(229, 5, 57, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--c-muted)
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-red), #a00020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-info p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5
}

.author-info a {
    color: var(--c-red);
    font-size: 13px;
    font-weight: 600
}

#ftr {
    background: var(--c-nav);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 24px
}

.ftr-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 32px
}

.ftr-brand {
    flex: 0 0 200px
}

.ftr-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.ftr-brand-name span {
    color: var(--c-red)
}

.ftr-brand p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6
}

.ftr-col {
    flex: 1 1 140px
}

.ftr-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.ftr-col a {
    display: block;
    font-size: 13px;
    color: var(--c-muted);
    padding: 3px 0;
    transition: color .2s
}

.ftr-col a:hover {
    color: var(--c-text)
}

.ftr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px
}

.ftr-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-muted)
}

.ftr-badge svg {
    opacity: .7
}

.ftr-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px
}

.pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    height: 34px;
    font-size: 11px;
    font-weight: 700;
    color: #ccc
}

.ftr-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.ftr-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ftr-legal {
    font-size: 12px;
    color: var(--c-muted);
    line-height: 1.65;
    max-width: 700px
}

.ftr-copy {
    font-size: 12px;
    color: var(--c-muted);
    text-align: right;
    white-space: nowrap
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .6s ease forwards
}

.fade-up-d1 {
    animation-delay: .1s;
    opacity: 0
}

.fade-up-d2 {
    animation-delay: .22s;
    opacity: 0
}

.fade-up-d3 {
    animation-delay: .34s;
    opacity: 0
}

.xd89a2, .kp3w1r {
    display: none
}

.e7z0q2 {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.wp-block-group {
    display: contents
}

.entry-content {
    display: contents
}

.has-text-align-center {
    text-align: center
}

.alignnone {
    max-width: 100%
}

.wp-caption {
    max-width: 100%
}

@media (max-width: 900px) {
    .hdr-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .features-grid {
        gap: 12px
    }

    .feature-card {
        flex: 1 1 calc(50% - 12px)
    }

    .ftr-top {
        gap: 20px
    }

    .ftr-brand {
        flex: 0 0 100%
    }

    .hero-content {
        padding: 40px 0
    }
}

@media (max-width: 600px) {
    .feature-card {
        flex: 1 1 100%
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .btn--lg {
        width: 100%;
        justify-content: center
    }

    .ftr-bottom {
        flex-direction: column
    }

    .ftr-copy {
        text-align: left
    }

    .widget {
        padding: 8px 12px
    }

    .widget-text {
        font-size: 12px
    }

    .section {
        padding: 44px 0
    }

    .hdr-inner {
        height: 58px
    }

    .mob-menu {
        top: 58px
    }
}

.thfh {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    color: var(--c-text);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .28);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.thfh * {
    max-width: 100%;
}

.thfh h1,
.thfh h2,
.thfh h3 {
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
}

.thfh h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 24px;
}

.thfh h2 {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 700;
    margin: 34px 0 16px;
}

.thfh h3 {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    margin: 24px 0 12px;
}

.thfh p,
.thfh li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.thfh p {
    margin: 0 0 16px;
}

.thfh ul,
.thfh ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.thfh ul {
    list-style: disc;
}

.thfh ol {
    list-style: decimal;
}

.thfh li {
    margin-bottom: 8px;
}

.thfh li::marker {
    color: var(--c-red);
}

.thfh a {
    color: var(--c-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.thfh a:hover {
    color: #ff4d73;
    opacity: 1;
}

.thfh strong {
    color: #fff;
    font-weight: 700;
}

.thfh em {
    color: var(--c-muted);
    font-style: italic;
}

.thfh img,
.thfh svg,
.thfh video,
.thfh iframe {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.thfh table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    -webkit-overflow-scrolling: touch;
}

.thfh th,
.thfh td {
    padding: 11px 13px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
    white-space: nowrap;
}

.thfh th {
    background: rgba(229, 5, 57, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.thfh td {
    color: var(--c-text);
    font-size: 14px;
}

.thfh tr:last-child td {
    border-bottom: none;
}

.thfh blockquote {
    margin: 20px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--c-red);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.thfh blockquote p {
    margin: 0;
    color: var(--c-text);
}

.thfh > ul,
.thfh > ol {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px 18px 18px 34px;
}

.thfh h2 + ul,
.thfh h2 + ol,
.thfh h3 + ul,
.thfh h3 + ol {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .thfh {
        max-width: 100%;
        padding: 30px 18px 44px;
    }

    .thfh h1 {
        margin-bottom: 20px;
    }

    .thfh h2 {
        margin: 28px 0 14px;
    }

    .thfh h3 {
        margin: 20px 0 10px;
    }

    .thfh p,
    .thfh li {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 767px) {
    .thfh {
        padding: 22px 16px 34px;
        border-radius: 12px;
    }

    .thfh h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .thfh h2 {
        font-size: 22px;
        line-height: 1.25;
        margin: 24px 0 12px;
    }

    .thfh h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 18px 0 10px;
    }

    .thfh p,
    .thfh li {
        font-size: 14px;
        line-height: 1.7;
    }

    .thfh ul,
    .thfh ol {
        padding-left: 18px;
    }

    .thfh > ul,
    .thfh > ol {
        padding: 15px 14px 15px 28px;
    }

    .thfh th,
    .thfh td {
        padding: 10px 11px;
        font-size: 13px;
    }

    .thfh blockquote {
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    .thfh {
        padding: 18px 12px 28px;
        border-radius: 10px;
    }

    .thfh h1 {
        font-size: 24px;
    }

    .thfh h2 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .thfh h3 {
        font-size: 17px;
        margin: 16px 0 10px;
    }

    .thfh p,
    .thfh li {
        font-size: 13px;
        line-height: 1.65;
    }

    .thfh ul,
    .thfh ol {
        padding-left: 16px;
        margin-bottom: 16px;
    }

    .thfh > ul,
    .thfh > ol {
        padding: 13px 12px 13px 24px;
    }

    .thfh li {
        margin-bottom: 7px;
    }

    .thfh table {
        margin: 16px 0;
    }

    .thfh th,
    .thfh td {
        padding: 9px 10px;
        font-size: 12px;
    }
}