/*
 * MODIFY
 * External resources like fonts and icon libraries.
 * Consider self-hosting fonts or using font-display: swap for better performance.
 */
@import url("https://use.typekit.net/cdu3slr.css");
/* Your existing Typekit font */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
/* New Google Fonts */

/*
 * ENHANCED VARIABLES
 * Define a comprehensive set of CSS variables for consistent theming.
 * Organized by category for easy management.
 */
:root {
  /* Brand Colors */
  --primary: #0084BD;
  --accent: #E5312B;

  /* Semantic Colors */
  --semantic-success: #12B76A;
  --semantic-error: #E5312B;
  --semantic-warning: #F79009;
  --semantic-info: #2E90FA;
  --semantic-neutral: #667085;

  /* Grayscale Palette */
  --white: #FFFFFF;
  /* Page BG */
  --gray-50: #F9FAFB;
  /* Alternative BG */
  --gray-100: #F2F4F7;
  /* Card BG */
  --gray-200: #E4E7EC;
  /* Border or Divider */
  --gray-300: #D0D5DD;
  --gray-400: #98A3B3;
  --gray-500: #667285;
  /* Body text */
  --gray-600: #475467;
  --gray-700: #344154;
  --gray-800: #1D2839;
  /* Headers */
  --gray-900: #101A28;

  /* Typography */
  --font-body: 'Barlow', serif;
  --font-header: 'Merriweather', sans-serif;
  --font-button: 'Merriweather', serif;

  --font-display-size: 56px;
  --font-h1-size: 40px;
  --font-h2-size: 32px;
  --font-h3-size: 24px;
  --font-body-lg-size: 20px;
  --font-body-lg-bold-size: 20px;
  --font-body-size: 18px;
  --font-body-bold-size: 18px;
  --font-body-sm-size: 16px;
  --font-caption-size: 14px;
  --font-button-size: 14px;

  --lh-display: 1.1;
  --lh-h1: 1.2;
  --lh-h2: 1.2;
  --lh-h3: 1.3;
  --lh-body-lg: 1.6;
  --lh-body: 1.5;
  --lh-body-sm: 1.5;
  --lh-caption: 1.4;
  --lh-button: 0.8;

  --font-weight-light: 200;
  --font-weight-normal: 300;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 900;

  /* Spacing */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  --spacing-quad: 80px;
  --spacing-quint: 96px;
  --spacing-banner-height: 3.5rem;

  /* Border Radius */
  --border-radius-none: 0;
  --border-radius-xs: 4px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --border-radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  --transition-ease: ease-in-out;

    /* Partners */
  --partners-marquee-width: 80vw;
}

/*
 * BASE STYLES
 * Essential global styles for HTML elements, resets, and typography.
 */

/* Global selection color */
::selection {
  background: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-body-size);
  line-height: var(--lh-body);
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-h2);
  hyphens: auto;
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-family: var(--font-header);
  font-size: var(--font-h1-size);
  line-height: var(--lh-h1);
  font-weight: var(--font-weight-bold);
  color: var(--gray-800);
  hyphens: auto;
}

h2 {
  font-family: var(--font-header);
  font-size: var(--font-h2-size);
  line-height: var(--lh-h2);
  font-weight: var(--font-weight-bold);
  color: var(--gray-800);
  margin-top: 32px;
  hyphens: auto;

}

h3 {
  font-family: var(--font-body);
  font-size: var(--font-h3-size);
  line-height: var(--lh-h3);
  font-weight: var(--font-weight-medium);
  color: var(--gray-800);
  margin-top: 32px;
  margin-bottom: 8px;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--font-body-lg-size);
  line-height: var(--lh-body-lg);
  font-weight: var(--font-weight-medium);
  color: var(--gray-800);
  margin-top: 24px;
  margin-bottom: 8px;
}

h5 {
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  line-height: var(--lh-body);
  font-weight: var(--font-weight-medium);
  color: var(--gray-800);
  margin-top: 40px;
}

