/* Tactical Theme for M2C Labs - Phase 2 Refined */
:root {
    --olive: #3B5323;
    /* Refined Olive */
    --army-green: #4B5320;
    --khaki: #C3B091;
    /* Refined Khaki */
    --dark-brown: #2B1B0E;
    --matte-black: #1C1C1C;
    --sand: #f5f0e8;
    --tactical-red: #c61732;
    --tactical-dark: #161a33;
}

.tactical_labs_bg {
    background-color: var(--sand);
    overflow-x: hidden;
    font-family: var(--bs-font-avenir), "Avenir", Helvetica, Arial, sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Enforce a single site-consistent family (same as About Us rhythm) */
.tactical_labs_bg h1,
.tactical_labs_bg h2,
.tactical_labs_bg h3,
.tactical_labs_bg h4,
.tactical_labs_bg h5,
.tactical_labs_bg h6,
.tactical_labs_bg p,
.tactical_labs_bg span,
.tactical_labs_bg a,
.tactical_labs_bg li,
.tactical_labs_bg label,
.tactical_labs_bg button,
.tactical_labs_bg input,
.tactical_labs_bg textarea,
.tactical_labs_bg select {
    font-family: var(--bs-font-avenir), "Avenir", Helvetica, Arial, sans-serif !important;
}

/* ===========================
   Hero Section
   =========================== */
.labs_hero {
    position: relative;
    height: 500px;
    background-image: url('../../../uploads/media/background.jfif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 72px;
    box-shadow: none;
    overflow: hidden;
}

.labs_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Minimal tint so the photo stays clear */
    background:
        linear-gradient(180deg,
            rgba(28, 28, 28, 0) 0%,
            rgba(28, 28, 28, 0.08) 38%,
            rgba(59, 83, 35, 0.07) 50%,
            rgba(28, 28, 28, 0.08) 62%,
            rgba(28, 28, 28, 0) 100%),
        linear-gradient(120deg, rgba(28, 28, 28, 0.04) 0%, transparent 50%, rgba(28, 28, 28, 0.03) 100%);
    z-index: 1;
}

.labs_hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

/* ===========================
   Hero HUD (title block)
   =========================== */
.labs_hero .hero_hud {
    width: fit-content;
    max-width: min(92vw, 980px);
    margin: 0 auto;
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.72);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

/* Match /events-and-new-initiatives hero text positioning on desktop */
@media (min-width: 992px) {
    .labs_hero {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .labs_hero .hero_hud {
        margin: 0 auto;
        width: fit-content;
        max-width: 100%;
    }
}

.labs_hero .hero_hud p {
    font-family: var(--bs-font-avenir-medium), var(--bs-font-avenir), "Avenir", sans-serif;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 0 8px 0;
}

.labs_hero .hero_hud h1 {
    color: #fff;
    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.65),
        0 0 24px rgba(75, 83, 32, 0.25);
}

.labs_hero_kicker {
    font-family: 'Bebas Neue', 'Oswald', Tahoma, sans-serif;
    letter-spacing: 6px;
    color: var(--khaki);
    margin: 0 0 12px 0;
}

.labs_hero_title {
    font-family: var(--bs-font-avenir-black), var(--bs-font-avenir), "Avenir", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(28px, 4.1vw, 42px);
    letter-spacing: 3px;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.labs_hero_tagline {
    /* Boldness and visibility boost (Phase 3 Fine-tuning) */
    font-family: var(--bs-font-avenir-black), var(--bs-font-avenir), "Avenir", sans-serif;
    font-size: 15px;
    letter-spacing: 5px;
    font-weight: 950;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 8px 0;
    padding: 0;
    background: transparent;
}

.hero_hud {
    z-index: 3;
    animation: labsSlideUpFade 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes labsSlideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Section Containers
   =========================== */
.labs_section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.labs_section_dark {
    background-color: var(--matte-black);
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

.labs_section_olive {
    background-color: var(--olive);
    color: #fff;
}

/* ===========================
   Typography
   =========================== */
.labs_title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: var(--matte-black);
    padding-left: 0;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
}

.labs_section_dark .labs_title,
.labs_section_olive .labs_title {
    color: #fff;
}

.labs_subtitle {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--olive);
    margin-bottom: 15px;
    display: block;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
}

.labs_section_dark .labs_subtitle,
.labs_section_olive .labs_subtitle {
    color: var(--khaki);
}

/* M2C Labs only: drop global site_styles red dash (::before) next to subtitle */
.tactical_labs_bg .labs_subtitle {
    padding-left: 0;
}

.tactical_labs_bg .labs_subtitle::before {
    content: none;
    display: none;
}

/* ===========================
   Cards & Panels
   =========================== */
.labs_card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--olive);
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.labs_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--khaki);
}

