@charset "UTF-8";
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
/**
 * News Archive Card Component Styles
 *
 * @package Focus_on_Tech
 */
.fot-news-archive__item {
  background: #FFFFFF;
  border-radius: 0.9375rem;
  overflow: hidden;
  box-shadow: 0.3125rem 0.3125rem 0.9375rem 0 rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fot-news-archive__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fot-news-archive__image {
  position: relative;
  overflow: hidden;
}
.fot-news-archive__image img {
  width: 100%;
  height: 14.25rem;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.fot-news-archive__image:hover img {
  transform: scale(1.05);
}

.fot-news-archive__category-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.fot-news-archive__content {
  padding: 1.5rem 2.5rem 2.5rem 2.4375rem;
}

.fot-news-archive__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.fot-news-archive__tag {
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fot-news-archive__title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #1E053F;
  font-size: 1.375rem;
  margin: 0 0 0.75rem;
}
.fot-news-archive__title a {
  color: #232325;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fot-news-archive__excerpt {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fot-news-archive__read-more a {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fot-page--training .fot-news-archive__read-more a, .fot-page--search .fot-news-archive__read-more a, .fot-card-search--training .fot-news-archive__read-more a, .fot-card-search--default .fot-news-archive__read-more a, .fot-block--training .fot-news-archive__read-more a, .fot-color-theme--blue .fot-news-archive__read-more a {
  color: #002C87;
}
.fot-page--certifications .fot-news-archive__read-more a, .fot-card-search--certifications .fot-news-archive__read-more a, .fot-block--certifications .fot-news-archive__read-more a, .fot-color-theme--green .fot-news-archive__read-more a {
  color: #006100;
}
.fot-page--events .fot-news-archive__read-more a, .fot-card-search--events .fot-news-archive__read-more a, .fot-block--events .fot-news-archive__read-more a, .fot-color-theme--pink .fot-news-archive__read-more a {
  color: #E72982;
}
.fot-page--news .fot-news-archive__read-more a, .fot-card-search--news .fot-news-archive__read-more a, .fot-block--news .fot-news-archive__read-more a, .fot-color-theme--purple .fot-news-archive__read-more a {
  color: #5700C5;
}
.fot-page--community .fot-news-archive__read-more a, .fot-card-search--community .fot-news-archive__read-more a, .fot-block--community .fot-news-archive__read-more a, .fot-color-theme--orange .fot-news-archive__read-more a {
  color: #E52B17;
}
.fot-page--jobs .fot-news-archive__read-more a, .fot-card-search--jobs .fot-news-archive__read-more a, .fot-block--jobs .fot-news-archive__read-more a, .fot-color-theme--red .fot-news-archive__read-more a {
  color: #BC0000;
}
.fot-news-archive__read-more a::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5625rem 0.5625rem;
  width: 0.5625rem;
  height: 0.5625rem;
  display: inline-block;
  background-image: url("../../icons/icon-arrow-right-purple.svg");
}

.fot-news-archive__filters {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.fot-news-archive__filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.fot-news-archive__category-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fot-news-archive__filter-label {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6A6A6A;
  line-height: 2.2;
  padding-right: 1rem;
  border-right: 1px solid #D9D9D9;
}

.fot-news-archive__category-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fot-news-archive__category-button {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 3.125rem;
  background-color: #FFFFFF;
  border: 1px solid #ECEDEE;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #1E053F;
}
.fot-news-archive__category-button.fot-active {
  background-color: #F6F0FF;
  color: #5700C5;
}
.fot-news-archive__category-button:hover {
  color: #5700C5;
}

.fot-news-archive__sort-controls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.fot-news-archive__sort-select {
  padding: 0.375rem 0.75rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #232325;
  font-size: 0.875rem;
}
.fot-news-archive__sort-select:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}

.fot-news-archive__custom-dropdown {
  position: relative;
  display: inline-block;
}

.fot-news-archive__dropdown-trigger {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.fot-news-archive__dropdown-trigger:hover {
  border-color: #6E6E6F;
}

.fot-news-archive__dropdown-label {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
}
.fot-news-archive__dropdown-label strong {
  font-weight: 600;
}
.fot-page--training .fot-news-archive__dropdown-label strong, .fot-page--search .fot-news-archive__dropdown-label strong, .fot-card-search--training .fot-news-archive__dropdown-label strong, .fot-card-search--default .fot-news-archive__dropdown-label strong, .fot-block--training .fot-news-archive__dropdown-label strong, .fot-color-theme--blue .fot-news-archive__dropdown-label strong {
  color: #002C87;
}
.fot-page--certifications .fot-news-archive__dropdown-label strong, .fot-card-search--certifications .fot-news-archive__dropdown-label strong, .fot-block--certifications .fot-news-archive__dropdown-label strong, .fot-color-theme--green .fot-news-archive__dropdown-label strong {
  color: #006100;
}
.fot-page--events .fot-news-archive__dropdown-label strong, .fot-card-search--events .fot-news-archive__dropdown-label strong, .fot-block--events .fot-news-archive__dropdown-label strong, .fot-color-theme--pink .fot-news-archive__dropdown-label strong {
  color: #E72982;
}
.fot-page--news .fot-news-archive__dropdown-label strong, .fot-card-search--news .fot-news-archive__dropdown-label strong, .fot-block--news .fot-news-archive__dropdown-label strong, .fot-color-theme--purple .fot-news-archive__dropdown-label strong {
  color: #5700C5;
}
.fot-page--community .fot-news-archive__dropdown-label strong, .fot-card-search--community .fot-news-archive__dropdown-label strong, .fot-block--community .fot-news-archive__dropdown-label strong, .fot-color-theme--orange .fot-news-archive__dropdown-label strong {
  color: #E52B17;
}
.fot-page--jobs .fot-news-archive__dropdown-label strong, .fot-card-search--jobs .fot-news-archive__dropdown-label strong, .fot-block--jobs .fot-news-archive__dropdown-label strong, .fot-color-theme--red .fot-news-archive__dropdown-label strong {
  color: #BC0000;
}

.fot-news-archive__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0.25rem;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  min-width: 10.9375rem;
  padding: 0.625rem 0;
}
.fot-news-archive__dropdown-menu.fot-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fot-news-archive__dropdown-menu::before {
  content: "";
  display: block;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-bottom: none;
  border-right: none;
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  top: -0.5625rem;
  right: 1rem;
  transform: rotate(45deg);
  z-index: 1;
}

.fot-news-archive__dropdown-option {
  padding: 0.375rem 1.5rem;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  text-align: right;
}
.fot-news-archive__dropdown-option:last-child {
  border-bottom: none;
}
.fot-page--training .fot-news-archive__dropdown-option:hover, .fot-page--search .fot-news-archive__dropdown-option:hover, .fot-card-search--training .fot-news-archive__dropdown-option:hover, .fot-card-search--default .fot-news-archive__dropdown-option:hover, .fot-block--training .fot-news-archive__dropdown-option:hover, .fot-color-theme--blue .fot-news-archive__dropdown-option:hover, .fot-page--training .fot-news-archive__dropdown-option.fot-selected, .fot-page--search .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--training .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--default .fot-news-archive__dropdown-option.fot-selected, .fot-block--training .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--blue .fot-news-archive__dropdown-option.fot-selected {
  background-color: #E4F2F9;
}
.fot-page--certifications .fot-news-archive__dropdown-option:hover, .fot-card-search--certifications .fot-news-archive__dropdown-option:hover, .fot-block--certifications .fot-news-archive__dropdown-option:hover, .fot-color-theme--green .fot-news-archive__dropdown-option:hover, .fot-page--certifications .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--certifications .fot-news-archive__dropdown-option.fot-selected, .fot-block--certifications .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--green .fot-news-archive__dropdown-option.fot-selected {
  background-color: #EBFAEB;
}
.fot-page--events .fot-news-archive__dropdown-option:hover, .fot-card-search--events .fot-news-archive__dropdown-option:hover, .fot-block--events .fot-news-archive__dropdown-option:hover, .fot-color-theme--pink .fot-news-archive__dropdown-option:hover, .fot-page--events .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--events .fot-news-archive__dropdown-option.fot-selected, .fot-block--events .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--pink .fot-news-archive__dropdown-option.fot-selected {
  background-color: #FEF2FF;
}
.fot-page--news .fot-news-archive__dropdown-option:hover, .fot-card-search--news .fot-news-archive__dropdown-option:hover, .fot-block--news .fot-news-archive__dropdown-option:hover, .fot-color-theme--purple .fot-news-archive__dropdown-option:hover, .fot-page--news .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--news .fot-news-archive__dropdown-option.fot-selected, .fot-block--news .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--purple .fot-news-archive__dropdown-option.fot-selected {
  background-color: #F6F0FF;
}
.fot-page--community .fot-news-archive__dropdown-option:hover, .fot-card-search--community .fot-news-archive__dropdown-option:hover, .fot-block--community .fot-news-archive__dropdown-option:hover, .fot-color-theme--orange .fot-news-archive__dropdown-option:hover, .fot-page--community .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--community .fot-news-archive__dropdown-option.fot-selected, .fot-block--community .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--orange .fot-news-archive__dropdown-option.fot-selected {
  background-color: #FFEAD8;
}
.fot-page--jobs .fot-news-archive__dropdown-option:hover, .fot-card-search--jobs .fot-news-archive__dropdown-option:hover, .fot-block--jobs .fot-news-archive__dropdown-option:hover, .fot-color-theme--red .fot-news-archive__dropdown-option:hover, .fot-page--jobs .fot-news-archive__dropdown-option.fot-selected, .fot-card-search--jobs .fot-news-archive__dropdown-option.fot-selected, .fot-block--jobs .fot-news-archive__dropdown-option.fot-selected, .fot-color-theme--red .fot-news-archive__dropdown-option.fot-selected {
  background-color: #FEEEEE;
}

.fot-news-archive__sort-arrows {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.fot-news-archive__sort-arrow {
  background: none;
  border: 1px solid #D6D6D6;
  border-radius: 0.625rem;
  padding: 0.71875rem 0.4375rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease;
}
.fot-page--training .fot-news-archive__sort-arrow, .fot-page--search .fot-news-archive__sort-arrow, .fot-card-search--training .fot-news-archive__sort-arrow, .fot-card-search--default .fot-news-archive__sort-arrow, .fot-block--training .fot-news-archive__sort-arrow, .fot-color-theme--blue .fot-news-archive__sort-arrow {
  color: #002C87;
}
.fot-page--certifications .fot-news-archive__sort-arrow, .fot-card-search--certifications .fot-news-archive__sort-arrow, .fot-block--certifications .fot-news-archive__sort-arrow, .fot-color-theme--green .fot-news-archive__sort-arrow {
  color: #006100;
}
.fot-page--events .fot-news-archive__sort-arrow, .fot-card-search--events .fot-news-archive__sort-arrow, .fot-block--events .fot-news-archive__sort-arrow, .fot-color-theme--pink .fot-news-archive__sort-arrow {
  color: #E72982;
}
.fot-page--news .fot-news-archive__sort-arrow, .fot-card-search--news .fot-news-archive__sort-arrow, .fot-block--news .fot-news-archive__sort-arrow, .fot-color-theme--purple .fot-news-archive__sort-arrow {
  color: #5700C5;
}
.fot-page--community .fot-news-archive__sort-arrow, .fot-card-search--community .fot-news-archive__sort-arrow, .fot-block--community .fot-news-archive__sort-arrow, .fot-color-theme--orange .fot-news-archive__sort-arrow {
  color: #E52B17;
}
.fot-page--jobs .fot-news-archive__sort-arrow, .fot-card-search--jobs .fot-news-archive__sort-arrow, .fot-block--jobs .fot-news-archive__sort-arrow, .fot-color-theme--red .fot-news-archive__sort-arrow {
  color: #BC0000;
}
.fot-page--training .fot-news-archive__sort-arrow:hover, .fot-page--search .fot-news-archive__sort-arrow:hover, .fot-card-search--training .fot-news-archive__sort-arrow:hover, .fot-card-search--default .fot-news-archive__sort-arrow:hover, .fot-block--training .fot-news-archive__sort-arrow:hover, .fot-color-theme--blue .fot-news-archive__sort-arrow:hover {
  border-color: #002C87;
}
.fot-page--certifications .fot-news-archive__sort-arrow:hover, .fot-card-search--certifications .fot-news-archive__sort-arrow:hover, .fot-block--certifications .fot-news-archive__sort-arrow:hover, .fot-color-theme--green .fot-news-archive__sort-arrow:hover {
  border-color: #006100;
}
.fot-page--events .fot-news-archive__sort-arrow:hover, .fot-card-search--events .fot-news-archive__sort-arrow:hover, .fot-block--events .fot-news-archive__sort-arrow:hover, .fot-color-theme--pink .fot-news-archive__sort-arrow:hover {
  border-color: #E72982;
}
.fot-page--news .fot-news-archive__sort-arrow:hover, .fot-card-search--news .fot-news-archive__sort-arrow:hover, .fot-block--news .fot-news-archive__sort-arrow:hover, .fot-color-theme--purple .fot-news-archive__sort-arrow:hover {
  border-color: #5700C5;
}
.fot-page--community .fot-news-archive__sort-arrow:hover, .fot-card-search--community .fot-news-archive__sort-arrow:hover, .fot-block--community .fot-news-archive__sort-arrow:hover, .fot-color-theme--orange .fot-news-archive__sort-arrow:hover {
  border-color: #E52B17;
}
.fot-page--jobs .fot-news-archive__sort-arrow:hover, .fot-card-search--jobs .fot-news-archive__sort-arrow:hover, .fot-block--jobs .fot-news-archive__sort-arrow:hover, .fot-color-theme--red .fot-news-archive__sort-arrow:hover {
  border-color: #BC0000;
}

.fot-featured-news {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.fot-featured-news__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.fot-featured-news__content {
  display: flex;
  gap: 1.5625rem;
  align-items: center;
}
.fot-featured-news__image-column {
  flex: 1;
}
.fot-featured-news__content-column {
  flex: 1;
  max-width: 31.125rem;
}
.fot-featured-news__image {
  position: relative;
  border-radius: 0.9375rem;
  overflow: hidden;
  max-height: 25.1875rem;
}
.fot-featured-news__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.fot-featured-news__image a:hover img {
  transform: scale(1.05);
}
.fot-featured-news__categories {
  margin-bottom: 1.1875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.fot-featured-news__category {
  display: inline-block;
  padding: 4px 12px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}
.fot-featured-news__title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #232325;
  margin: 0 0 1rem;
  color: #01013D;
}
.fot-featured-news__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fot-featured-news__excerpt {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #232325;
  margin: 0 0 1.3125rem;
  color: #232325;
}
.fot-featured-news__button {
  margin-top: 0;
}
.fot-featured-news__button .fot-button {
  color: #FFFFFF;
}
.fot-page--training .fot-featured-news__button .fot-button, .fot-page--search .fot-featured-news__button .fot-button, .fot-card-search--training .fot-featured-news__button .fot-button, .fot-card-search--default .fot-featured-news__button .fot-button, .fot-block--training .fot-featured-news__button .fot-button, .fot-color-theme--blue .fot-featured-news__button .fot-button {
  background-color: #002C87;
}
.fot-page--certifications .fot-featured-news__button .fot-button, .fot-card-search--certifications .fot-featured-news__button .fot-button, .fot-block--certifications .fot-featured-news__button .fot-button, .fot-color-theme--green .fot-featured-news__button .fot-button {
  background-color: #006100;
}
.fot-page--events .fot-featured-news__button .fot-button, .fot-card-search--events .fot-featured-news__button .fot-button, .fot-block--events .fot-featured-news__button .fot-button, .fot-color-theme--pink .fot-featured-news__button .fot-button {
  background-color: #E72982;
}
.fot-page--news .fot-featured-news__button .fot-button, .fot-card-search--news .fot-featured-news__button .fot-button, .fot-block--news .fot-featured-news__button .fot-button, .fot-color-theme--purple .fot-featured-news__button .fot-button {
  background-color: #5700C5;
}
.fot-page--community .fot-featured-news__button .fot-button, .fot-card-search--community .fot-featured-news__button .fot-button, .fot-block--community .fot-featured-news__button .fot-button, .fot-color-theme--orange .fot-featured-news__button .fot-button {
  background-color: #E52B17;
}
.fot-page--jobs .fot-featured-news__button .fot-button, .fot-card-search--jobs .fot-featured-news__button .fot-button, .fot-block--jobs .fot-featured-news__button .fot-button, .fot-color-theme--red .fot-featured-news__button .fot-button {
  background-color: #BC0000;
}
.fot-page--training .fot-featured-news__button .fot-button:hover, .fot-page--search .fot-featured-news__button .fot-button:hover, .fot-card-search--training .fot-featured-news__button .fot-button:hover, .fot-card-search--default .fot-featured-news__button .fot-button:hover, .fot-block--training .fot-featured-news__button .fot-button:hover, .fot-color-theme--blue .fot-featured-news__button .fot-button:hover {
  background-color: #01013D;
}
.fot-page--certifications .fot-featured-news__button .fot-button:hover, .fot-card-search--certifications .fot-featured-news__button .fot-button:hover, .fot-block--certifications .fot-featured-news__button .fot-button:hover, .fot-color-theme--green .fot-featured-news__button .fot-button:hover {
  background-color: #002100;
}
.fot-page--events .fot-featured-news__button .fot-button:hover, .fot-card-search--events .fot-featured-news__button .fot-button:hover, .fot-block--events .fot-featured-news__button .fot-button:hover, .fot-color-theme--pink .fot-featured-news__button .fot-button:hover {
  background-color: #430033;
}
.fot-page--news .fot-featured-news__button .fot-button:hover, .fot-card-search--news .fot-featured-news__button .fot-button:hover, .fot-block--news .fot-featured-news__button .fot-button:hover, .fot-color-theme--purple .fot-featured-news__button .fot-button:hover {
  background-color: #1E053F;
}
.fot-page--community .fot-featured-news__button .fot-button:hover, .fot-card-search--community .fot-featured-news__button .fot-button:hover, .fot-block--community .fot-featured-news__button .fot-button:hover, .fot-color-theme--orange .fot-featured-news__button .fot-button:hover {
  background-color: #490200;
}
.fot-page--jobs .fot-featured-news__button .fot-button:hover, .fot-card-search--jobs .fot-featured-news__button .fot-button:hover, .fot-block--jobs .fot-featured-news__button .fot-button:hover, .fot-color-theme--red .fot-featured-news__button .fot-button:hover {
  background-color: #530F10;
}

.fot-news-archive {
  position: relative;
  padding: 0 0 5.625rem;
}
.fot-news-archive__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.fot-news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.9375rem;
  row-gap: 1.5625rem;
  margin-bottom: 2.1875rem;
}

.fot-no-posts {
  padding: 4rem 0;
  text-align: center;
}
.fot-no-posts__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.fot-no-posts h1 {
  font-size: 2rem;
  color: #232325;
  margin-bottom: 1rem;
}
.fot-no-posts p {
  color: #232325;
  font-size: 1.125rem;
}

.fot-news-archive .wp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.fot-news-archive .wp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  text-decoration: none;
  border: 1px solid #ECEDEE;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.fot-page--news-archive {
  position: relative;
  background: linear-gradient(0deg, #F6F0FF 20%, #fff 90%);
}
.fot-page--news-archive:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../images/fot-website-background-grid-light.png");
  background-position: bottom;
  background-repeat: repeat-x;
  opacity: 0.33;
  z-index: 0;
}
.fot-page--news-archive .fot-pagination {
  max-width: 57.875rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.fot-page--news-archive .fot-browse-by-technology {
  background-color: #FFFFFF;
  position: relative;
}

/*# sourceMappingURL=archive-news.css.map */
