/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/*
Theme Name: Woodmart Child
Description: Woodmart Child Theme
Author: XTemos
Template: woodmart
Version: 1.0.0
Text Domain: woodmart
*/

/* =========================================================
   RTGF CUSTOM HOMEPAGE
   ========================================================= */

#rtgf-home {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================================
   HERO
   ========================================================= */

#rtgf-home .rtgf-hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    background: #ffffff;
    overflow: hidden;
}

/* Main hero container */

#rtgf-home .rtgf-container {
    position: relative;
    width: min(1400px, 100%);
    min-height: 760px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

/* =========================================================
   RIGHT HERO IMAGE
   ========================================================= */

#rtgf-home .rtgf-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 64%;
    z-index: 1;
    overflow: hidden;
}

/*
   Soft white fade on the left edge of image.
   This allows the HTML text to sit naturally over the
   white side of the hero.
*/

#rtgf-home .rtgf-hero-visual::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.96) 12%,
        rgba(255, 255, 255, 0.70) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Hero image */

#rtgf-home .rtgf-hero-visual img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: right center;

    max-width: none;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

#rtgf-home .rtgf-hero-content {
    position: relative;
    z-index: 5;

    width: 53%;
    max-width: 700px;

    padding-top: 20px;
    padding-bottom: 30px;
}

/* Eyebrow */

#rtgf-home .rtgf-eyebrow {
    display: block;

    margin-bottom: 18px;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: #e52b2f;
}

/* =========================================================
   MAIN HEADING
   ========================================================= */

#rtgf-home .rtgf-hero-content h1 {
    margin: 0 0 22px;

    max-width: 650px;

    font-family: inherit;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -2.5px;

    color: #111111;
}

/*
   Optional: make "Remain High" red.
   If you want this effect, change your H1 to:

   Where All Your Dreams & Goals
   <span>Remain High</span>

*/

#rtgf-home .rtgf-hero-content h1 span {
    color: #e52b2f;
}

/* =========================================================
   GOLDEN RULE
   ========================================================= */

#rtgf-home .rtgf-golden-rule {
    display: inline-block;

    margin-bottom: 24px;
    padding: 7px 25px 9px;

    background: #fbc52b;

    color: #111111;

    font-family: inherit;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 800;

    border-radius: 2px;

    transform: rotate(-1deg);
}

/* =========================================================
   LEAD TEXT
   ========================================================= */

#rtgf-home .rtgf-hero-lead {
    max-width: 640px;

    margin: 0 0 22px;

    font-family: inherit;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;

    color: #161616;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

#rtgf-home .rtgf-hero-text {
    max-width: 620px;

    margin: 0 0 28px;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;

    color: #555b63;
}

/* =========================================================
   BUTTONS
   ========================================================= */

#rtgf-home .rtgf-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;

    margin-top: 4px;
}

/* General button */

#rtgf-home .rtgf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 5px;

    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none !important;
    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Primary */

#rtgf-home .rtgf-btn-primary {
    background: #ed2d32;
    color: #ffffff;

    border: 2px solid #ed2d32;
}

#rtgf-home .rtgf-btn-primary:hover {
    background: #c92328;
    border-color: #c92328;
    color: #ffffff;

    transform: translateY(-2px);
}

/* Secondary */

#rtgf-home .rtgf-btn-secondary {
    background: #ffffff;
    color: #111111;

    border: 2px solid #ed2d32;
}

#rtgf-home .rtgf-btn-secondary:hover {
    background: #ed2d32;
    color: #ffffff;

    transform: translateY(-2px);
}

/* Outline / yellow */

#rtgf-home .rtgf-btn-outline {
    background: #fbc52b;
    color: #111111;

    border: 2px solid #fbc52b;
}

#rtgf-home .rtgf-btn-outline:hover {
    background: #e6ad12;
    border-color: #e6ad12;
    color: #111111;

    transform: translateY(-2px);
}

/* =========================================================
   DESKTOP LARGE
   ========================================================= */

@media (min-width: 1440px) {

    #rtgf-home .rtgf-container {
        min-height: 800px;
        padding-left: 55px;
        padding-right: 55px;
    }

    #rtgf-home .rtgf-hero {
        min-height: 800px;
    }

    #rtgf-home .rtgf-hero-content {
        width: 52%;
    }

    #rtgf-home .rtgf-hero-visual {
        width: 66%;
    }

    #rtgf-home .rtgf-hero-content h1 {
        font-size: 76px;
    }
}

