/* =========================================================
   SEO INFORMATION PAGE
   ========================================================= */

.info-page {

    padding: 20px 0 100px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(239,17,17,.055),
            transparent 30%
        ),
        #090910;

    color: #ffffff;

}


.info-page-container {

    width: min(
        1380px,
        calc(100% - 48px)
    );

    margin: 0 auto;

}


/* =========================================================
   Main Grid
   ========================================================= */

.info-page-grid {

    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr)
        230px;

    gap: 55px;

    align-items: start;

}


/* =========================================================
   Left Sidebar
   ========================================================= */

.info-page-sidebar {

    position: sticky;

    top: 100px;

    align-self: start;

}


.info-sidebar-inner {

    position: static;

}


.info-sidebar-label {

    display: block;

    margin-bottom: 22px;

    color: #ef1111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.info-toc {

    display: flex;

    flex-direction: column;

}


.info-toc-link {

    position: relative;

    display: flex;

    gap: 10px;

    padding: 12px 0;

    color: rgba(255,255,255,.48);

    border-bottom: 1px solid
        rgba(255,255,255,.06);

    font-size: 12px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color .2s ease;

}


.info-toc-link span {

    color: #ef1111;

    font-size: 9px;

    font-weight: 700;

}


.info-toc-link:hover {

    color: #ffffff;

}


.info-toc-link.active {

    color: #ffffff;

}


/* =========================================================
   Main Content
   ========================================================= */

.info-page-content {

    min-width: 0;

}


.info-page-lead {

    margin-bottom: 40px;

    color: rgba(255,255,255,.68);

    font-size: 18px;

    line-height: 1.8;

}


.info-page-lead strong {

    color: #ffffff;

}


.info-page-image {

    margin: 0 0 60px;

    overflow: hidden;

    border: 1px solid
        rgba(255,255,255,.10);

    border-radius: 14px;

    background: #0d0d14;

}


.info-page-image img {

    width: 100%;

    height: auto;

    display: block;

    max-width: 100%;

}


/* =========================================================
   Article Sections
   ========================================================= */

.info-article-section {

    scroll-margin-top: 100px;

    margin-bottom: 65px;

}


.info-section-number {

    display: block;

    margin-bottom: 10px;

    color: #ef1111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.info-article-section h2 {

    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(
        28px,
        3vw,
        42px
    );

    line-height: 1.15;

    font-weight: 700;

}


.info-section-content {

    color: rgba(255,255,255,.68);

    font-size: 15px;

    line-height: 1.85;

}


.info-section-content p {

    margin: 0 0 18px;

}


.info-section-content strong {

    color: #ffffff;

}


.info-section-content a {

    color: #ef1111;

    text-decoration: none;

}


.info-section-content ul {

    padding-left: 20px;

}


.info-section-content li {

    margin-bottom: 10px;

}


/* =========================================================
   Highlight
   ========================================================= */

.info-highlight {

    margin-top: 30px;

    padding: 24px 26px;

    background:
        linear-gradient(
            135deg,
            rgba(239,17,17,.12),
            rgba(239,17,17,.035)
        );

    border-left: 3px solid #ef1111;

    border-radius: 0 10px 10px 0;

}


.info-highlight-label {

    display: block;

    margin-bottom: 8px;

    color: #ef1111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.info-highlight p {

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   Right Sidebar
   ========================================================= */

.info-page-right {

    position: sticky;

    top: 100px;

    align-self: start;

}


.info-facts {

    position: static;

}


.info-facts-list {

    border-top: 1px solid
        rgba(255,255,255,.10);

}


.info-fact {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 17px 0;

    border-bottom: 1px solid
        rgba(255,255,255,.08);

}


.info-fact span {

    color: rgba(255,255,255,.38);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.info-fact strong {

    color: #ffffff;

    font-size: 13px;

}


/* =========================================================
   Sidebar CTA
   ========================================================= */

.info-sidebar-cta {

    margin-top: 35px;

    padding: 25px 22px;

    background:
        linear-gradient(
            145deg,
            rgba(239,17,17,.18),
            rgba(20,10,15,.7)
        );

    border: 1px solid
        rgba(239,17,17,.20);

    border-radius: 12px;

}


.info-sidebar-cta > span {

    color: #ef1111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.info-sidebar-cta h3 {

    margin: 14px 0;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.25;

}


.info-sidebar-cta h3 strong {

    color: #ef1111;

}


.info-sidebar-cta p {

    margin: 0 0 20px;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.65;

}


.info-sidebar-cta a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    background: #ef1111;

    border-radius: 6px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: .5px;

}


.info-sidebar-cta a span {

    font-size: 14px;

}


/* =========================================================
   FAQ
   ========================================================= */

.info-faq {

    margin-top: 100px;

    scroll-margin-top: 100px;

}


.info-faq h2 {

    margin: 0 0 35px;

    font-size: clamp(
        30px,
        3vw,
        42px
    );

}


.info-faq h2 span {

    color: #ef1111;

}


.info-faq-item {

    border-top: 1px solid
        rgba(255,255,255,.10);

}


.info-faq-item:last-child {

    border-bottom: 1px solid
        rgba(255,255,255,.10);

}


.info-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    background: none;

    border: 0;

    color: #ffffff;

    text-align: left;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

}


.info-faq-icon {

    color: #ef1111;

    font-size: 20px;

    font-weight: 300;

    transition:
        transform .25s ease;

}


.info-faq-item.open
.info-faq-icon {

    transform: rotate(45deg);

}


.info-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .3s ease;

}