h6 {
  font-family: var(--font-body);
  font-size: var(--font-body-sm-size);
  line-height: var(--lh-body-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-800);
}

p {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-body-size);
  margin-bottom: var(--spacing-md);
}

b {
  font-weight: var(--font-weight-medium);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast) var(--transition-ease);
}

a:hover {
  text-decoration: none;
  color: var(--accent);
}

[id] {
  scroll-margin-top: 80px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--primary);
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: none;
  color: var(--accent);
}

/* List styles */
ul {
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

/* Images and Media */
figure {
  margin: 0 0 0rem;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.image-textured {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 50vh;
  z-index: -1;
}

.image-textured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-image>div,
.header-image figure {
  height: 100%;
  width: 100%;
  margin: 0;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-textured .overlay-texture {
  position: absolute;
  inset: 0;
  background: url('https://foys-prod.imgix.net/d82c5610-66b2-4939-9897-8dac34becfc5/f020decf-1f20-44bf-9520-55c4db906196.jpg') center/cover no-repeat;
  mix-blend-mode: color-burn;
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
  border-radius: var(--border-radius-md);
}

.image-textured .overlay-bottom {
  position: absolute;
  bottom: -48px;
  left: 0px;
  right: 0;
  height: 100%;
  background: url('https://foys-prod.imgix.net/d82c5610-66b2-4939-9897-8dac34becfc5/a8fec988-ace1-4270-b3dd-46004ae3a9e6.png') bottom center / cover no-repeat;
  pointer-events: none;
}

.header-image {
  height: 50vh;
  min-width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
}

.hero-section {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: unset;
  margin-bottom: var(--spacing-quad);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.video-wrapper .overlay-texture {
  position: absolute;
  inset: 0;
  background: url('https://foys-prod.imgix.net/d82c5610-66b2-4939-9897-8dac34becfc5/fe2b4a7d-e189-47a0-8b75-2ecf2f925bc0.jpg') center/cover no-repeat;
  mix-blend-mode: color-burn;
  opacity: 0.1;
  pointer-events: none;
  z-index: -2;
}

.video-wrapper .overlay-bottom {
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0;
  height: 100%;
  background: url('https://foys-prod.imgix.net/d82c5610-66b2-4939-9897-8dac34becfc5/0acc54e2-0471-4233-b251-424e12c08876.png') bottom center / cover no-repeat;
  pointer-events: none;
  z-index: -1;
}

.content-center {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}


@media (max-width: 991.98px) {

  .image-textured,
  .header-image {
    height: 55vh;
  }

  .image-textured img {
    height: 100%;
    object-fit: cover;
  }

  .image-textured .overlay-bottom {
    bottom: 0px;
  }

  .hero-section {
    height: 87vh;
  }

}

/* Blockquote */
blockquote {
  font-size: var(--font-h2-size);
  text-align: center;
  width: 100%;
  margin: var(--spacing-xxl) auto;
  font-family: var(--font-header);
  font-style: italic;
  color: var(--primary);
  line-height: var(--lh-body);
  font-weight: var(--font-weight-medium);
}

blockquote p {
  font-size: var(--font-h2-size);
  text-align: center;
  width: 100%;
  margin: var(--spacing-xxl) auto;
  font-family: var(--font-header);
  font-style: italic;
  color: var(--primary);
  line-height: var(--lh-body);
  font-weight: var(--font-weight-medium);
}

/* Highlights*/
.mark,
mark {
  padding: 4px 8px;
  background-color: var(--primary);
  border-radius: 4px;
  color: var(--white);
}


/* Horizontal Rule */
hr {
  border-top: 1px solid var(--gray-200);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* Table styles */
table {
  width: 100%;
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--gray-200);
  border-collapse: collapse;
}

td {
  border: 1px solid var(--gray-200);
  padding: var(--spacing-sm);
  vertical-align: top;
  font-weight: var(--font-weight-normal);
}

th {
  border: 1px solid var(--gray-200);
  padding: var(--spacing-sm);
  vertical-align: top;
  font-weight: var(--font-weight-medium);
  color: var(--gray-800);
}

@media (max-width: 768px) {
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-collapse: collapse;
  }

  td,
  th {
    white-space: nowrap;
    padding: 0.75rem;
    border: 1px solid #ddd;
  }
}

/*
 * TYPOGRAPHY CLASSES
 * Classes for specific typographic styles, directly mapping to variables.
 */
.display {
  font-family: var(--font-header);
  font-size: var(--font-display-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-display);
}

.h1 {
  font-family: var(--font-header);
  font-size: var(--font-h1-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-h1);
}

.h2 {
  font-family: var(--font-header);
  font-size: var(--font-h2-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-h2);
}

.h3 {
  font-family: var(--font-body);
  font-size: var(--font-h3-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--lh-h3);
}

.body-large {
  font-family: var(--font-body);
  font-size: var(--font-body-lg-size);
  font-weight: var(--font-weight-normal);
  line-height: var(--lh-body-lg);
}

.body-large-bold {
  font-family: var(--font-body);
  font-size: var(--font-body-lg-bold-size);
  font-weight: var(--font-weight-semibold);
  line-height: var(--lh-body-lg);
}

.body {
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: var(--font-weight-normal);
  line-height: var(--lh-body);
}

.body-bold {
  font-family: var(--font-body);
  font-size: var(--font-body-bold-size);
  font-weight: var(--font-weight-semibold);
  line-height: var(--lh-body);
}

.body-small {
  font-family: var(--font-body);
  font-size: var(--font-body-sm-size);
  font-weight: var(--font-weight-normal);
  line-height: var(--lh-body-sm);
}

.caption {
  font-family: var(--font-body);
  font-size: var(--font-caption-size);
  font-weight: var(--font-weight-normal);
  line-height: var(--lh-caption);
}

.button {
  font-family: var(--font-button);
  font-size: var(--font-button-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-button);
}

/*
 * UTILITY CLASSES
 * General-purpose, single-responsibility classes for common styling needs.
 * Organized by type.
 */

/* Color Utilities */
.bg-primary-color {
  background-color: var(--primary);
  color: var(--white);
}

.bg-primary-color a,
.bg-primary-color h1,
.bg-primary-color h2,
.bg-primary-color h3,
.bg-primary-color h4,
.bg-primary-color h5,
.bg-primary-color h6 {
  color: var(--white);
}

.bg-accent-color {
  background-color: var(--accent);
  color: var(--white);
}

.bg-accent-color a,
.bg-accent-color h1,
.bg-accent-color h2,
.bg-accent-color h3,
.bg-accent-color h4,
.bg-accent-color h5,
.bg-accent-color h6 {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
  color: var(--gray-800);
}

.bg-white a {
  color: var(--primary) !important;
}

/* Text Color Utilities */
.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-white {
  color: var(--white) !important;
}

/* Link Style Utilities (for specific link appearances) */
.link-style-1 a {
  color: var(--white);
  text-decoration: none;
}

.link-style-1 a:hover {
  text-decoration: underline;
}

.link-style-2 a {
  color: var(--white);
  text-decoration: none;
}

.link-style-2 a:hover {
  color: var(--accent);
  text-decoration: none;
}

.link-style-3 a {
  color: var(--accent);
  text-decoration: none;
}

.link-style-3 a:hover {
  color: var(--primary);
  text-decoration: none;
}

.link-style-4 a {
  color: var(--primary);
  text-decoration: none;
}

.link-style-4 a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Layout Utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.align-justify {
  text-align: justify;
}

/* Spacing Utilities */
.py-8 {
  padding-block: 8rem;
}

/* Border Radius Utilities */
.rounded-none {
  border-radius: var(--border-radius-none);
}

.rounded-sm {
  border-radius: var(--border-radius-sm);
}

.rounded-md {
  border-radius: var(--border-radius-md);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-xl {
  border-radius: var(--border-radius-xl);
}

.rounded-full {
  border-radius: var(--border-radius-round);
}

/* Gap Utilities (flexbox based) */
/* Vertical Gaps */
.gap-x-sm {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gap-x-md {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.gap-x-lg {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.gap-x-xl {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.gap-x-xxl {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxxl);
}

/* Horizontal Gaps */
.gap-y-sm {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.gap-y-md {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.gap-y-lg {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  width: 100%;
}

.gap-y-xl {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xxl);
  flex-wrap: wrap;
}

.gap-y-xxl {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xxxl);
  flex-wrap: wrap;
}

/* Other Utilities */
.highlighted {
}

.full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * BUTTONS
 * Standardized button styles and their variants.
 */
button,
.btn {
  font-family: var(--font-button);
  font-size: var(--font-button-size);
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-xs) var(--spacing-md);
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal) var(--transition-ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary) 90%, black 10%);
  color: var(--white);
  border-color: color-mix(in srgb, var(--primary) 90%, black 10%);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: color-mix(in srgb, var(--primary) 90%, black 10%);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  font-weight: var(--font-weight-bold);
}

.btn-red {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-red:hover {
  background-color: color-mix(in srgb, var(--accent) 90%, black 10%);
  color: var(--white);
  border-color: color-mix(in srgb, var(--accent) 90%, black 10%);
}

/* Bootstrap specific button overrides (if these need to stay specific to my-env) */
.my-env .btn {
  border: none !important;
}

.my-env .btn-group-sm,
.my-env .btn-sm,
.my-env .custom-select,
.my-env .dropdown-menu,
.my-env .form-control,
.my-env .form-control-plaintext {
  border-radius: var(--border-radius-sm);
}

.my-env .btn-primary {
  background-color: var(--primary);
  border: 0;
  color: var(--white);
}

.my-env .btn-primary:hover {
  background-color: var(--primary);
}

.my-env .btn-secondary {
  background-color: var(--primary);
  border: 0;
  color: var(--white);
}

.my-env .btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.my-env .btn-white {
  background-color: transparent;
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}

.my-env .btn-white:hover {
  background-color: var(--primary);
  color: var(--white);
  opacity: 1;
}

.my-env .btn-white-border {
  background-color: transparent;
  opacity: 1;
  border-color: var(--white);
  color: var(--white);
}

.my-env .btn-white-border:hover {
  background-color: var(--white);
  color: var(--primary);
  opacity: 1;
}

/*
 * COMPONENTS
 * Styles for specific UI components, organized by their function.
 */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  height: var(--spacing-banner-height);
  background-color: var(--white);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: var(--spacing-sm);
}

.cookie-banner-actions {
  margin-left: var(--spacing-md);
  display: flex;
  gap: var(--spacing-md);
}

/* Video Section (general purpose) */
.video-section {
  position: relative;
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--gray-900);
}

.fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
}

.logo {
  max-height: 20rem;
  margin-right: 90px;
}

/* Card Lists */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  width: 100%;
  padding-inline: var(--spacing-md);
  box-sizing: border-box;
  align-items: start;
  z-index: 0;
}

.card-item {
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.03);
}