/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 1025px) and (max-width: 1439px) {

    #rtgf-home .rtgf-hero,
    #rtgf-home .rtgf-container {
        min-height: 700px;
    }

    #rtgf-home .rtgf-container {
        padding-left: 45px;
        padding-right: 35px;
    }

    #rtgf-home .rtgf-hero-content {
        width: 54%;
    }

    #rtgf-home .rtgf-hero-visual {
        width: 64%;
    }

    #rtgf-home .rtgf-hero-content h1 {
        font-size: 62px;
    }

    #rtgf-home .rtgf-hero-lead {
        font-size: 17px;
    }

    #rtgf-home .rtgf-hero-text {
        font-size: 15px;
    }

    #rtgf-home .rtgf-btn {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    #rtgf-home .rtgf-hero {
        min-height: 680px;
    }

    #rtgf-home .rtgf-container {
        min-height: 680px;
        padding: 50px 35px;
    }

    #rtgf-home .rtgf-hero-content {
        width: 58%;
    }

    #rtgf-home .rtgf-hero-visual {
        width: 62%;
    }

    #rtgf-home .rtgf-hero-visual::before {
        width: 38%;
    }

    #rtgf-home .rtgf-hero-content h1 {
        font-size: 52px;
        letter-spacing: -1.8px;
    }

    #rtgf-home .rtgf-golden-rule {
        font-size: 23px;
    }

    #rtgf-home .rtgf-hero-lead {
        font-size: 16px;
    }

    #rtgf-home .rtgf-hero-text {
        font-size: 14px;
    }

    #rtgf-home .rtgf-hero-actions {
        gap: 8px;
    }

    #rtgf-home .rtgf-btn {
        min-height: 48px;
        padding: 0 16px;
        font-size: 13px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #rtgf-home .rtgf-hero {
        min-height: auto;
        background: #ffffff;
    }

    #rtgf-home .rtgf-container {
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 0;
    }

    /* Image first */

    #rtgf-home .rtgf-hero-visual {
        position: relative;

        order: 1;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        height: 390px;

        overflow: hidden;
    }

    #rtgf-home .rtgf-hero-visual::before {
        top: auto;
        left: 0;
        bottom: 0;

        width: 100%;
        height: 35%;

        background: linear-gradient(
            to top,
            #ffffff 0%,
            rgba(255,255,255,0.75) 35%,
            rgba(255,255,255,0) 100%
        );
    }

    #rtgf-home .rtgf-hero-visual img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }

    /* Content */

    #rtgf-home .rtgf-hero-content {
        order: 2;

        width: 100%;
        max-width: none;

        padding: 35px 22px 45px;

        background: #ffffff;
    }

    #rtgf-home .rtgf-eyebrow {
        margin-bottom: 14px;
        font-size: 13px;
        letter-spacing: 3px;
    }

    #rtgf-home .rtgf-hero-content h1 {
        max-width: none;

        margin-bottom: 20px;

        font-size: 45px;
        line-height: 0.98;
        letter-spacing: -1.5px;
    }

    #rtgf-home .rtgf-golden-rule {
        margin-bottom: 20px;
        padding: 7px 18px 8px;

        font-size: 22px;
    }

    #rtgf-home .rtgf-hero-lead {
        margin-bottom: 18px;

        font-size: 16px;
        line-height: 1.55;
    }

    #rtgf-home .rtgf-hero-text {
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.6;
    }

    /* Buttons become stacked */

    #rtgf-home .rtgf-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        gap: 10px;
    }

    #rtgf-home .rtgf-btn {
        width: 100%;
        min-height: 52px;

        padding: 0 20px;

        font-size: 14px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #rtgf-home .rtgf-hero-visual {
        height: 330px;
    }

    #rtgf-home .rtgf-hero-content {
        padding: 30px 18px 40px;
    }

    #rtgf-home .rtgf-hero-content h1 {
        font-size: 38px;
    }

    #rtgf-home .rtgf-golden-rule {
        font-size: 20px;
    }

    #rtgf-home .rtgf-hero-lead {
        font-size: 15px;
    }

    #rtgf-home .rtgf-hero-text {
        font-size: 14px;
    }
}

/* =========================================================
   ACCESSIBILITY / PERFORMANCE
   ========================================================= */

#rtgf-home img {
    backface-visibility: hidden;
}

/* Prevent theme from adding unwanted image spacing */

#rtgf-home .rtgf-hero-visual img {
    margin: 0;
    padding: 0;
}

/* Remove default link decoration */

#rtgf-home a {
    outline: none;
}

#rtgf-home a:focus-visible {
    outline: 3px solid #fbc52b;
    outline-offset: 3px;
}

/* =========================================
   RTGF HERO - FEATURE STRIP FIX
   ========================================= */

