.elementor-kit-6{--e-global-color-primary:#291C73;--e-global-color-secondary:#BB0018;--e-global-color-text:#191C1E;--e-global-color-accent:#40358A;--e-global-color-surface_bg:#F8F9FB;--e-global-color-surface_card:#FFFFFF;--e-global-color-text_muted:#474551;--e-global-color-outline_border:#C9C4D3;--e-global-color-burgundy:#963149;--e-global-color-secondary_hover:#E3212A;--e-global-typography-primary-font-family:"Manrope";--e-global-typography-primary-font-size:32px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:40px;--e-global-typography-secondary-font-family:"Manrope";--e-global-typography-secondary-font-size:24px;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:32px;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:24px;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-text-transform:uppercase;--e-global-typography-accent-line-height:20px;--e-global-typography-accent-letter-spacing:0.05em;--e-global-typography-display_hero-font-family:"Manrope";--e-global-typography-display_hero-font-size:48px;--e-global-typography-display_hero-font-weight:800;--e-global-typography-display_hero-line-height:56px;--e-global-typography-display_hero-letter-spacing:-0.02em;--e-global-typography-body_large-font-family:"Inter";--e-global-typography-body_large-font-size:18px;--e-global-typography-body_large-font-weight:400;--e-global-typography-body_large-line-height:28px;--e-global-typography-caption_small-font-family:"Inter";--e-global-typography-caption_small-font-size:12px;--e-global-typography-caption_small-font-weight:500;--e-global-typography-caption_small-line-height:16px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================================
   ORYX FC - REUSABLE BENTO GRID & ASYMMETRICAL LAYOUT SYSTEM
   ========================================================= */

/* 1. 3-Column Asymmetric Bento Grid (Home Pathways & Features) */
.oryx-bento-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: 320px;
}

/* 2. Base Bento Tile Container */
.oryx-bento-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 196, 211, 0.4);
  background-color: #ffffff;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  cursor: pointer;
}

/* 3. Asymmetric Span Modifiers */
.oryx-bento-span-2 {
  grid-column: span 2;
}
.oryx-bento-span-1 {
  grid-column: span 1;
}

/* 4. Desktop Hover Micro-Interactions (Only on fine pointer devices) */
@media (hover: hover) and (pointer: fine) {
  .oryx-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(25, 28, 30, 0.15);
    border-color: rgba(41, 28, 115, 0.3);
  }
  .oryx-bento-card:hover .oryx-bento-zoom-img {
    transform: scale(1.05);
  }
}

/* 5. Smooth Image Zoom Inside Cards */
.oryx-bento-zoom-img {
  transition: transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* 6. Responsive Reflow: Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .oryx-bento-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
  }
  .oryx-bento-span-2 {
    grid-column: span 2;
  }
}

/* 7. Responsive Reflow: Mobile (< 768px) */
@media (max-width: 767px) {
  .oryx-bento-grid-3col {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .oryx-bento-span-2,
  .oryx-bento-span-1 {
    grid-column: span 1;
  }
  .oryx-bento-card {
    min-height: auto;
  }
}/* End custom CSS */