.cards-header {
  padding: var(--spacing-md);
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.cards-header i {
  font-size: 40px;
  font-weight: 500;
}

.cards-header h2 {
  margin: 0;
  font-size: var(--font-body-lg-size);
  color: var(--white);
}

.limited-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  max-height: 235px;
  min-height: 235px;
  overflow: hidden;
}

.limited-list.expanded {
  max-height: 1000px;
}

/* UL- en NAV-structuren gelijk stylen */
.limited-list ul,
.limited-list .navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Items in beide structuren */
.limited-list ul li,
.limited-list .nav-item {
  padding: 0 1rem 8px 1rem;
  width: 100%;
  overflow: hidden;
  display: block;
  text-align: center;
}

/* Links in beide structuren */
.limited-list ul li a,
.limited-list .nav-item a {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast) var(--transition-ease);
  background: none;
  padding: 0;
  font-weight: normal;
}

/* Overschrijf ongewenste Bootstrap navbar-dark styling */
.limited-list .navbar-dark .nav-link {
  color: var(--primary) !important;
  font-size: var(--font-body-size) !important;
}

/* Verberg items >= 5 */
.limited-list ul li:nth-child(n + 5),
.limited-list .nav-item:nth-child(n + 5) {
  display: none;
}

/* Toon extra items bij expanded */
.limited-list.expanded ul li:nth-child(n + 5),
.limited-list.expanded .nav-item:nth-child(n + 5) {
  display: list-item;
}