@media (min-width: 1025px) {

    #rtgf-home .rtgf-hero-content {
        position: relative;
        z-index: 10;
    }

    /* Keep features completely inside left white area */
    #rtgf-home .rtgf-hero-features {
        width: 500px;
        max-width: 100%;

        display: grid;
        grid-template-columns: repeat(4, 1fr);

        gap: 4px;

        margin-top: 22px;
        margin-left: 0;

        position: relative;
        z-index: 20;

        text-align: center;
    }

    #rtgf-home .rtgf-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        width: 100%;
        min-width: 0;

        position: relative;
        z-index: 20;
    }

    #rtgf-home .rtgf-feature-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 5px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    #rtgf-home .rtgf-feature-icon svg {
        width: 40px;
        height: 40px;
        display: block;
    }

    #rtgf-home .rtgf-feature strong {
        display: block;

        margin: 0;

        font-size: 11px;
        line-height: 1.15;
        font-weight: 700;

        color: #17202a;
        white-space: nowrap;
    }

    #rtgf-home .rtgf-feature span {
        display: block;

        margin: 2px 0 0;

        font-size: 11px;
        line-height: 1.15;
        font-weight: 700;

        color: #17202a;
        white-space: nowrap;
    }


    /* =========================================
       TOGO / PATHWAYS LINE
       ========================================= */

    #rtgf-home .rtgf-location-line {
        width: 500px;
        max-width: 100%;

        margin-top: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        position: relative;
        z-index: 20;

        color: #4d5967;

        font-size: 15px;
        line-height: 1.3;
    }

    #rtgf-home .rtgf-location-dot {
        font-weight: 700;
    }

    /*
     * Hide the broken emoji text.
     * We create a clean Togo flag with CSS instead.
     */
    #rtgf-home .rtgf-togo-flag {
        width: 24px;
        height: 16px;

        display: inline-block;

        position: relative;

        overflow: hidden;

        border-radius: 1px;

        background:
            linear-gradient(
                to bottom,
                #006a4e 0 20%,
                #ffce00 20% 40%,
                #006a4e 40% 60%,
                #ffce00 60% 80%,
                #006a4e 80% 100%
            );

        font-size: 0;

        flex: 0 0 24px;
    }

    #rtgf-home .rtgf-togo-flag::before {
        content: "";

        position: absolute;

        left: 0;
        top: 0;

        width: 9px;
        height: 9px;

        background: #d21034;

        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%
        );
    }

    #rtgf-home .rtgf-togo-flag::after {
        content: "★";

        position: absolute;

        left: 1px;
        top: -1px;

        color: #fff;

        font-size: 7px;
        line-height: 9px;
    }
}


/* =========================================
   TABLET
   ========================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    #rtgf-home .rtgf-hero-features {
        width: 100%;
        max-width: 500px;

        grid-template-columns: repeat(4, 1fr);

        margin-top: 22px;
    }

    #rtgf-home .rtgf-location-line {
        width: 100%;
        max-width: 500px;
    }
}

/* =========================================
   RTGF ABOUT / WELCOME SECTION
========================================= */

#rtgf-home .rtgf-about {
    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* CONTAINER */

#rtgf-home .rtgf-about-container {

    width: min(1180px, calc(100% - 120px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 75px;
}


/* =========================================
   LEFT VISUAL
========================================= */

#rtgf-home .rtgf-about-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* IMAGE */

#rtgf-home .rtgf-about-image-wrap {

    position: relative;

    width: 100%;

    max-width: 500px;

    z-index: 3;

    overflow: hidden;

    border-radius: 0 0 70px 0;
}


#rtgf-home .rtgf-about-image-wrap img {

    display: block;

    width: 100%;

    height: auto;

    object-fit: cover;
}


/* =========================================
   ARTISTIC BRUSH ELEMENTS
========================================= */

#rtgf-home .rtgf-about-brush {

    position: absolute;

    z-index: 1;

    pointer-events: none;
}


/* RED BRUSH */

#rtgf-home .rtgf-about-brush-red {

    width: 280px;

    height: 145px;

    left: -30px;

    top: 30px;

    background: #ed292f;

    clip-path: polygon(
        0 15%,
        12% 3%,
        28% 13%,
        45% 0,
        63% 12%,
        82% 5%,
        100% 20%,
        91% 42%,
        100% 61%,
        84% 73%,
        69% 65%,
        54% 89%,
        35% 73%,
        20% 94%,
        5% 73%,
        12% 51%,
        0 37%
    );

    transform: rotate(-7deg);
}


/* BLUE BRUSH */

#rtgf-home .rtgf-about-brush-blue {

    width: 250px;

    height: 110px;

    right: -25px;

    bottom: 45px;

    background: #174f7d;

    clip-path: polygon(
        3% 24%,
        18% 12%,
        35% 19%,
        52% 5%,
        70% 17%,
        88% 9%,
        100% 28%,
        90% 45%,
        98% 66%,
        78% 73%,
        61% 62%,
        46% 91%,
        27% 76%,
        10% 88%,
        0 66%,
        10% 47%
    );

    transform: rotate(8deg);
}


/* =========================================
   RIGHT CONTENT
========================================= */

#rtgf-home .rtgf-about-content {

    position: relative;

    z-index: 5;
}


/* SMALL LABEL */

#rtgf-home .rtgf-about-eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    color: #ed292f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* HEADING */

#rtgf-home .rtgf-about-content h2 {

    margin: 0 0 22px;

    color: #111111;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}


#rtgf-home .rtgf-about-content h2 span {

    color: #ed292f;
}


/* PARAGRAPHS */

#rtgf-home .rtgf-about-content p {

    margin: 0 0 17px;

    color: #4d5967;

    font-size: 16px;

    line-height: 1.7;
}


/* INTRO */

#rtgf-home .rtgf-about-content .rtgf-about-intro {

    color: #252b31;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================
   GOLDEN RULE QUOTE