.labs_dark_panel {
    background: var(--matte-black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Media Frames (Images)
   =========================== */
.labs_media_stack {
    display: grid;
    gap: 18px;
}

.labs_media_frame {
    border: 1px solid rgba(58, 66, 52, 0.65);
    background: rgba(245, 240, 232, 0.6);
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.labs_media_frame::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(200, 184, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 184, 154, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.6;
}

.labs_media_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.labs_media_frame_tall .labs_media_img {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
}

.labs_media_panel {
    padding: 34px;
}

/* ===========================
   Pills (tags)
   =========================== */
.labs_pill {
    display: inline-flex;
    align-items: center;
    background: var(--olive);
    color: var(--khaki);
    border-left: 3px solid var(--khaki);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===========================
   Responsive
   =========================== */
/* ===========================
   Intel Data Decor (Phase 2)
   =========================== */
.intel_data_decor {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: rgba(59, 83, 35, 0.4);
    pointer-events: none;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 2px;
}

.labs_section_dark .intel_data_decor {
    color: rgba(195, 176, 145, 0.3);
}

.intel_data_decor.top_right {
    top: 20px;
    right: 25px;
}

.intel_data_decor.bottom_left {
    bottom: 20px;
    left: 25px;
}

.labs_media_frame::after {
    content: '[ SCANPOOL_ACTIVE ]';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: var(--khaki);
    opacity: 0.7;
    z-index: 2;
}

@media (max-width: 992px) {
    .labs_section {
        padding: 60px 0;
    }

    .labs_hero {
        height: 440px;
    }

    .labs_media_panel {
        padding: 28px;
    }

    .labs_media_frame_tall .labs_media_img {
        max-height: 440px;
    }
}

@media (max-width: 768px) {
    .labs_section {
        padding: 45px 0;
    }

    .labs_hero {
        height: 360px;
        align-items: flex-end;
        padding-bottom: 38px;
    }

    .labs_hero .hero_hud {
        padding: 16px 20px;
        margin: 0 16px;
    }

    .labs_hero_title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .labs_hero_tagline {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .labs_title {
        font-size: 26px;
        letter-spacing: 2px;
        padding-left: 16px;
        border-left-width: 5px;
    }

    .labs_media_frame {
        padding: 6px;
    }

    .labs_media_panel {
        padding: 22px;
    }

    .labs_pill {
        font-size: 11px;
        padding: 7px 14px;
        letter-spacing: 1.2px;
    }

    .labs_media_frame_tall .labs_media_img {
        max-height: 360px;
    }
}

@media (max-width: 420px) {
    .labs_hero {
        height: 320px;
        align-items: flex-end;
        padding-bottom: 28px;
    }

    .labs_title {
        font-size: 22px;
    }

    .labs_hero_title {
        font-size: 22px;
        letter-spacing: 1px;
    }
}

.labs_accent_border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(195, 176, 145, 0.2);
    pointer-events: none;
}

/* ===========================
   Tactical Dividers & Brackets
   =========================== */
.labs_divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--olive), transparent);
    margin: 40px 0;
    opacity: 0.5;
    position: relative;
}

.labs_divider::before {
    content: '[ TERMINAL_LINK_ESTABLISHED ]';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sand);
    padding: 0 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 2px;
}

.labs_section_dark .labs_divider::before {
    background: var(--matte-black);
}

.labs_bracket_title {
    position: relative;
    padding: 0 30px;
    display: inline-block;
}

.labs_bracket_title::before,
.labs_bracket_title::after {
    content: none;
    display: none;
}