.toggle-more {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-md);
}

@media (max-width: 991.98px) {
  .limited-list .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .limited-list .mobile-offcanvas {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    overflow: hidden;
  }

  .limited-list .offcanvas-header {
    display: none !important;
  }
}


/* News & Calendar */
.news-item {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-item.border,
.calendar-event.border {
  border: 0 !important;
}

.news-content-container {
  padding: var(--spacing-lg);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.03);

}

.news-image-container {
  width: 100%;
}

.news-item-image-div {
  min-height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 240px;
  transition: all var(--transition-slow) var(--transition-ease);
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.news-date {
}

.news-title {
  margin-bottom: var(--spacing-xs);
}

.news-title a {
  font-family: var(--font-header);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-body-size);
  text-decoration: none;
  color: var(--gray-800);
  transition: color var(--transition-fast) var(--transition-ease);
}

.news-short-description-content {
  text-align: left !important;
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-normal);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* Limit to 3 lines */
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-read-more {
  color: var(--primary);
  margin-top: var(--spacing-md);
  text-align: left;
  font-family: var(--font-button);
  font-size: var(--font-button-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-button);
}

a.news-read-more::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

.news-read-more a:hover::after {
  transform: translateX(2px);
}

.news-read-more a {
  color: color-mix(in srgb, var(--primary) 90%, black 10%);
  font-size: var(--font-body-size);
}