========================================= */

#rtgf-home .rtgf-about-quote {

    position: relative;

    display: flex;

    gap: 10px;

    margin-top: 17px;

    padding: 18px 22px;

    background: #fff6df;

    border-left: 5px solid #f7bd24;

    border-radius: 4px;
}


/* QUOTE MARK */

#rtgf-home .rtgf-quote-mark {

    flex: 0 0 auto;

    color: #e6a900;

    font-size: 40px;

    line-height: 0.8;

    font-family: Georgia, serif;

    font-weight: 700;
}


/* QUOTE CONTENT */

#rtgf-home .rtgf-quote-content p {

    margin: 0 0 4px;

    color: #e22b31;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 700;
}


#rtgf-home .rtgf-quote-content strong {

    display: block;

    margin-bottom: 7px;

    color: #e22b31;

    font-size: 17px;

    line-height: 1.3;
}


#rtgf-home .rtgf-quote-content span {

    display: block;

    color: #a66f00;

    font-size: 12px;

    line-height: 1.5;
}


#rtgf-home .rtgf-quote-content span b {

    margin-left: 4px;

    color: #111111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    #rtgf-home .rtgf-about {

        padding: 70px 0;
    }

    #rtgf-home .rtgf-about-container {

        width: min(100% - 60px, 900px);

        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    #rtgf-home .rtgf-about-visual {

        min-height: 430px;
    }

    #rtgf-home .rtgf-about-content h2 {

        font-size: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #rtgf-home .rtgf-about {

        padding: 60px 0;
    }


    #rtgf-home .rtgf-about-container {

        width: calc(100% - 40px);

        display: flex;

        flex-direction: column;

        gap: 40px;
    }


    #rtgf-home .rtgf-about-visual {

        width: 100%;

        min-height: auto;

        order: 1;
    }


    #rtgf-home .rtgf-about-image-wrap {

        max-width: 100%;

        border-radius: 0 0 45px 0;
    }


    #rtgf-home .rtgf-about-content {

        order: 2;
    }


    #rtgf-home .rtgf-about-content h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }


    #rtgf-home .rtgf-about-content p {

        font-size: 15px;
    }


    #rtgf-home .rtgf-about-quote {

        padding: 16px;

        gap: 10px;
    }


    #rtgf-home .rtgf-about-brush-red {

        width: 190px;

        height: 100px;

        left: -20px;
    }


    #rtgf-home .rtgf-about-brush-blue {

        width: 170px;

        height: 80px;

        right: -20px;
    }

}

/* =========================================
   RTGF HERO - FINAL FADE POSITION
   ========================================= */

.rtgf-hero {
    position: relative;
    overflow: hidden;
}

.rtgf-hero-visual {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;

    width: 98% !important;
    height: 100% !important;

    z-index: 1 !important;
    overflow: hidden !important;
}

.rtgf-hero-visual img {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: right center !important;

    transform: none !important;
}

.rtgf-hero-content {
    position: relative !important;
    z-index: 5 !important;
}

/* =========================================
   PATHWAY ICONS — FINAL CLEAN FIX
   ========================================= */

/* Allow the icon to extend outside the image */
.rtgf-pathway-image {
    position: relative !important;
    overflow: visible !important;
}

/* Keep the image itself clipped */
.rtgf-pathway-img {
    display: block !important;
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 5px 5px 0 0 !important;
}


/* Single complete icon */
.rtgf-pathway-icon {
    position: absolute !important;
    left: 50% !important;
    bottom: -28px !important;

    transform: translateX(-50%) !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    border-radius: 50% !important;
    border: 5px solid #ffffff !important;

    z-index: 50 !important;

    font-size: 20px !important;
    line-height: 1 !important;

    overflow: hidden !important;
}


/* Remove any duplicate decorative circles */
.rtgf-pathway-icon::before,
.rtgf-pathway-icon::after {
    content: none !important;
    display: none !important;
}


/* Make sure the card doesn't clip the icon */
.rtgf-pathway-card {
    overflow: visible !important;
}


/* Give content enough room below the icon */
.rtgf-pathway-content {
    padding-top: 38px !important;
}

/* =========================================
   RTGF — SKILLS & SERVICES
   ========================================= */

.rtgf-services-section {
    width: 100%;
    padding: 70px 0 80px;
    background: #ffffff;
}

.rtgf-services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.rtgf-services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

    margin-bottom: 38px;
}

.rtgf-section-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #ed1c2e;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.rtgf-services-title h2 {
    margin: 0;

    color: #111111;

    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.rtgf-services-title h2 span {
    color: #ed1c2e;
}

.rtgf-services-intro {
    max-width: 510px;

    color: #59616b;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================
   CARDS GRID
   ========================================= */

.rtgf-services-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   CARD
   ========================================= */

.rtgf-service-card {
    position: relative;

    min-height: 365px;

    padding: 25px 19px 20px;

    background: #ffffff;

    border: 1px solid #e7e7e7;
    border-radius: 4px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .055);

    display: flex;
    flex-direction: column;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.rtgf-service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .10);
}