.labs_bracket_title::before {
    left: 0;
    width: 15px;
    border-right: none;
}

.labs_bracket_title::after {
    right: 0;
    width: 15px;
    border-left: none;
}

/* ===========================
   Buttons (Refined Phase 2)
   =========================== */
.tactical_btn {
    background: var(--olive);
    color: #fff;
    padding: 20px 55px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    border: 1px solid var(--khaki);
    border-radius: 0;
    /* Sharp edges */
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tactical_btn:hover {
    background: var(--khaki);
    color: var(--matte-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(195, 176, 145, 0.4);
}

/* ===========================
   Process / Timeline
   =========================== */
.labs_process_grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.labs_process_step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.labs_process_num {
    width: 60px;
    height: 60px;
    background: var(--olive);
    color: var(--khaki);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 15px;
    border: 3px solid var(--khaki);
    box-shadow: 0 0 15px rgba(74, 82, 64, 0.4);
}

.labs_process_step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(200, 184, 154, 0.3);
    z-index: 0;
}

.labs_process_step:last-child::after {
    display: none;
}

.labs_process_label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ===========================
   Icon Components
   =========================== */
.labs_icon_feature {
    font-size: 40px;
    color: var(--olive);
    margin-bottom: 20px;
    display: block;
}

.labs_section_dark .labs_icon_feature {
    color: var(--khaki);
}

/* ===========================
   List Styles
   =========================== */
.labs_list {
    list-style: none;
    padding: 0;
}

.labs_list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.labs_section_dark .labs_list li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.labs_list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--tactical-red);
    font-size: 12px;
    top: 14px;
}

/* ===========================
   Responsive
   =========================== */
/* USP grid on M2C Labs (home-style cards; not clickable) */
.labs_usp_grid .employment_card {
    cursor: default;
    height: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
}

/* Focus crop for UA4 card image on M2C Labs USP grid */
.labs_usp_grid .employment_image_box img.labs_ua4_focus_img {
    object-position: 0% 45%;
}

/* Keep all USP cards in a clean, uniform grid with compact spacing */
.labs_usp_grid .col-lg-3,
.labs_usp_grid .col-md-6 {
    display: flex;
}

.labs_usp_grid .employment_image_box {
    height: 220px;
    flex: 0 0 220px;
}

.labs_usp_grid .employment_card_content {
    padding: 16px 14px 14px;
    justify-content: flex-start;
    gap: 8px;
}

.labs_usp_grid .employment_card_title_wrapper {
    min-height: 64px;
    justify-content: center;
}

.labs_usp_grid .employment_card_title {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin: 0;
    max-width: 95%;
    text-wrap: balance;
}