.info-faq-answer p {

    margin: 0;

    padding: 0 40px 22px 0;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   Related
   ========================================================= */

.info-related {

    margin-top: 100px;

}


.info-related-header h2 {

    margin: 0 0 30px;

    font-size: 36px;

}


.info-related-header h2 span {

    color: #ef1111;

}


.info-related-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


/* =========================================================
   Related Guide Cards
   ========================================================= */

.info-related-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.info-related-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 150px;

    padding: 18px;

    background: #101018;

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease;

}


.info-related-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(239,17,17,.45);

}


/* ---------------------------------------------------------
   Image
   --------------------------------------------------------- */

.info-related-image {

    width: 105px;

    min-width: 105px;

    height: 105px;

    overflow: hidden;

    border-radius: 9px;

    border: 1px solid
        rgba(255,255,255,.08);

    background: #0d0d14;

}


.info-related-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;

}


.info-related-card:hover
.info-related-image img {

    transform: scale(1.06);

}


/* ---------------------------------------------------------
   Content
   --------------------------------------------------------- */

.info-related-content {

    min-width: 0;

    padding-right: 25px;

}


.info-related-type {

    display: block;

    margin-bottom: 12px;

    color: #ef1111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.info-related-card h3 {

    margin: 0;

    max-width: 180px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.3;

}


/* ---------------------------------------------------------
   Arrow
   --------------------------------------------------------- */

.info-related-arrow {

    position: absolute;

    right: 18px;

    bottom: 16px;

    color: #ef1111;

    font-size: 20px;

    transition:
        transform .25s ease;

}


.info-related-card:hover
.info-related-arrow {

    transform: translateX(4px);

}


/* =========================================================
   Bottom CTA
   ========================================================= */

.info-bottom-cta {

    margin-top: 100px;

    padding: 70px 50px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #17090e,
            #0e0e15
        );

    border: 1px solid
        rgba(239,17,17,.18);

    border-radius: 16px;

}


.info-bottom-cta > span {

    color: #ef1111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.info-bottom-cta h2 {

    max-width: 700px;

    margin: 18px auto;

    font-size: clamp(
        32px,
        4vw,
        52px
    );

    line-height: 1.1;

}


.info-bottom-cta h2 strong {

    color: #ef1111;

}


.info-bottom-cta p {

    max-width: 550px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.55);

    font-size: 14px;

    line-height: 1.7;

}


.info-bottom-cta a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 22px;

    background: #ef1111;

    border-radius: 7px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

}


/* =========================================================
   Mobile TOC
   ========================================================= */

.info-mobile-toc {

    display: none;

}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

    .info-page-grid {

        grid-template-columns:
            160px
            minmax(0, 1fr)
            200px;

        gap: 30px;

    }

}


@media (max-width: 850px) {

    .info-page {

        padding: 55px 0 70px;

    }


    .info-page-container {

        width: min(
            100% - 30px,
            720px
        );

    }


    .info-page-grid {

        display: block;

    }


    .info-page-sidebar {

        display: none;

    }


    .info-mobile-toc {

        display: block;

        margin-bottom: 35px;

        border: 1px solid
            rgba(255,255,255,.10);

        border-radius: 10px;

        overflow: hidden;

    }


    .info-mobile-toc-toggle {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 17px 18px;

        background: #101018;

        border: 0;

        color: #ffffff;

        font-size: 10px;

        font-weight: 700;

        letter-spacing: 1.5px;

        cursor: pointer;

    }


    .info-toc-arrow {

        color: #ef1111;

        transition:
            transform .25s ease;

    }


    .info-mobile-toc.open
    .info-toc-arrow {

        transform: rotate(180deg);

    }


    .info-mobile-toc-content {

        display: none;

        background: #0d0d14;

    }


    .info-mobile-toc.open
    .info-mobile-toc-content {

        display: block;

    }


    .info-mobile-toc-content a {

        display: flex;

        gap: 10px;

        padding: 13px 18px;

        color: rgba(255,255,255,.60);

        border-top: 1px solid
            rgba(255,255,255,.06);

        font-size: 12px;

        text-decoration: none;

    }


    .info-mobile-toc-content a span {

        color: #ef1111;

        font-size: 9px;

    }


    .info-page-right {

        margin-top: 70px;

    }


    .info-facts {

        position: static;

    }


    .info-sidebar-cta {

        margin-top: 25px;

    }


    .info-related-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 600px) {

    .info-page-container {

        width: calc(100% - 24px);

    }


    .info-page-lead {

        font-size: 16px;

    }


    .info-page-image {

        margin-bottom: 45px;

    }


    .info-article-section {

        margin-bottom: 50px;

    }


    .info-article-section h2 {

        font-size: 28px;

    }


    .info-bottom-cta {

        padding: 50px 25px;

    }
    
    .info-related-card {
    
        min-height: 125px;
    
        padding: 14px;
    
        gap: 14px;
    
    }
    
    
    .info-related-image {
    
        width: 85px;
    
        min-width: 85px;
    
        height: 85px;
    
    }
    
    
    .info-related-card h3 {
    
        font-size: 16px;
    
    }
    
    
    .info-related-type {
    
        margin-bottom: 8px;
    
        font-size: 8px;
    
    }
    
    
    .info-related-arrow {
    
        right: 14px;
    
        bottom: 12px;
    
        font-size: 18px;
    
    }

}

/* =========================================================
   Breadcrumb
   ========================================================= */

.info-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 28px;

    color: rgba(255,255,255,.35);

    font-size: 10px;

    line-height: 1.5;

}


.info-breadcrumb a {

    color: rgba(255,255,255,.45);

    text-decoration: none;

    transition: color .2s ease;

}


.info-breadcrumb a:hover {

    color: #ef1111;

}


.info-breadcrumb strong {

    color: #ef1111;

    font-weight: 600;

}


.info-breadcrumb span {

    color: rgba(255,255,255,.20);

}