/* =========================================
   ICON
   ========================================= */

.rtgf-service-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;
    line-height: 1;

    border: 4px solid #ffffff;

    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .08);

    box-sizing: border-box;
}

.rtgf-service-red {
    background: #ed1c2e;
}

.rtgf-service-black {
    background: #15191d;
}

.rtgf-service-yellow {
    background: #f2b900;
}

.rtgf-service-gold {
    background: #e2aa19;
}


/* =========================================
   CARD TITLE
   ========================================= */

.rtgf-service-card h3 {
    margin: 0 0 14px;

    color: #111111;

    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}


/* =========================================
   LIST
   ========================================= */

.rtgf-service-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.rtgf-service-card li {
    position: relative;

    margin: 0 0 7px;
    padding-left: 12px;

    color: #4e5963;

    font-size: 12px;
    line-height: 1.35;
}

.rtgf-service-card li::before {
    content: "•";

    position: absolute;
    left: 0;
    top: 0;

    color: #222222;
    font-weight: 700;
}


/* =========================================
   LEARN MORE
   ========================================= */

.rtgf-service-link {
    margin-top: auto;
    padding-top: 18px;

    color: #ed1c2e !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.rtgf-service-link span {
    display: inline-block;

    margin-left: 4px;

    transition: transform .2s ease;
}

.rtgf-service-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .rtgf-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rtgf-services-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rtgf-services-intro {
        max-width: 700px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .rtgf-services-section {
        padding: 50px 0 60px;
    }

    .rtgf-services-container {
        width: min(100% - 28px, 520px);
    }

    .rtgf-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rtgf-service-card {
        min-height: auto;
    }

    .rtgf-services-title h2 {
        font-size: 31px;
    }

}


/* =========================================
   RTGF SKILLS & SERVICES — FINAL POLISH
   ========================================= */

.rtgf-services-section {
    padding: 55px 0 65px !important;
}

.rtgf-services-container {
    width: min(1180px, calc(100% - 40px)) !important;
}


/* HEADER */
.rtgf-services-header {
    grid-template-columns: 1.05fr .95fr !important;
    gap: 55px !important;
    align-items: center !important;
    margin-bottom: 30px !important;
}

.rtgf-section-eyebrow {
    margin-bottom: 5px !important;
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
}

.rtgf-services-title h2 {
    font-size: clamp(30px, 3vw, 40px) !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
}

.rtgf-services-intro {
    max-width: 480px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}


/* CARDS */
.rtgf-services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.rtgf-service-card {
    min-height: 330px !important;
    padding: 22px 17px 17px !important;
    border-radius: 4px !important;
}


/* ICON */
.rtgf-service-icon {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;

    margin-bottom: 15px !important;

    font-size: 18px !important;
    border-width: 3px !important;
}


/* TITLE */
.rtgf-service-card h3 {
    margin-bottom: 12px !important;

    font-size: 15px !important;
    line-height: 1.25 !important;
}


/* LIST */
.rtgf-service-card li {
    margin-bottom: 6px !important;
    padding-left: 10px !important;

    font-size: 11px !important;
    line-height: 1.35 !important;
}


