/**
 * DW Event Calendar Frontend Styles
 * 
 * WordPress/Elementor compatible styling for match info and event calendar
 * 
 * @package DW_Event_Calendar_Addon
 * @since 2.0.0
 */

/* ==========================================================================
   CSS Custom Properties (WordPress/Elementor Compatible)
   ========================================================================== */

:root {
  /* Primary Colors (WordPress Blue Palette) */
  --dw-primary-color: #0073aa;
  --dw-primary-dark: #005177;
  --dw-primary-light: #00a0d2;

  /* Secondary Colors */
  --dw-secondary-color: #72aee6;
  --dw-secondary-dark: #2271b1;
  --dw-secondary-light: #a7aaad;

  /* Success/Error Colors (WordPress Standard) */
  --dw-success-color: #00a32a;
  --dw-success-light: #4ab866;
  --dw-warning-color: #dba617;
  --dw-error-color: #d63638;

  /* Neutral Colors (WordPress Admin Palette) */
  --dw-white: #ffffff;
  --dw-light-gray: #f6f7f7;
  --dw-gray: #dcdcde;
  --dw-dark-gray: #646970;
  --dw-darker-gray: #3c434a;
  --dw-black: #1d2327;

  /* Sport Colors */
  --dw-football-color: #2e7d32;
  --dw-handball-color: #d84315;
  --dw-basketball-color: #ff6f00;
  --dw-volleyball-color: #6a1b9a;
  --dw-innebandy-color: #1976d2;

  /* Typography (WordPress Standard) */
  --dw-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --dw-font-size-small: 13px;
  --dw-font-size-normal: 16px;
  --dw-font-size-large: 18px;
  --dw-font-size-xl: 24px;
  --dw-font-size-xxl: 32px;

  /* Spacing (Elementor Standard 8px Grid) */
  --dw-spacing-xs: 8px;
  --dw-spacing-sm: 16px;
  --dw-spacing-md: 24px;
  --dw-spacing-lg: 32px;
  --dw-spacing-xl: 48px;
  --dw-spacing-xxl: 64px;

  /* Borders and Radius */
  --dw-border-radius: 8px;
  --dw-border-radius-large: 12px;
  --dw-border-width: 1px;
  --dw-border-color: var(--dw-gray);

  /* Shadows (WordPress Standard) */
  --dw-shadow-sm: 0 1px 1px rgba(0, 0, 0, 0.04);
  --dw-shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --dw-shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
  --dw-shadow-xl: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --dw-transition: all 0.2s ease-in-out;
  --dw-transition-slow: all 0.3s ease-in-out;
}

/* ==========================================================================
   Base Components
   ========================================================================== */

.dw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--dw-spacing-sm);
}

.dw-card {
  background: var(--dw-white);
  border: var(--dw-border-width) solid var(--dw-border-color);
  border-radius: var(--dw-border-radius);
  box-shadow: var(--dw-shadow-sm);
  overflow: hidden;
}

.dw-card--elevated {
  box-shadow: var(--dw-shadow-lg);
}

.dw-section {
  padding: var(--dw-spacing-lg);
}

.dw-section--sm {
  padding: var(--dw-spacing-md);
}

.dw-section--lg {
  padding: var(--dw-spacing-xl);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.dw-heading {
  font-family: var(--dw-font-family);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--dw-spacing-sm) 0;
  color: var(--dw-black);
}

.dw-heading--xl {
  font-size: var(--dw-font-size-xxl);
  font-weight: 700;
}

.dw-heading--lg {
  font-size: var(--dw-font-size-xl);
}

.dw-heading--md {
  font-size: var(--dw-font-size-large);
}

.dw-heading--sm {
  font-size: var(--dw-font-size-normal);
}

.dw-text {
  font-family: var(--dw-font-family);
  font-size: var(--dw-font-size-normal);
  line-height: 1.5;
  color: var(--dw-darker-gray);
  margin: 0 0 var(--dw-spacing-sm) 0;
}

.dw-text--small {
  font-size: var(--dw-font-size-small);
}

.dw-text--muted {
  color: var(--dw-dark-gray);
}

.dw-text--center {
  text-align: center;
}

/* ==========================================================================
   Buttons (WordPress Admin Style)
   ========================================================================== */

.dw-button {
  display: inline-flex;
  align-items: center;
  gap: var(--dw-spacing-xs);
  padding: var(--dw-spacing-xs) var(--dw-spacing-sm);
  font-family: var(--dw-font-family);
  font-size: var(--dw-font-size-small);
  font-weight: 500;
  text-decoration: none;
  border: var(--dw-border-width) solid transparent;
  border-radius: var(--dw-border-radius);
  cursor: pointer;
  transition: var(--dw-transition);
  white-space: nowrap;
}