.news-read-more a:hover {
  color: color-mix(in srgb, var(--primary) 90%, black 10%);
}

.news-body img {
  max-width: 100%;
  height: auto;
}

/* News Detail Page */
.website-news-item-details .news-title {
  margin-top: var(--spacing-lg);
  font-size: var(--font-h2-size);
  color: var(--gray-800);
}

.website-news-item-details .news-image-col {
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.website-news-item-details .news-image-col img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

.website-news-item-details .news-content-col {
  padding-inline: var(--spacing-md);
}

.website-news-item-details .news-body {
  padding-inline: var(--spacing-md);
}

.news-header-container .col-md-3 {
  flex: 0 0 auto !important;
  min-width: 100% !important;
  width: auto !important;
  padding: 0 !important;
  max-height: 450px;
  overflow: clip;
}


/* Calendar Event */
.calendar-event-date,
.calendar-event-time {
  display: inline;
  font-family: var(--font-header);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-body-size);
  text-decoration: none;
  color: var(--primary);
}

.calendar-event-date:first-letter {
  text-transform: capitalize;
}

.calendar-event-time::before {
  content: "van ";
}

.calendar-event-title {
  padding-top: var(--spacing-xxs);
  font-size: var(--font-h3-size);
}

.website-calendar-events .lead {
  display: none;
}

.big-date-block {
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}

.big-date-day,
.big-date-month {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 0;
}

.website-calendar-events {
  width: 100%;
}

.website-calendar-events .calendar-event {
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
}

.website-calendar-events .calendar-event .event-title {
  color: var(--accent);
  transition: color var(--transition-fast) var(--transition-ease);
}

.website-calendar-events .calendar-event .event-title:hover {
  color: var(--gray-700);
}

.website-calendar-events .calendar-event .event-location {
  margin-bottom: 0px !important;
}

.website-calendar-events .no-items-found {
  color: var(--white);
  text-align: center;
}