.labs_usp_grid .employment_card_description {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

@media (max-width: 991px) {
    .labs_usp_grid .employment_card {
        min-height: 440px;
    }

    .labs_usp_grid .employment_image_box {
        height: 205px;
        flex-basis: 205px;
    }
}

@media (max-width: 992px) {
    .labs_process_step::after {
        display: none;
    }

    .labs_hero {
        height: 400px;
        padding-top: 175px;
    }
}

/* ==================================================
   M2C Labs text/alignment match with events page
   (keep original colors and background image styling)
   ================================================== */
.tactical_labs_bg {
    font-family: var(--bs-font-avenir), "Avenir", Helvetica, Arial, sans-serif;
}

.tactical_labs_bg .content_wrapper {
    max-width: 1200px;
}

.tactical_labs_bg .small-nav {
    margin-top: 30px;
    margin-bottom: 34px;
}

/* Tighten only the first section after breadcrumb on /m2c-labs */
.tactical_labs_bg>.content_wrapper+.labs_section {
    padding-top: 14px;
}

/* Reduce excess top space before "Our Unique Approach" on M2C Labs */
.tactical_labs_bg .slider_head_div {
    padding-top: 18px;
}

/* Reduce extra whitespace before final CTA band */
.tactical_labs_bg .labs_section_dark.labs_section[style*="padding: 100px 0"] {
    margin-top: 0;
    padding-top: 22px !important;
    padding-bottom: 44px !important;
}

/* Final CTA — contact cards (email / phone) */
.labs_cta_contact_row {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.labs_cta_contact_card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 22px 30px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.labs_cta_contact_card:hover {
    transform: translateY(-4px);
    border-color: rgba(195, 176, 145, 0.35);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.labs_cta_contact_icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(195, 176, 145, 0.12);
    border: 1px solid rgba(195, 176, 145, 0.38);
}

.labs_cta_contact_icon i {
    color: var(--khaki);
    font-size: 22px;
}

.labs_cta_contact_label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 10px;
    line-height: 1.3;
}

.labs_cta_contact_value {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
    font-family: var(--bs-font-avenir-medium), var(--bs-font-avenir), "Avenir", sans-serif;
}

.labs_cta_contact_value a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(195, 176, 145, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.labs_cta_contact_value a:hover {
    color: var(--khaki);
    border-bottom-color: var(--khaki);
}

.tactical_labs_bg .labs_section,
.tactical_labs_bg .labs_section_dark,
.tactical_labs_bg .labs_section_olive {
    padding: 30px 0;
}

.tactical_labs_bg .labs_title {
    font-family: var(--bs-font-avenir-black), var(--bs-font-avenir), "Avenir", sans-serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 20px;
}

.tactical_labs_bg .labs_bracket_title {
    padding: 0;
}

.tactical_labs_bg .labs_bracket_title::after {
    content: "";
    display: block;
    margin-top: 6px;
    width: 100%;
    max-width: 220px;
    height: 2px;
    background: #c61732;
}

.tactical_labs_bg p,
.tactical_labs_bg .employment_card_description,
.tactical_labs_bg .labs_list li {
    font-family: var(--bs-font-avenir-medium), var(--bs-font-avenir), "Avenir", sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}

.tactical_labs_bg .labs_subtitle {
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--bs-font-avenir-medium), var(--bs-font-avenir), "Avenir", sans-serif;
}

.tactical_labs_bg .employment_section_title,
.tactical_labs_bg .employment_card_title,
.tactical_labs_bg h4,
.tactical_labs_bg h5 {
    font-family: var(--bs-font-avenir-black), var(--bs-font-avenir), "Avenir", sans-serif;
}

@media (max-width: 768px) {

    .tactical_labs_bg .labs_section,
    .tactical_labs_bg .labs_section_dark,
    .tactical_labs_bg .labs_section_olive {
        padding: 25px 0;
    }

    .tactical_labs_bg .labs_title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* Five pillars — L&OD solutions (spacing aligned with /initiatives USP cards: labs_usp_grid) */
.labs_pillars_section {
    padding: 36px 0;
}

.labs_pillars_heading {
    font-family: 'Bebas Neue', 'Oswald', var(--bs-font-avenir-black), sans-serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
    color: #111;
    margin: 0 auto 1.25rem;
    line-height: 1.1;
}

.labs_pillars_row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 1rem;
}

.labs_pillar_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    max-width: 235px;
    margin-left: auto;
    margin-right: auto;
}

.labs_pillar_image_wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto 0.4rem;
}

.labs_pillar_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #476045;
    display: block;
    background: #e8e4dc;
}

.labs_pillar_title {
    font-family: var(--bs-font-avenir-black), var(--bs-font-avenir), "Avenir", sans-serif;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.65rem 0.45rem;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.15;
    color: #fff;
    background: #3f5a45;
    text-align: center;
}

.labs_pillar_desc {
    flex: 1 1 auto;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0.65rem 0.65rem;
    font-family: var(--bs-font-avenir-medium), var(--bs-font-avenir), "Avenir", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #1f1f1f;
    text-align: center;
    background: #ddd0b8;
}

.tactical_labs_bg .labs_pillars_section .labs_pillar_desc {
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 1399px) {
    .labs_pillar_image_wrap {
        width: 100%;
    }

    .labs_pillar_card {
        max-width: 218px;
    }
}

@media (max-width: 991px) {
    .labs_pillars_heading {
        margin-bottom: 1.1rem;
    }

    .labs_pillar_image_wrap {
        width: 100%;
    }

    .labs_pillar_card {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .labs_pillar_image_wrap {
        width: 100%;
    }
}