.dw-button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.dw-button--primary:hover {
  background: var(--dw-primary-dark);
  border-color: var(--dw-primary-dark);
  color: var(--dw-white);
}

.dw-button--secondary {
  background: var(--dw-white);
  color: var(--dw-primary-color);
  border-color: var(--dw-primary-color);
}

.dw-button--secondary:hover {
  background: var(--dw-primary-color);
  color: var(--dw-white);
}

.dw-button--success {
  background: var(--dw-success-color);
  color: var(--dw-white);
  border-color: var(--dw-success-color);
}

.dw-button--success:hover {
  background: var(--dw-success-light);
  border-color: var(--dw-success-light);
  color: var(--dw-white);
}

.dw-button--large {
  padding: var(--dw-spacing-sm) var(--dw-spacing-md);
  font-size: var(--dw-font-size-normal);
}

.dw-button--small {
  padding: 6px var(--dw-spacing-xs);
  font-size: 12px;
}

/* ==========================================================================
   Badges and Status Indicators
   ========================================================================== */

.dw-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px var(--dw-spacing-xs);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  white-space: nowrap;
}

.dw-badge--primary {
  background: var(--dw-primary-color);
  color: var(--dw-white);
}

.dw-badge--success {
  background: var(--dw-success-color);
  color: var(--dw-white);
}

.dw-badge--warning {
  background: var(--dw-warning-color);
  color: var(--dw-white);
}

.dw-badge--error {
  background: var(--dw-error-color);
  color: var(--dw-white);
}

.dw-badge--neutral {
  background: var(--dw-gray);
  color: var(--dw-darker-gray);
}

/* Sport-specific badges */
.dw-badge--football {
  background: var(--dw-football-color);
  color: var(--dw-white);
}

.dw-badge--handball {
  background: var(--dw-handball-color);
  color: var(--dw-white);
}

.dw-badge--basketball {
  background: var(--dw-basketball-color);
  color: var(--dw-white);
}

.dw-badge--volleyball {
  background: var(--dw-volleyball-color);
  color: var(--dw-white);
}

.dw-badge--innebandy {
  background: var(--dw-innebandy-color);
  color: var(--dw-white);
}

/* ==========================================================================
   Grid and Layout Utilities
   ========================================================================== */

.dw-grid {
  display: grid;
  gap: var(--dw-spacing-md);
}

.dw-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.dw-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.dw-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.dw-flex {
  display: flex;
  gap: var(--dw-spacing-sm);
}

.dw-flex--center {
  align-items: center;
  justify-content: center;
}

.dw-flex--between {
  align-items: center;
  justify-content: space-between;
}

.dw-flex--wrap {
  flex-wrap: wrap;
}

.dw-flex--column {
  flex-direction: column;
}

/* ==========================================================================
   Match Info Component
   ========================================================================== */

.dw-match-info {
  font-family: var(--dw-font-family);
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.dw-match-info__header {
  background: linear-gradient(
    135deg,
    var(--dw-primary-color) 0%,
    var(--dw-primary-dark) 100%
  );
  color: var(--dw-white);
  padding: var(--dw-spacing-xl) var(--dw-spacing-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dw-match-info__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.dw-match-info__header-content {
  position: relative;
  z-index: 1;
}

.dw-match-info__title {
  font-size: var(--dw-font-size-xxl);
  font-weight: 700;
  margin: 0 0 var(--dw-spacing-md) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dw-match-info__badges {
  display: flex;
  justify-content: center;
  gap: var(--dw-spacing-sm);
  flex-wrap: wrap;
}

/* Content */
.dw-match-info__content {
  padding: var(--dw-spacing-xl) var(--dw-spacing-lg);
}

.dw-match-info__grid {
  display: grid;
  gap: var(--dw-spacing-xl);
}

/* Section */
.dw-match-info__section {
  background: var(--dw-light-gray);
  border-radius: var(--dw-border-radius-large);
  padding: var(--dw-spacing-lg);
  border: var(--dw-border-width) solid var(--dw-border-color);
}

.dw-match-info__section-title {
  display: flex;
  align-items: center;
  gap: var(--dw-spacing-xs);
  font-size: var(--dw-font-size-large);
  font-weight: 600;
  color: var(--dw-primary-color);
  margin: 0 0 var(--dw-spacing-md) 0;
}

.dw-match-info__section-icon {
  font-size: var(--dw-font-size-xl);
}

/* Teams Display */
.dw-match-info__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--dw-spacing-md);
  align-items: center;
  margin-bottom: var(--dw-spacing-md);
}

.dw-match-info__team {
  background: var(--dw-white);
  border-radius: var(--dw-border-radius-large);
  padding: var(--dw-spacing-md);
  text-align: center;
  border: 2px solid var(--dw-border-color);
  transition: var(--dw-transition);
}

.dw-match-info__team--frogner {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: var(--dw-primary-color);
  transform: scale(1.02);
}

.dw-match-info__team-name {
  font-size: var(--dw-font-size-large);
  font-weight: 700;
  color: var(--dw-black);
  margin-bottom: var(--dw-spacing-xs);
}

.dw-match-info__team-label {
  font-size: var(--dw-font-size-small);
  color: var(--dw-dark-gray);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.dw-match-info__team-score {
  font-size: 36px;
  font-weight: 800;
  color: var(--dw-primary-color);
  margin-top: var(--dw-spacing-sm);
}

.dw-match-info__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--dw-primary-color),
    var(--dw-primary-dark)
  );
  color: var(--dw-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--dw-font-size-normal);
  box-shadow: var(--dw-shadow-lg);
}

