/**
 * graphical-promo Block
 *
 * Styles for graphical promotional carousel with left image and
 * right glassmorphic content. Uses Swiper carousel with background
 * images and opacity slide animations.
 *
 * BEM STRUCTURE
 * - .graphical-promo-section: Main container
 * - .gp: Block prefix (graphical-promo)
 * - __wrap: Carousel wrapper with button navigation
 * - __button-prev/next: Swiper nav arrows (transparent, 50px)
 * - __row: Flex container (height: 100%)
 * - __row-wrap: Active slide wrapper (opacity/padding animation)
 * - __left: Left column for images (hidden on md below)
 * - __right: Right column (width 55% on lg+)
 * - __content: Glassmorphic card (blur, gradient, border-radius)
 * - __btn-wrap: Button container (flex wrap with gap)
 *
 * RESPONSIVE BREAKPOINTS
 * - respond-above(lg): Show nav, 55%/40% column widths
 * - respond-below(lg): Hide left column, hide nav buttons
 * - respond-below(sm): 2rem padding (vs 4rem 3rem)
 *
 * KEY FEATURES
 * - Glassmorphic content box with backdrop-filter blur(15px)
 * - Gradient background overlay (27.51% opacity white fade)
 * - Slide-in opacity animation (opacity 0 to 1 on active)
 * - Background images on slide wrapper (cover, no-repeat)
 * - White text color on dark backgrounds
 * - Box shadow (0 4px 14.5px rgba(0,0,0,12%))
 * - Custom container width (1270px via CSS variable)
 */
/*
 * Abstracts: Core Exports
 *
 * DESCRIPTION
 * Entry point that forwards all abstract modules (functions, variables,
 * mixins) for convenient importing throughout the codebase.
 *
 * USAGE
 * Import entire abstracts layer: @use "../../abstracts/core" as *;
 * All functions, variables, and mixins become available after import.
 */
/*
 * Abstracts: Sass Functions
 *
 * DESCRIPTION
 * Custom Sass functions for calculations, conversions, and utilities.
 * Used throughout the codebase for consistent value transformations.
 *
 * KEY FUNCTIONS
 * - decimal-round: Rounds numbers to specific decimal places
 * - rem: Converts px values to rem units using $base (16px)
 * - Other utility functions for calculations
 *
 * USAGE
 * @use "function" as *;
 * $font-size: rem(24);  // Returns 1.5rem
 */
/**
 * Rounds a number to specified decimal places
 *
 * @param {number} $number - Value to round
 * @param {number} $digits - Number of decimal places
 * @param {string} $mode - round, ceil, or floor
 * @return {number} Rounded value
 */
/*
 * Abstracts: Core Exports
 *
 * DESCRIPTION
 * Entry point that forwards all abstract modules (functions, variables,
 * mixins) for convenient importing throughout the codebase.
 *
 * USAGE
 * Import entire abstracts layer: @use "../../abstracts/core" as *;
 * All functions, variables, and mixins become available after import.
 */
/*
 * Abstracts: Global Variables
 *
 * DESCRIPTION
 * Application-wide Sass variables including typography, color system,
 * spacing scales, and breakpoint definitions. All color and sizing
 * variables are defined here for consistent theming across components.
 *
 * USAGE
 * Import as: @use "variables" as *;
 * Access variables directly: $primary-100, $font-size-base, etc.
 */
/* Note: If need Disable Decimal-value functionilty open function.scss file */
/*
 * Abstracts: Core Exports
 *
 * DESCRIPTION
 * Entry point that forwards all abstract modules (functions, variables,
 * mixins) for convenient importing throughout the codebase.
 *
 * USAGE
 * Import entire abstracts layer: @use "../../abstracts/core" as *;
 * All functions, variables, and mixins become available after import.
 */
/*
 * Abstracts: Global Mixins
 *
 * DESCRIPTION
 * Reusable Sass mixins for responsive design, utility patterns, and
 * common styling needs. Includes media query helpers, flexbox utilities,
 * and other frequently used patterns.
 *
 * KEY MIXINS
 * - respond-above: Media query min-width breakpoint
 * - respond-below: Media query max-width breakpoint
 * - respond-between: Media query range between two breakpoints
 * - flex patterns and other utility mixins
 *
 * USAGE
 * Import as: @use "mixins" as *;
 * Call mixin: @include respond-above(md) { ... }
 */
/* mini laptop resolution 1349 X 662 and 1246 X 681 and 1218 X 672 */
/* Mozila Firefox */
.graphical-promo-section .container {
  height: 100%;
  --container-width: 79.38rem;
}
.graphical-promo-section .gp-wrap {
  position: relative;
}
.graphical-promo-section .gp-wrap .gp-button-prev, .graphical-promo-section .gp-wrap .gp-button-next {
  --swiper-navigation-size: 50px;
  background-color: transparent;
  border: none;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .graphical-promo-section .gp-wrap .gp-button-prev, .graphical-promo-section .gp-wrap .gp-button-next {
    display: none !important;
  }
}
.graphical-promo-section .gp-wrap .gp-button-prev {
  margin-left: 8px;
  margin-right: 16px;
}
.graphical-promo-section .gp-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.graphical-promo-section .gp-row-wrap {
  opacity: 0 !important;
  height: auto;
  padding: 4rem 3rem;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .graphical-promo-section .gp-row-wrap {
    padding: 2rem;
  }
}
.graphical-promo-section .gp-row-wrap.swiper-slide-active {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .graphical-promo-section .gp-row .gp-right {
    width: 55%;
  }
}
.graphical-promo-section .gp-row .gp-left {
  display: none;
}
@media (min-width: 992px) {
  .graphical-promo-section .gp-row .gp-left {
    display: block;
    width: 40%;
  }
}
.graphical-promo-section .gp-content {
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 27.51%, rgba(153, 153, 153, 0.15) 100%);
  box-shadow: 0px 4px 14.5px 0px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  padding: 2rem;
}
.graphical-promo-section .gp-content .title {
  color: #fff;
}
@media (max-width: 575px) {
  .graphical-promo-section .gp-content .title {
    font-size: 1.5rem;
  }
}
.graphical-promo-section .gp-content .desc {
  color: #fff;
}
@media (max-width: 991px) {
  .graphical-promo-section .gp-content {
    text-align: center;
  }
}
.graphical-promo-section .gp-content .eyebrow-text {
  display: block;
  margin-bottom: 0.75rem;
}
.graphical-promo-section .gp-content p img {
  margin: 0;
}
@media (max-width: 991px) {
  .graphical-promo-section .gp-content p img {
    margin-bottom: 1.13rem;
  }
}
.graphical-promo-section .gp-content .desc h2,
.graphical-promo-section .gp-content .desc p {
  margin-bottom: 0.75rem;
}
.graphical-promo-section .gp-btn-wrap {
  margin-top: 2.38rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.13rem;
}
@media (max-width: 991px) {
  .graphical-promo-section .gp-btn-wrap {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .graphical-promo-section .gp-btn-wrap {
    flex-direction: column;
  }
}