/* Sponsor Logos */
.sponsor-logo-image {
  max-width: 300px;
  max-height: 200px;
  object-fit: contain;
}

.website-sponsors-list {
  overflow: visible !important;
}

.website-sponsors-list .lead {
  display: none;
}

.website-sponsors-list {
  width: 100vw;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Forms Images */
.form-image-small {
  max-height: 350px;
  width: 100%;
  object-fit: scale-down;
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.form-image-large {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

/*
 * ICONOGRAPHY
 * Using Font Awesome 6 for external file type icons, applied via pseudo-elements.
 */
a[href$=".pdf"]::after,
a[href$=".doc"]::after,
a[href$=".docx"]::after,
a[href$=".xls"]::after,
a[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 200;
  margin-left: var(--spacing-xs);
  display: inline-block;
  vertical-align: middle;
  font-size: var(--font-body-size);
  color: var(--primary);
}

a[href$=".pdf"]::after {
  content: "\f1c1";
  /* fa-file-pdf */
}

a[href$=".doc"]::after,
a[href$=".docx"]::after {
  content: "\e5ed";
  /* fa-file-word */
}

a[href$=".xls"]::after,
a[href$=".xlsx"]::after {
  content: "\e64d";
  /* fa-file-excel */
}

/* Hover states for file icons */
a[href$=".pdf"]:hover::after,
a[href$=".doc"]:hover::after,
a[href$=".docx"]:hover::after,
a[href$=".xls"]:hover::after,
a[href$=".xlsx"]:hover::after {
  color: var(--accent);
}

/* Media Queries voor Main Content */
@media all and (min-width: 992px) {
  .page-top-image {
    display: block;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image h2 {
    color: var(--white);
    margin-top: 225px;
    text-align: center;
    font-size: clamp(48px, 10vw, 60px);
  }

  .page-top-image-secondary {
    display: block;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image-secondary h2 {
    color: var(--white);
    margin-top: 100px;
    text-align: center;
    font-size: clamp(48px, 10vw, 60px);
  }

}

@media all and (max-width: 991.98px) {


  .btn-group-membership {
    flex-direction: column;
  }

  .cookie-banner {
    display: block;
    height: 8rem;
    flex-direction: column;
  }

  .cookie-banner-actions {
    margin-left: 0;
    margin-top: var(--spacing-sm);
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions a {
    width: 100%;
  }

  .btn,
  button {
    width: 100%;
    display: block;
  }

}

@media all and (max-width: 767.98px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .gap-y-lg {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .logo {
    max-height: 15rem;
    margin-right: 65px;
  }

  .btn,
  button {
    width: 100%;
    display: block;
  }
}

/*
 * MYENV Overrides (Specific Environment Adjustments)
 * These styles are tailored for the ".my-env" context.
 * Consider if these overrides are necessary or if a more global approach could be taken.
 */
.my-env {
  font-family: var(--font-body) !important;
}

.my-env .absolute-card {
  max-width: 100% !important;
  background: none !important;
}

.my-env .image-container {
  background-image: none !important;
}

.my-env .absolute-card div {
  color: var(--primary) !important;
  font-size: var(--font-body-lg-size);
}

.my-env h4,
.my-env .h4 {
  color: var(--accent) !important;
}

.my-env u {
  text-decoration: unset;
}

.my-env p {
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-body-size);
}

.my-env .navbar {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--border-radius-md);
}

.my-env .navbar-light .navbar-nav .nav-link {
  color: var(--primary);
}

/* Basic Layout & Tab Styles for the Preview Page itself */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--gray-500);
}

.preview-container {
  max-width: 1400px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-header {
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--gray-800);
}

@media (min-width: 992px) {
  .header-content {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .split-content {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .three-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
  }

  #main-content {
    margin-top: -44px;
  }

}

@media (max-width: 991.98px) {
  .three-cards {
    padding-top: 120px;
    display: block;
    min-height: auto;
  }

  .split-content {
    display: block;
    min-height: auto;
  }

  .header-content {
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* --- Tab Styles --- */
.tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: var(--spacing-xs);
}

.tab-button {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-family: var(--font-header);
  font-weight: var(--font-weight-medium);
  color: var(--gray-600);
  transition: all var(--transition-fast) var(--transition-ease);
}

.tab-button:hover {
  background-color: var(--gray-200);
  color: var(--gray-700);
}

.tab-button.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Additional modern layout helpers for this preview */
.flex-row-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.flex-col-gap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

/* === KENNISCENTRUM TEMPLATE === */

/* === ACTIVE PILL STIJL === */
.active-pill {
  position: absolute;
  height: 40px;
  background-color: var(--primary);
  border-radius: var(--border-radius-xs);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  top: 4px;
  margin-left: 4px;
}

/* === MENU CONTAINER === */
.kenniscentrum-menu-row {
  position: sticky;
  top: 72px;
  z-index: 1030;
  margin-bottom: 52px;
}

.kenniscentrum-menu-column {
  display: inline-flex;
  position: relative;
  background-color: var(--gray-100);
  border-radius: var(--border-radius-sm);
  padding: 4px;
  overflow: hidden;
}

/* === MENU LIJST === */
.kenniscentrum-menu-column .navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--spacing-sm);
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}

/* === ITEM / LINK === */
.kenniscentrum-menu-column .nav-item {
  list-style: none;
}

.kenniscentrum-menu-column .nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: var(--font-weight-normal);
  color: var(--gray-500) !important;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  z-index: 1;
  background-color: transparent;
  transition: none;
}

.kenniscentrum-menu-column .nav-link.active {
  color: var(--white) !important;
  background-color: transparent;
}

/* Remove default Bootstrap dropdown arrow */
.dropdown-toggle::after {
  content: none;
  border: none;
}

/* === SIDEMENU COMMON STYLES === */

.sidemenu {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  z-index: 999;
  padding: 0;
}



.sidemenu h4 {
  margin: 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}



.sidemenu ul.simple-menu-list {
  flex-direction: column !important;
  padding: 0;
  margin: 0;
  list-style: none;
}



.sidemenu ul.simple-menu-list li {
  border-bottom: 1px solid var(--gray-200);
  position: unset;
  display: flow-root;
}



.sidemenu ul.simple-menu-list a {
  display: flex;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--gray-500);
  transition: all 0.3s ease;
  justify-content: space-between;
  align-items: center;
}