.dw-match-info__final-score {
  text-align: center;
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border: 2px solid var(--dw-success-color);
  border-radius: var(--dw-border-radius-large);
  padding: var(--dw-spacing-md);
}

.dw-match-info__final-score-label {
  font-size: var(--dw-font-size-small);
  color: var(--dw-success-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--dw-spacing-xs);
}

.dw-match-info__final-score-value {
  font-size: var(--dw-font-size-xxl);
  font-weight: 800;
  color: #1b5e20;
}

/* Details Grid */
.dw-match-info__details {
  display: grid;
  gap: var(--dw-spacing-md);
}

.dw-match-info__detail {
  background: var(--dw-white);
  border-radius: var(--dw-border-radius);
  padding: var(--dw-spacing-md);
  border-left: 4px solid var(--dw-primary-color);
  box-shadow: var(--dw-shadow-sm);
}

.dw-match-info__detail-label {
  font-size: var(--dw-font-size-small);
  color: var(--dw-dark-gray);
  font-weight: 600;
  margin-bottom: var(--dw-spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dw-match-info__detail-value {
  font-size: var(--dw-font-size-normal);
  color: var(--dw-black);
  font-weight: 500;
  line-height: 1.4;
}

/* Venue Section */
.dw-match-info__venue-info {
  background: var(--dw-white);
  border-radius: var(--dw-border-radius-large);
  padding: var(--dw-spacing-md);
  border: var(--dw-border-width) solid var(--dw-border-color);
  text-align: center;
  margin-bottom: var(--dw-spacing-md);
}

.dw-match-info__venue-name {
  font-size: var(--dw-font-size-xl);
  font-weight: 700;
  color: var(--dw-primary-color);
  margin-bottom: var(--dw-spacing-xs);
}

.dw-match-info__venue-address {
  font-size: var(--dw-font-size-normal);
  color: var(--dw-dark-gray);
  margin-bottom: var(--dw-spacing-md);
  line-height: 1.5;
}

.dw-match-info__venue-actions {
  display: flex;
  justify-content: center;
  gap: var(--dw-spacing-sm);
  flex-wrap: wrap;
}

.dw-match-info__map {
  background: var(--dw-white);
  border-radius: var(--dw-border-radius-large);
  overflow: hidden;
  border: var(--dw-border-width) solid var(--dw-border-color);
  box-shadow: var(--dw-shadow-sm);
}

.dw-match-info__map-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.dw-match-info__map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--dw-border-radius-large);
}

.dw-match-info__map-fallback {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dw-light-gray);
  border-radius: var(--dw-border-radius-large);
  text-align: center;
  color: var(--dw-dark-gray);
}

.dw-match-info__map-placeholder-icon {
  font-size: 48px;
  margin-bottom: var(--dw-spacing-sm);
  opacity: 0.7;
}

.dw-match-info__map-placeholder-title {
  font-size: var(--dw-font-size-large);
  font-weight: 600;
  margin-bottom: 5px;
}

.dw-match-info__map-placeholder-subtitle {
  font-size: var(--dw-font-size-small);
  opacity: 0.8;
}

