/* === TOTEM VIPER ESSENCE — Features CSS v3.3.0 === */
/* External stylesheet enqueued by playtix-totem-viper-section.php */
/* RUCSS-proof: uses literal px instead of var() for max-width */

.ptx-feat {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: clamp(60px, 8vh, 120px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ── Header ── */
.ptx-feat__header {
    text-align: center;
    max-width: 1340px;
    margin: 0 auto clamp(28px, 3.5vh, 48px);
    padding: 0 24px;
}

.ptx-feat__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0071e3;
    margin-bottom: 16px;
}

.ptx-feat__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin: 0 0 16px;
    white-space: normal;
}

.ptx-feat__subtitle {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.5;
    color: #6e6e73;
    max-width: min(1000px, 100%);
    margin: 0 auto;
    white-space: normal;
}

/* ── Grid Layout ── */
.ptx-feat__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    align-items: end;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 0 24px;
}

/* ── Products ── */
.ptx-feat__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ptx-feat__product--left {
    justify-self: center;
}

.ptx-feat__product--right {
    justify-self: center;
}

.ptx-feat__product-img {
    max-width: clamp(160px, 25vw, 280px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.12));
}

.ptx-feat__product-label {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: 0.01em;
}

.ptx-feat__product-sublabel {
    font-size: 13px;
    color: #6e6e73;
    font-weight: 400;
}

/* ── Features Column ── */
.ptx-feat__features {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    padding: 16px 0;
}

.ptx-feat__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
}

.ptx-feat__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    color: #0071e3;
}

.ptx-feat__item-title {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 4px;
    line-height: 1.3;
}

.ptx-feat__item-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #6e6e73;
    margin: 0;
}

.ptx-feat__divider {
    height: 1px;
    background: #e5e5ea;
    width: 100%;
}

/* ── CTAs ── */
.ptx-feat__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: clamp(32px, 4vh, 56px);
    flex-wrap: wrap;
    padding: 0 24px;
}

.ptx-feat__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 980px;
    text-decoration: none;
    transition: all .25s ease;
    cursor: pointer;
    border: none;
}

.ptx-feat__btn--primary {
    background: #0071e3;
    color: #fff;
}
.ptx-feat__btn--primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.ptx-feat__btn--ghost {
    background: transparent;
    color: #0071e3;
    border: 1.5px solid #0071e3;
}
.ptx-feat__btn--ghost:hover {
    background: #0071e3;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ptx-feat__title {
        white-space: normal;
    }
    .ptx-feat__subtitle {
        white-space: normal;
    }
    .ptx-feat__layout {
        grid-template-columns: 1fr;
        gap: 40px 0;
        max-width: 560px;
    }
    .ptx-feat__product--left,
    .ptx-feat__product--right {
        justify-self: center;
    }
    .ptx-feat__features {
        order: -1;
    }
    .ptx-feat__product-img {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .ptx-feat__title {
        font-size: 24px;
    }
    .ptx-feat__product-img {
        max-width: 180px;
    }
    .ptx-feat__cta {
        flex-direction: column;
        align-items: center;
    }
    .ptx-feat__btn {
        justify-content: center;
    }
}