.sidemenu ul.simple-menu-list a:hover {
  background: var(--gray-100);
  color: var(--accent);
}



.back-kenniscentrum {
  color: var(--primary);
  position: absolute;
  top: -48px;
  left: 40px;
}

.back-kenniscentrum:hover {
  color: var(--accent);
}



.back-kenniscentrum::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f060";
  display: inline-block;
  margin-right: 0.5rem;
}

.simple-menu-list .active-link {
  color: var(--accent) !important;
}



/* Dropdown common */

.sidemenu .dropdown-menu {
  position: static !important;
  display: block !important;
  background: var(--gray-100) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* CRUCIAAL: Neutraliseer ALLE hover-states op dropdown-menu */
.sidemenu .dropdown-menu:hover,
.sidemenu .dropdown:hover .dropdown-menu,
.sidemenu .dropdown-hover-all:hover .dropdown-menu {
  max-height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Dropdown open state - MOET het STERKSTE zijn */
.sidemenu .dropdown-menu.show {
  max-height: 1000px !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Blijf open bij hover als de show class er op zit */
.sidemenu .dropdown-menu.show:hover,
.sidemenu .dropdown:hover .dropdown-menu.show,
.sidemenu .dropdown-hover-all:hover .dropdown-menu.show {
  max-height: 1000px !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.sidemenu .dropdown-menu .dropdown-item {
  font-size: var(--font-body-size);
  border-top: 1px solid var(--gray-300);
  background-color: var(--gray-200);
}

.sidemenu .dropdown-menu a {
  display: block;
  padding: 12px 24px 12px 40px;
  color: var(--gray-500);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.sidemenu .dropdown-menu a:last-child {
  border-bottom: none;
}

.sidemenu .dropdown-menu a:hover {
  background: white;
  color: var(--accent);
}

/* Dropdown toggle common */
.sidemenu .dropdown-toggle::after {
  content: '\f078';
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 300;
  float: right;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.sidemenu .dropdown-toggle.show-dropdown-menu::after {
  transform: rotate(180deg);
}

.sidemenu .dropdown-toggle {
  cursor: pointer;
}

.sidemenu .dropdown-toggle:hover {
  text-decoration: none;
}

/* === DESKTOP === */
@media (min-width: 992px) {
  .sidemenu {
    margin-top: 104px;
    margin-bottom: 40px;
    max-width: fit-content;
    min-width: 250px;
    margin-right: 24px;
    position: relative;
    height: fit-content;
  }

  .sidemenu h4 {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    padding: 16px;
  }

  .sidemenu ul.simple-menu-list a:hover {
    padding-left: 28px;
  }

  .sidemenu .dropdown-menu a:hover {
    padding-left: 44px;
  }
}

/* === MOBILE / TABLET === */
@media (max-width: 991.98px) {
  .sidemenu {
    position: fixed;
    bottom: 24px;
    width: -webkit-fill-available;
    margin-left: 24px;
    margin-right: 24px;
  }

  .sidemenu h4 {
    cursor: pointer;
    padding: 16px 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    position: relative;
  }

  .sidemenu h4::after {
    content: '\f078';
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 900;
    /* solid icons */
    float: right;
    margin-top: 2px;
    transition: transform 0.3s ease;
  }

  .sidemenu h4.active::after {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .sidemenu .simple-menu-list {
    display: none;
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    max-height: 100vh;
    overflow-y: auto;
  }

  .sidemenu .simple-menu-list.active {
    display: block;
    margin: 0 24px;
    width: -webkit-fill-available;
    background: var(--white);
    max-width: 100%;
    max-height: 72calc(100vh - 180px);
  }

  .sidemenu .dropdown-menu a {
    font-size: 0.9em;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
 
/* === FORM === */

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 8px;
  font-size: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 .2rem #0084bd40;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--semantic-success);
  color: var(--semantic-success);
  padding-right: calc(1.5em + .75rem);
  background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e);
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-invalid,
.was-validated .form-control:valid:focus {
  color: var(--gray-500);
  border-color: var(--semantic-success);
  box-shadow: 0 0 0 .2rem #12b76a40;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: var(--semantic-error);
  color: var(--semantic-error);
  padding-right: calc(1.5em + .75rem);
  background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: var(--semantic-error);
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}

.multi-column-text {
  column-count: 1;
  column-gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .multi-column-text {
    column-count: 3;
  }
}

/* === YOUTUBE === */
.youtube-video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 16px;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.crop-square {
  height: 250px;
  width: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-top: 80px;
}

.crop-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*===3 STAPPEN===*/
@media (min-width: 992px) {
  .card-3 {
    max-height: 441px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .all-cards {
    display: flex;
    justify-content: center;
  }
}
.foys-footer{
  justify-content: center;
  display: flex;
}

.pagination {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/*===Competition===*/
competition-widget[page="clubs"] h1.text-uppercase,
competition-widget[page="results"] h1.text-uppercase,
competition-widget[page="program"] h1.text-uppercase {
  text-transform: inherit !important;
}

/*===Competition Pagination===*/
.ms-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}


.foys-competition-widget .page-link {
  display: flex !important;
  color: var(--gray-500) !important;
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-body-size) !important;
  text-decoration: none !important;
  background-color: var(--white) !important;
  border: var(--bs-pagination-border-width) solid var(--bs-gray-300) !important;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.foys-competition-widget .active>.page-link {
  background-color: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}

.foys-competition-widget .col-lg-3 {
  width: 33.33333333% !important;
}