/* Description */
.dw-match-info__description {
  background: var(--dw-white);
  border-radius: var(--dw-border-radius);
  padding: var(--dw-spacing-md);
  border-left: 4px solid var(--dw-primary-color);
  line-height: 1.6;
  color: var(--dw-darker-gray);
}

.dw-match-info__description p {
  margin-bottom: var(--dw-spacing-sm);
}

.dw-match-info__description p:last-child {
  margin-bottom: 0;
}

/* Error States */
.dw-match-info__error {
  background: #ffebee;
  color: var(--dw-error-color);
  padding: var(--dw-spacing-md);
  border-radius: var(--dw-border-radius);
  border-left: 4px solid var(--dw-error-color);
  margin: var(--dw-spacing-md) 0;
  font-weight: 500;
}

/* ==========================================================================
   Responsive Design (Mobile-First)
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
  .dw-match-info__header {
    padding: var(--dw-spacing-lg) var(--dw-spacing-md);
  }

  .dw-match-info__title {
    font-size: var(--dw-font-size-xl);
  }

  .dw-match-info__content {
    padding: var(--dw-spacing-lg) var(--dw-spacing-md);
  }

  .dw-match-info__section {
    padding: var(--dw-spacing-md);
  }

  .dw-match-info__teams {
    grid-template-columns: 1fr;
    gap: var(--dw-spacing-sm);
  }

  .dw-match-info__vs {
    width: 50px;
    height: 50px;
    justify-self: center;
  }

  .dw-match-info__team {
    padding: var(--dw-spacing-md);
  }

  .dw-match-info__team-name {
    font-size: var(--dw-font-size-large);
  }

  .dw-match-info__team-score {
    font-size: 28px;
  }

  .dw-match-info__badges {
    flex-direction: column;
    align-items: center;
  }

  .dw-match-info__details {
    gap: var(--dw-spacing-sm);
  }

  .dw-match-info__detail {
    padding: var(--dw-spacing-sm);
  }

  .dw-match-info__venue-actions {
    flex-direction: column;
    align-items: center;
  }

  .dw-button {
    width: 200px;
    justify-content: center;
  }

  .dw-match-info__map-container {
    height: 250px;
  }

  .dw-grid--2,
  .dw-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --dw-spacing-sm: 12px;
    --dw-spacing-md: 20px;
    --dw-spacing-lg: 28px;
    --dw-spacing-xl: 40px;
  }

  .dw-match-info__header {
    padding: var(--dw-spacing-md) var(--dw-spacing-sm);
  }

  .dw-match-info__title {
    font-size: var(--dw-font-size-large);
  }

  .dw-match-info__content {
    padding: var(--dw-spacing-md) var(--dw-spacing-sm);
  }

  .dw-match-info__section-title {
    font-size: var(--dw-font-size-large);
  }

  .dw-match-info__team-name {
    font-size: var(--dw-font-size-normal);
  }

  .dw-match-info__team-score {
    font-size: 24px;
  }

  .dw-match-info__final-score-value {
    font-size: 28px;
  }

  .dw-container {
    padding: 0 var(--dw-spacing-xs);
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .dw-match-info__venue-actions,
  .dw-match-info__map {
    display: none;
  }

  .dw-match-info__header {
    background: var(--dw-white) !important;
    color: var(--dw-black) !important;
  }

  .dw-match-info {
    box-shadow: none;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.dw-button:focus,
.dw-match-info__venue-actions a:focus {
  outline: 2px solid var(--dw-primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --dw-border-width: 2px;
  }

  .dw-card {
    border-width: 2px;
  }
}

/* ==========================================================================
   Event Icons (FontAwesome)
   ========================================================================== */

.dw-event-icon {
  display: inline-block !important;
  margin-right: 6px;
  width: 16px;
  text-align: center;
}

.dw-event-icon i {
  font-size: 14px !important;
  display: inline-block !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  line-height: 1 !important;
}

/* Icon colors */
.dw-icon-training {
  color: #6c757d !important; /* Gray for training */
}

.dw-icon-home-match {
  color: #28a745 !important; /* Green for home matches */
}

.dw-icon-away-match {
  color: #dc3545 !important; /* Red for away matches */
}

.dw-icon-event {
  color: #007cba !important; /* Blue for other events */
}

/* Calendar specific icon sizing */
.dw-calendar-day .dw-event-icon i {
  font-size: 12px !important;
}

.dw-event-summary .dw-event-icon {
  margin-right: 8px;
  width: 20px;
}

.dw-event-summary .dw-event-icon i {
  font-size: 16px !important;
}