/* LEARN MORE */
.rtgf-service-link {
    padding-top: 12px !important;
    font-size: 11px !important;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .rtgf-services-header {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .rtgf-services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .rtgf-services-section {
        padding: 45px 0 55px !important;
    }

    .rtgf-services-container {
        width: calc(100% - 28px) !important;
    }

    .rtgf-services-grid {
        grid-template-columns: 1fr !important;
    }

    .rtgf-service-card {
        min-height: auto !important;
    }
}

.rtgf-services-title h2 {
    white-space: nowrap !important;
}

.rtgf-services-title h2 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

/* =========================================================
   5. JUSTICE-INVOLVED YOUTH & WOMEN
   ========================================================= */

.rtgf-justice-section {
    width: 100%;
    padding: 65px 0 70px;
    background: #fff;
}

.rtgf-justice-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   MAIN CONTENT
   ========================= */

.rtgf-justice-main {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    position: relative;
    min-height: 390px;
}


/* =========================
   IMAGE
   ========================= */

.rtgf-justice-visual {
    position: relative;
    z-index: 1;
    height: 390px;
    overflow: hidden;
}

.rtgf-justice-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================
   CONTENT
   ========================= */

.rtgf-justice-content {
    position: relative;
    z-index: 2;

    margin-left: -5px;
    padding: 48px 48px 45px;

    background: #111820;
    color: #fff;
}

.rtgf-justice-content .rtgf-section-eyebrow {
    display: block;
    margin-bottom: 8px;

    color: #f02732;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rtgf-justice-content h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    color: #fff;
}

.rtgf-justice-content h2 span {
    color: #f02732;
}

.rtgf-justice-content p {
    max-width: 720px;
    margin: 0 0 15px;

    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.6;
}

.rtgf-justice-content .rtgf-justice-lead {
    color: #fff;
    font-weight: 500;
}


/* =========================
   BUTTON
   ========================= */

.rtgf-justice-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;
    padding: 13px 20px;

    background: #f02732;
    color: #fff !important;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;

    border-radius: 3px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.rtgf-justice-btn span {
    color: #fff;
    font-size: 17px;
}

.rtgf-justice-btn:hover {
    background: #d91f29;
    transform: translateY(-2px);
}


/* =========================
   QUOTE
   ========================= */

.rtgf-justice-quote {
    position: absolute;

    right: 25px;
    top: 30px;

    z-index: 4;

    width: 220px;

    color: #fff;
    text-align: center;
    transform: rotate(-3deg);
}

.rtgf-justice-quote-mark {
    display: none;
}

.rtgf-justice-quote strong {
    display: block;

    font-family: cursive;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 600;
}

.rtgf-justice-quote span {
    display: block;

    margin-top: 10px;

    color: #fbc21f;
    font-size: 11px;
    font-weight: 700;
}


/* =========================
   PATHWAY
   ========================= */

.rtgf-justice-pathway {
    display: flex;
    align-items: stretch;
    justify-content: center;

    margin-top: 0;

    padding: 25px 15px 22px;

    background: #fff;

    border: 1px solid #eee;
    border-top: 0;

    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.rtgf-justice-step {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
}

.rtgf-justice-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 9px;

    color: #fff;
    background: #f02732;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;
}

.rtgf-justice-step strong {
    display: block;

    color: #20242a;

    font-size: 11px;
    line-height: 1.2;
}

.rtgf-justice-step span {
    display: block;

    color: #20242a;

    font-size: 10px;
    line-height: 1.2;
}

.rtgf-justice-arrow {
    display: flex;
    align-items: center;

    padding: 0 8px;

    color: #f02732;

    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rtgf-justice-main {
        grid-template-columns: 42% 58%;
    }

    .rtgf-justice-content {
        padding: 35px 30px;
    }

    .rtgf-justice-content h2 {
        font-size: 34px;
    }

    .rtgf-justice-quote {
        display: none;
    }

    .rtgf-justice-pathway {
        flex-wrap: wrap;
        gap: 20px 5px;
    }

    .rtgf-justice-step {
        flex: 0 0 calc(25% - 5px);
    }

    .rtgf-justice-arrow {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .rtgf-justice-section {
        padding: 45px 0 50px;
    }

    .rtgf-justice-container {
        width: calc(100% - 24px);
    }

    .rtgf-justice-main {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .rtgf-justice-visual {
        width: 100%;
        height: 260px;
    }

    .rtgf-justice-content {
        width: 100%;
        margin: 0;

        padding: 30px 24px;
    }

    .rtgf-justice-content h2 {
        font-size: 32px;
    }

    .rtgf-justice-content p {
        font-size: 13px;
    }

    .rtgf-justice-pathway {
        padding: 22px 10px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    }

    .rtgf-justice-step {
        width: 100%;
    }

    .rtgf-justice-arrow {
        display: none;
    }

    .rtgf-justice-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* =========================================
   JUSTICE SECTION - FINAL CLEAN FIX
   ========================================= */

.rtgf-justice-main {
    grid-template-columns: 38% 62%;
    min-height: 400px;
}

/* Content ko quote ke liye enough space */
.rtgf-justice-content {
    padding: 48px 280px 45px 48px;
    min-height: 400px;
    box-sizing: border-box;
}

/* Heading ko quote se completely separate rakhein */
.rtgf-justice-content h2 {
    max-width: 650px;
    margin-bottom: 20px;
}

/* Quote right side par fixed rahe */
.rtgf-justice-quote {
    right: 25px;
    top: 32px;
    width: 205px;
    z-index: 5;
}

/* Quote text */
.rtgf-justice-quote strong {
    font-size: 19px;
    line-height: 1.15;
}

/* Pathway cleaner */
.rtgf-justice-pathway {
    min-height: 105px;
    box-sizing: border-box;
    padding: 22px 18px;
}

.rtgf-justice-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .rtgf-justice-content {
        padding: 40px 35px;
        min-height: auto;
    }

    .rtgf-justice-quote {
        display: none;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .rtgf-justice-content {
        padding: 30px 24px;
    }

    .rtgf-justice-content h2 {
        font-size: 32px;
    }

    .rtgf-justice-pathway {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================================
   RTGF JUSTICE SECTION — FINAL BALANCED
   ========================================= */

.rtgf-justice-main {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    min-height: 390px;
}

/* Image */
.rtgf-justice-visual {
    height: 390px;
    overflow: hidden;
}

.rtgf-justice-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Dark content */
.rtgf-justice-content {
    position: relative;
    margin: 0;
    min-height: 390px;
    box-sizing: border-box;

    padding: 42px 245px 38px 42px;

    background: #111820;
}

/* Heading */
.rtgf-justice-content h2 {
    max-width: 560px;
    margin: 0 0 18px;

    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.03;
    letter-spacing: -1px;
}

/* Paragraphs */
.rtgf-justice-content p {
    max-width: 610px;
    margin-bottom: 14px;

    font-size: 14px;
    line-height: 1.55;
}

/* Quote */
.rtgf-justice-quote {
    position: absolute;
    top: 35px;
    right: 22px;

    width: 190px;
    margin: 0;

    z-index: 5;
    text-align: center;
}

.rtgf-justice-quote strong {
    font-size: 18px;
    line-height: 1.15;
}

/* Button */
.rtgf-justice-btn {
    margin-top: 8px;
}


/* Pathway */
.rtgf-justice-pathway {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 100px;
    padding: 20px 25px;

    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 0;
}


/* Steps */
.rtgf-justice-step {
    flex: 1;
    text-align: center;
}

.rtgf-justice-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
}

.rtgf-justice-step strong,
.rtgf-justice-step span {
    font-size: 10px;
    line-height: 1.2;
}

.rtgf-justice-arrow {
    padding: 0 8px;
    font-size: 18px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .rtgf-justice-content {
        padding: 35px 35px;
    }

    .rtgf-justice-quote {
        display: none;
    }

    .rtgf-justice-pathway {
        flex-wrap: wrap;
        gap: 20px;
    }

    .rtgf-justice-step {
        flex: 0 0 calc(25% - 15px);
    }

    .rtgf-justice-arrow {
        display: none;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .rtgf-justice-main {
        display: flex;
        flex-direction: column;
    }

    .rtgf-justice-visual {
        width: 100%;
        height: 280px;
    }

    .rtgf-justice-content {
        width: 100%;
        min-height: auto;
        padding: 32px 24px;
    }

    .rtgf-justice-content h2 {
        font-size: 32px;
    }

    .rtgf-justice-pathway {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    }

    .rtgf-justice-step {
        flex: none;
        width: 100%;
    }

    .rtgf-justice-arrow {
        display: none;
    }
}

/* =========================================
   JUSTICE SECTION - FINAL ALIGNMENT FIX
   ========================================= */

.rtgf-justice-main {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    min-height: 390px;
}

/* LEFT IMAGE MUST FILL FULL HEIGHT */
.rtgf-justice-visual {
    height: 100% !important;
    min-height: 390px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.rtgf-justice-visual img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;
    object-fit: cover !important;
    object-position: center !important;
}


/* RIGHT CONTENT */
.rtgf-justice-content {
    min-height: 390px !important;
    height: 100% !important;
    box-sizing: border-box;

    margin: 0 !important;
    padding: 42px 245px 38px 42px !important;
}


/* REMOVE ANY EXTRA SPACE FROM MAIN */
.rtgf-justice-main > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* PATHWAY */
.rtgf-justice-pathway {
    margin-top: 0 !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .rtgf-justice-main {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .rtgf-justice-visual {
        height: 280px !important;
        min-height: 280px !important;
    }

    .rtgf-justice-visual img {
        height: 280px !important;
        min-height: 280px !important;
    }

    .rtgf-justice-content {
        height: auto !important;
        min-height: auto !important;
        padding: 32px 24px !important;
    }
}

/* =========================================================
   6. RTGF PHILOSOPHY / ACADEMY / FOUNDER / SUPPORT
   ========================================================= */

.rtgf-philosophy-section {
    width: 100%;
    padding: 70px 0 80px;
    background: #fff;
}

.rtgf-section-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADING
   ========================= */

.rtgf-centered-heading {
    text-align: center;
    margin-bottom: 28px;
}

.rtgf-centered-heading > span,
.rtgf-small-label,
.rtgf-support-heading > span {
    display: block;

    color: #ed2631;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rtgf-centered-heading h2 {
    margin: 6px 0 0;

    color: #111820;

    font-size: 30px;
    line-height: 1.15;
}


/* =========================
   PHILOSOPHY CARDS
   ========================= */

.rtgf-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.rtgf-philosophy-card {
    position: relative;
    overflow: hidden;

    min-height: 205px;

    background: #fff;
    border: 1px solid #eee;

    box-shadow: 0 5px 18px rgba(0,0,0,.06);
}

.rtgf-philosophy-image {
    height: 205px;
}

.rtgf-philosophy-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.rtgf-philosophy-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 18px 15px;

    background: linear-gradient(
        to top,
        rgba(255,255,255,.98),
        rgba(255,255,255,.88),
        rgba(255,255,255,0)
    );
}

.rtgf-philosophy-icon {
    color: #ed2631;
    font-size: 25px;
    line-height: 1;
}

.rtgf-philosophy-content h3 {
    margin: 4px 0 5px;

    color: #ed2631;

    font-size: 17px;
}

.rtgf-philosophy-content p {
    margin: 0;

    color: #4f5964;

    font-size: 11px;
    line-height: 1.35;
}


/* =========================
   TAGLINE
   ========================= */

.rtgf-philosophy-tagline {
    margin: 12px 0 35px;

    text-align: center;

    color: #d99527;

    font-family: cursive;
    font-size: 24px;
}


/* =========================
   ACADEMY
   ========================= */

.rtgf-academy-row {
    display: grid;
    grid-template-columns: 30% 42% 28%;
    align-items: stretch;

    margin-bottom: 25px;

    overflow: hidden;
}

.rtgf-academy-image {
    min-height: 220px;
}

.rtgf-academy-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rtgf-academy-content {
    padding: 28px 30px;

    background: #fff;
}

.rtgf-academy-content h2 {
    margin: 5px 0 4px;

    color: #111820;

    font-size: 25px;
    line-height: 1.1;
}

.rtgf-academy-content h2 span {
    color: #ed2631;
}

.rtgf-academy-content h3 {
    margin: 0 0 8px;

    color: #ed2631;

    font-size: 15px;
}

.rtgf-academy-content p {
    margin: 0 0 15px;

    color: #59636d;

    font-size: 11px;
    line-height: 1.45;
}

.rtgf-red-btn,
.rtgf-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
}

.rtgf-red-btn {
    background: #ed2631;
    color: #fff !important;
}

.rtgf-academy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    padding: 25px 15px;

    background: #111820;
}

.rtgf-academy-features div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;
}

.rtgf-academy-features strong {
    margin-bottom: 5px;

    color: #eebd20;

    font-size: 23px;
}

.rtgf-academy-features span {
    font-size: 10px;
    line-height: 1.2;
}


/* =========================
   FOUNDER
   ========================= */

.rtgf-founder-row {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;

    margin-bottom: 50px;
}

.rtgf-founder-image {
    height: 280px;
    overflow: hidden;
}

.rtgf-founder-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.rtgf-founder-content {
    padding: 30px 45px;
}

.rtgf-founder-content h2 {
    margin: 4px 0 5px;

    color: #111820;

    font-size: 28px;
}

.rtgf-founder-content h2 span {
    color: #ed2631;
}

.rtgf-founder-content h3 {
    margin: 0 0 12px;

    color: #222;

    font-size: 13px;
}

.rtgf-founder-content p {
    margin: 0 0 10px;

    color: #59636d;

    font-size: 11px;
    line-height: 1.5;
}

.rtgf-outline-btn {
    border: 1px solid #ed2631;
    color: #ed2631 !important;
}


/* =========================
   SUPPORT
   ========================= */

.rtgf-support-heading {
    text-align: center;
    margin-bottom: 20px;
}

.rtgf-support-heading h2 {
    margin: 5px 0 0;

    color: #111820;

    font-size: 30px;
}

.rtgf-support-heading h2 strong {
    color: #ed2631;
}

.rtgf-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.5fr;

    gap: 12px;
}

.rtgf-support-card {
    padding: 22px 18px;

    background: #fff;

    border: 1px solid #eee;

    box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.rtgf-support-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 10px;

    background: #fbc21f;

    border-radius: 50%;

    color: #111820;

    font-size: 18px;
}

.rtgf-support-card h3 {
    margin: 0 0 6px;

    color: #222;

    font-size: 14px;
}

.rtgf-support-card p {
    margin: 0 0 12px;

    color: #66707a;

    font-size: 11px;
    line-height: 1.4;
}

.rtgf-support-card a {
    color: #ed2631 !important;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none !important;
}

.rtgf-support-cta {
    padding: 25px 28px;

    background:
        linear-gradient(
            110deg,
            rgba(237,38,49,.95),
            rgba(183,39,28,.75)
        );

    color: #fff;
}

.rtgf-support-cta > span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rtgf-support-cta h3 {
    margin: 7px 0;

    font-size: 23px;
    line-height: 1.15;
}

.rtgf-support-cta strong {
    display: block;

    color: #ffd029;

    margin-bottom: 15px;
}

.rtgf-support-cta a {
    display: inline-block;

    padding: 9px 15px;

    background: #fff;
    color: #ed2631 !important;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none !important;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    .rtgf-academy-row {
        grid-template-columns: 40% 60%;
    }

    .rtgf-academy-features {
        grid-column: 1 / -1;
    }

    .rtgf-founder-row {
        grid-template-columns: 45% 55%;
    }

    .rtgf-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtgf-support-cta {
        grid-column: 1 / -1;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 650px) {

    .rtgf-philosophy-section {
        padding: 45px 0 55px;
    }

    .rtgf-section-wrap {
        width: calc(100% - 24px);
    }

    .rtgf-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .rtgf-philosophy-tagline {
        font-size: 19px;
    }

    .rtgf-academy-row {
        display: flex;
        flex-direction: column;
    }

    .rtgf-academy-image {
        height: 230px;
        min-height: 230px;
    }

    .rtgf-academy-content {
        padding: 25px 20px;
    }

    .rtgf-academy-features {
        min-height: 180px;
    }

    .rtgf-founder-row {
        display: flex;
        flex-direction: column;
    }

    .rtgf-founder-image {
        width: 100%;
        height: 260px;
    }

    .rtgf-founder-content {
        padding: 25px 20px;
    }

    .rtgf-support-grid {
        grid-template-columns: 1fr;
    }

    .rtgf-support-cta {
        grid-column: auto;
    }

    .rtgf-support-heading h2 {
        font-size: 25px;
    }
}