/* List view icon enhancements */
.dw-event-list .dw-event-icon {
  margin-right: 8px;
  min-width: 18px;
  display: inline-block;
}

.dw-event-list .dw-event-icon i {
  font-size: 16px !important;
}

/* Day view icon enhancements */
.dw-event-day .dw-event-icon {
  margin-right: 6px;
  min-width: 16px;
  display: inline-block;
}

.dw-event-day .dw-event-icon i {
  font-size: 15px !important;
}

/* Hover effects for better UX */
.dw-event-item:hover .dw-event-icon i,
.dw-event-summary:hover .dw-event-icon i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* TEST */
.fil_box_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.fil_box_row .fil_box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.fil-box-header {
  background: var(--e-global-color-secondary);
  color: #fff;
  padding: 10px;
}

.fil_page_x_header {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 5px var(--e-global-color-secondary) solid;
}
.fil_page_x_header * {
  padding: 0px;
  margin: 0px;
}
.fil_page_x_header .fil_parent_icon_circle {
  margin-left: 30px;
  --size: 70px;
  width: var(--size);
  height: var(--size);
  max-height: var(--size);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fil_page_x_header .fil_parent_icon_circle .icon_content {
  --size: 60px;
  width: var(--size);
  height: var(--size);
  max-height: var(--size);
  background-image: url("/wp-content/uploads/2025/09/Fotball.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.fil_page_x_header .fil_parent_icon_circle.fil_innebandy .icon_content {
  background-image: url("/wp-content/uploads/2025/09/Innebandy.jpg");
}
.fil_page_x_header .dw-match-sport {
  text-transform: capitalize;
}
.fil_page_x_header .fil_page_title {
  display: flex;
  align-items: flex-end;
}

.fil-box-card {
  padding: 15px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-row-gap: 20px;
}
.fil-box-card.fil-widetitle {
  grid-template-columns: 150px 1fr;
}
.fil-box-card .fil_teams {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
}
.fil-box-card .fil-match-time-place {
  display: grid;
  grid-template-columns: 100px 1fr;
}

.fil-padbox {
  padding: 15px;
}
.fil_box_row_old {
  --display: flex;
  --flex-direction: column;
  --container-widget-width: 100%;
  --container-widget-height: initial;
  --container-widget-flex-grow: 0;
  --container-widget-align-self: initial;
  --flex-wrap-mobile: wrap;
  --gap: 10px 10px;
  --row-gap: 10px;
  --column-gap: 10px;
  --border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
  --padding-top: 20px;
  --padding-bottom: 55px;
  --padding-left: 20px;
  --padding-right: 20px;
}
.fil_box_row .fil_box:hover {
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.2);
}
.fil_box_row .fil_box {
  width: 100%;
  max-width: 100%;
}
.fil_box_row .fil_box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
  transition-duration: 0.3s;
}
.fil_box_row .fil_box:hover img {
  filter: brightness(105%) contrast(100%) saturate(105%) blur(0px)
    hue-rotate(0deg);
}
.fil_box_row .fil_box {
  --display: flex;
  --flex-direction: row;
  --container-widget-width: calc(
    (1 - var(--container-widget-flex-grow)) * 100%
  );
  --container-widget-height: 100%;
  --container-widget-flex-grow: 1;
  --container-widget-align-self: stretch;
  --flex-wrap-mobile: wrap;
  --align-items: center;
  --gap: 14px 14px;
  --row-gap: 14px;
  --column-gap: 14px;
  --margin-top: 15px;
  --margin-bottom: 15px;
  --margin-left: 0px;
  --margin-right: 0px;
  --padding-top: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --padding-right: 0px;
}
.fil_box_row .fil_box .fil-box-title {
  font-family: "DM Sans", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  word-spacing: 0em;
  color: #181818;
}
.fil_box_row .fil_box {
  font-family: "Inter", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 1.5em;
  letter-spacing: -0.01em;
  word-spacing: 0em;
  color: #181818;
}
@media (max-width: 1024px) {
  .fil_box_row .fil_box img {
    height: 200px;
  }
  .fil_box_row .fil_box {
    --justify-content: space-between;
  }
  .fil_box_row .fil_box {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .fil_box_row .fil_box img {
    height: 168px;
  }
  .fil_box_row .fil_box {
    --justify-content: flex-start;
  }
  .fil_box_row .fil_box {
    text-align: left;
  }
  .fil_box_row .fil_box .elementor-heading-title {
    font-size: 27px;
  }
  .fil_box_row .fil_box {
    text-align: left;
    font-size: 13px;
  }
}
