/**
 * Events List Widget - Standalone Entry Point
 * Variables come from base.css (enqueued as dependency)
 */

/* Custom Media (resolved at build time, no output) */

/**
 * SETTINGS: Custom Media Queries
 * Breakpoint definitions for postcss-custom-media
 * These are resolved at build time and produce no output
 */

/* Tools */

/**
 * TOOLS: Mixins
 * Globally used mixins and functions
 */

/* ==========================================================================
   Layout Mixins
   ========================================================================== */

/* ==========================================================================
   Typography Mixins
   ========================================================================== */

/* ==========================================================================
   Button Mixins
   ========================================================================== */

/* ==========================================================================
   Form Mixins
   ========================================================================== */

/* ==========================================================================
   Card Mixins
   ========================================================================== */

/* ==========================================================================
   Visibility Mixins
   ========================================================================== */

/* ==========================================================================
   Responsive Mixins
   ========================================================================== */

/* Components */

/**
 * COMPONENTS: Form
 * Shared registration form styles used across single event page and widget
 */

/* Register Button */

.est-event__register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--est-spacing-md) var(--est-spacing-xl);
    font-family: var(--est-font-family);
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: var(--est-radius-sm);
    cursor: pointer;
    transition: all var(--est-transition-base);
  }

.est-event__register-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

.est-event__register-btn {
    background: transparent;
    color: var(--est-color-primary);
    border: 2px solid var(--est-color-primary);
}

.est-event__register-btn:hover:not(:disabled) {
    background: var(--est-color-primary);
    color: var(--est-color-bg);
  }

/* Form Section */

.est-event__form-section {
    margin-top: var(--est-spacing-lg);
    text-align: center;
  }

.est-event__form-title {
    font-family: var(--est-font-family);
    font-weight: var(--est-font-weight-normal);
    line-height: var(--est-line-height-tight);
    color: var(--est-color-primary);
    font-size: var(--est-font-size-2xl) !important;
    color:var(--est-color-primary) !important;
    margin: 0 0 var(--est-spacing-sm) 0;
  }

@media (max-width: 767px){

.est-event__form-title {
      font-size: var(--est-font-size-xl) !important
  }
    }

.est-event__form-subtitle {
    font-size: var(--est-font-size-lg);
    color: var(--est-color-text-light);
    line-height: var(--est-line-height-loose);
    margin: 0 0 var(--est-spacing-xl) 0;
  }

@media (max-width: 767px){

.est-event__form-subtitle {
      font-size: var(--est-font-size-sm)
  }
    }

.est-event__form-remaining {
    font-size: var(--est-font-size-sm);
    color: var(--est-color-text-muted);
    margin-bottom: var(--est-spacing-md);
  }

.est-event__form-full {
    font-size: var(--est-font-size-sm);
    margin: var(--est-spacing-md) 0;
    background-color: #f3e6b2;
    padding: 5px;
    border-radius: 10px;
    color: #d8b10c;
  }

/* Form */

.est-event__form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

.est-event__form-field {
    margin-bottom: var(--est-spacing-md);
  }

.est-event__form-field label {
      display: block;
      font-size: var(--est-font-size-sm);
      font-weight: var(--est-font-weight-medium);
      color: var(--est-color-text);
      margin-bottom: var(--est-spacing-xs);
    }

.est-event__form-field input[type="text"],
    .est-event__form-field input[type="email"],
    .est-event__form-field textarea {
      width: 100%;
      padding: var(--est-spacing-sm) 0;
      font-family: var(--est-font-family);
      font-size: var(--est-font-size-sm);
      background: transparent;
      border: none;
      border-bottom: 2px solid var(--est-color-border);
      outline: none;
      transition: border-color var(--est-transition-base);
    }

.est-event__form-field input[type="text"]:focus, .est-event__form-field input[type="email"]:focus, .est-event__form-field textarea:focus {
    border-bottom-color: var(--est-color-primary);
  }

.est-event__form-field input[type="text"]::-moz-placeholder, .est-event__form-field input[type="email"]::-moz-placeholder, .est-event__form-field textarea::-moz-placeholder {
    color: var(--est-color-text-muted);
  }

.est-event__form-field input[type="text"]::placeholder, .est-event__form-field input[type="email"]::placeholder, .est-event__form-field textarea::placeholder {
    color: var(--est-color-text-muted);
  }

.est-event__form-field select {
      width: 100%;
      padding: var(--est-spacing-sm) 0;
      font-family: var(--est-font-family);
      font-size: var(--est-font-size-sm);
      background: transparent;
      border: none;
      border-bottom: 2px solid var(--est-color-border);
      outline: none;
      transition: border-color var(--est-transition-base);
    }

.est-event__form-field select:focus {
    border-bottom-color: var(--est-color-primary);
  }

.est-event__form-field select::-moz-placeholder {
    color: var(--est-color-text-muted);
  }

.est-event__form-field select::placeholder {
    color: var(--est-color-text-muted);
  }

.est-event__form-field select {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0 center;
      padding-right: var(--est-spacing-lg);
      cursor: pointer;
}

.est-event__form-field textarea {
      resize: vertical;
      min-height: 80px;
      border: 1px solid color-mix(in srgb, var(--est-color-border) 50%, transparent);
      border-bottom: 2px solid var(--est-color-border);
      padding: var(--est-spacing-sm);
    }

.est-event__form-field textarea:focus {
        border-color: var(--est-color-primary);
      }

.est-event__form-submit {
    text-align: center;
    margin-top: var(--est-spacing-xl);
  }

.est-event__form-required-text{
    color: var(--est-color-text-light);
    font-size:12px;
    display:block;
    text-align:center;
    margin-top:1rem;
  }

.est-event__form-message {
    margin-top: var(--est-spacing-md);
    padding: var(--est-spacing-sm) var(--est-spacing-md);
    border-radius: var(--est-radius-sm);
    font-size: var(--est-font-size-sm);
    text-align: center;
  }

.est-event__form-message--success {
      background: color-mix(in srgb, var(--est-color-success) 10%, transparent);
      color: var(--est-color-success);
    }

.est-event__form-message--error {
      background: color-mix(in srgb, var(--est-color-error) 10%, transparent);
      color: var(--est-color-error);
    }

/**
 * COMPONENTS: Events List Widget
 * Events listing widget for Elementor
 */

.est-events-list {
  font-family: var(--est-font-family);
  background: var(--est-color-bg-alt);
  padding:  var(--est-spacing-2xl) var(--est-spacing-max);
  margin: 0;
}

/* Header */

.est-events-list__header {
    margin-bottom: var(--est-spacing-xl);
  }

.est-events-list h2.est-events-list__title {
    font-family: var(--est-font-family);
    font-weight: var(--est-font-weight-normal);
    line-height: var(--est-line-height-tight);
    color: var(--est-color-primary);
    font-size: var(--est-font-size-2xl);
    margin: 0 0 var(--est-spacing-sm) 0;
    color: var(--est-color-text);
  }

.est-events-list__subtitle {
    font-size: var(--est-font-size-base);
    color: var(--est-color-text-light);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

/* Back Button */

.est-events-list a.est-events-list__back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--est-color-primary);
    cursor: pointer;
    margin-bottom: var(--est-spacing-md);
    padding: 0;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 1rem;
    font-weight: var(--est-font-weight-light)!important;
  }

.est-events-list a.est-events-list__back-btn:hover {
      color:  var(--est-color-primary);
      font-weight: var(--est-font-weight-semibold)!important;
    }

/* Filters */

.est-events-list__filters {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--est-spacing-md);
    margin-bottom: var(--est-spacing-xl);
    border-radius: var(--est-radius-md);
  }

.est-events-list__filters-left{
    display: flex;
    flex-direction: column;
    gap: var(--est-spacing-lg);
    width:992px;
  }

.est-events-list__filters-selects {
    display: flex;
    flex-wrap: wrap;
    gap: var(--est-spacing-md);
    justify-content: left;
    width: 100%;
  }

.est-events-list__filters-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--est-spacing-lg);
    justify-content: left;
    width: 100%;
  }

.est-events-list__filter {
    display: flex;
    align-items: center;
    gap: var(--est-spacing-sm);
  }

.est-events-list__filter--dropdown {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      flex: 1;
      min-width: 200px;
    }

.est-events-list__filter-label {
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-bold);
    color: var(--est-color-text);
    margin-bottom: var(--est-spacing-xs);
    height:32px;
  }

.est-events-list__filter-input-wrap {
    position: relative;
    width: 100%;
    background: var(--est-color-bg);
    border: 1px solid var(--est-color-border);
    padding: var(--est-spacing-sm) var(--est-spacing-md);
    box-sizing: border-box;
    transition: border-color var(--est-transition-fast);
  }

.est-events-list__filter-input-wrap.is-open {
      border-color: var(--est-color-primary);
    }

.est-events-list__filter-input-wrap.is-open .est-events-list__filter-chevron {
        transform: translateY(-50%) rotate(180deg);
        color: var(--est-color-primary);
      }

.est-events-list__filter-input-wrap.is-open .est-events-list__dropdown-value {
        color: var(--est-color-primary);
      }

.est-events-list__filter-input-wrap.is-open .est-events-list__dropdown-menu {
        display: block;
      }

.est-events-list__filter-input-wrap.has-value .est-events-list__dropdown-value {
        color: var(--est-color-primary);
      }

.est-events-list__dropdown-toggle {
    width: 100%;
    padding: 0;
    padding-right: var(--est-spacing-xl);
    border: none;
    font-size: var(--est-font-size-sm);
    font-family: var(--est-font-family);
    background: transparent;
    cursor: pointer;
    color: var(--est-color-text);
    text-align: left;
    display: flex;
    align-items: center;
  }

.est-events-list__dropdown-toggle:focus {
      outline: none;
    }

.est-events-list__dropdown-value {
    flex: 1;
    color: var(--est-color-text-muted);
    font-size: var(--est-font-size-sm);
  }

.est-events-list__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background: var(--est-color-bg);
    border: 1px solid var(--est-color-primary);
    border-top: none;
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
  }

.est-events-list__dropdown-option {
    padding: var(--est-spacing-sm) var(--est-spacing-md);
    font-size: var(--est-font-size-sm);
    cursor: pointer;
    color: var(--est-color-text);
    transition: background-color var(--est-transition-fast), color var(--est-transition-fast);
  }

.est-events-list__dropdown-option:hover {
      background: var(--est-color-bg-alt);
    }

.est-events-list__dropdown-option.is-selected {
      color: var(--est-color-primary);
      font-weight: var(--est-font-weight-medium);
    }

.est-events-list__filter-chevron {
    position: absolute;
    right: var(--est-spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--est-color-text-muted);
    pointer-events: none;
    transition: transform var(--est-transition-fast), color var(--est-transition-fast);
  }

.est-events-list label.est-events-list__filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--est-spacing-sm);
    font-size: var(--est-font-size-sm);
    cursor: pointer;
  }

.est-events-list label.est-events-list__filter-checkbox input {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      min-width: 18px;
      flex-shrink: 0;
      border: 1.5px solid var(--est-color-primary);
      border-radius: 2px;
      background: transparent;
      cursor: pointer;
      position: relative;
      margin: 0;
      transition: border-color var(--est-transition-fast), background-color var(--est-transition-fast);
    }

.est-events-list label.est-events-list__filter-checkbox input:checked {
        border-color: var(--est-color-primary);
        background: var(--est-color-primary);
      }

.est-events-list label.est-events-list__filter-checkbox input:checked::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 5px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: translate(-50%,-50%) rotate(45deg);
      }

.est-events-list label.est-events-list__filter-checkbox span {
      color: var(--est-color-text);
    }

.est-events-list label.est-events-list__filter-checkbox img {
      width: auto;
      vertical-align: middle;
    }

.est-events-list label.est-events-list__filter-checkbox--insignia img {
        height: 1.5rem;
      }

.est-events-list label.est-events-list__filter-checkbox--gold img {
        height: 2rem;
      }

.est-events-list__filter-btn {
    padding: var(--est-spacing-sm) var(--est-spacing-lg);
    background: transparent;
    color: var(--est-color-primary);
    border: 1px solid var(--est-color-primary);
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-medium);
    cursor: pointer;
    transition: background-color var(--est-transition-fast), transform var(--est-transition-fast);
    text-transform: uppercase;
    margin-top:36px;
    min-width: 124px;
  }

.est-events-list__filter-btn:hover {
      background: var(--est-color-primary-dark);
      color:white;
    }

.est-events-list__filter-btn:active {
      transform: scale(0.98);
    }

/* List */

.est-events-list__grid {
    display: flex;
    flex-direction: column;
    gap: var(--est-spacing-2xl);
  }

/* Card */

.est-events-list__card {
    background: var(--est-color-bg);
    border-radius: var(--est-radius-lg);
    box-shadow: var(--est-shadow-md);
    padding: var(--est-spacing-xl) var(--est-spacing-4xl);
    transition: box-shadow var(--est-transition-base);
  }

.est-events-list__card:hover {
    box-shadow: var(--est-shadow-lg);
  }

.est-events-list__card {
    display: grid;
    grid-template-areas: 'date badges .'
                         'date content register'
                         'form form form';
    grid-template-columns: auto 1fr auto;
    gap: var(--est-spacing-md);
    transition: opacity var(--est-transition-base), transform var(--est-transition-base);
}

.est-events-list__card--hidden {
      display: none;
    }

.est-events-list__card--past{
      opacity:0.5;
      pointer-events:none;
    }

.est-events-list__card-data {
    display: contents;
  }

/* Card Date */

.est-events-list__card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-width: 60px;
    padding: var(--est-spacing-sm);
    border-radius: var(--est-radius-sm);
    grid-area: date;
  }

.est-events-list__card-day {
    font-size: var(--est-font-size-4xl);
    font-weight: var(--est-font-weight-medium);
    color: var(--est-color-primary);
    line-height: 1;
  }

.est-events-list__card-month {
    font-size: var(--est-font-size-xs);
    font-weight: var(--est-font-weight-semibold);
    color: var(--est-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

/* Card Content */

.est-events-list__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--est-spacing-sm);
    grid-area: content;
  }

/* Badges */

.est-events-list__card-badges {
    display: flex;
    gap: var(--est-spacing-xs);
    flex-wrap: wrap;
    grid-area: badges;
  }

.est-events-list__badge {
    display: inline-flex;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: var(--est-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--est-radius-sm);
    justify-content: center;
    align-items: center;
  }

.est-events-list__badge--insignia> img.est-events-list__badge-img--insignia {
        height: 30px;
        width: auto;
      }

.est-events-list__badge--gold> img.est-events-list__badge-img--gold {
        height: 45px;
      }

.est-events-list__badge--mep {
      background: var(--est-color-bg-dark);
      color: var(--est-color-text);
    }

/* Card Title */

.est-events-list h3.est-events-list__card-title {
    margin: 0;
    margin-top: var(--est-spacing-sm);
    line-height: var(--est-line-height-tight);
  }

.est-events-list h3.est-events-list__card-title a {
      font-size: var(--est-font-size-2xl);
      color: var(--est-color-primary);
      text-decoration: none;
      transition: color var(--est-transition-fast);
      font-weight: var(--est-font-weight-medium)!important;
    }

.est-events-list h3.est-events-list__card-title a:hover {
        color: var(--est-color-primary-dark);
      }

/* Card Speakers */

.est-events-list__card-speakers {
    font-size: var(--est-font-size-m);
    color: var(--est-color-text);
    margin-top: var(--est-spacing-xs);
  }

/* Card Location */

.est-events-list__card-location {
    display: flex;
    align-items: center;
    gap: var(--est-spacing-xs);
    font-size: var(--est-font-size-m);
    color: var(--est-color-text-light);
    margin-top: var(--est-spacing-xs);
  }

.est-events-list__card-location svg {
      flex-shrink: 0;
      color: var(--est-color-primary);
    }

/* Card Excerpt */

.est-events-list__card-excerpt {
    font-size: var(--est-font-size-sm);
    color: var(--est-color-text-light);
    line-height: var(--est-line-height-base);
  }

/* Card Language */

.est-events-list__card-language {
    font-size: var(--est-font-size-xs);
    color: var(--est-color-text-muted);
  }

/* Card Link */

.est-events-list__card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--est-spacing-xs);
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-medium);
    color: var(--est-color-primary);
    text-decoration: none;
    margin-top: auto;
    padding-top: var(--est-spacing-sm);
    transition: gap var(--est-transition-fast);
  }

.est-events-list__card-link:hover {
      gap: var(--est-spacing-sm);
    }

.est-events-list__card-link svg {
      transition: transform var(--est-transition-fast);
    }

.est-events-list__card-link:hover svg {
      transform: translateX(4px);
    }

/* Card Register Link */

.est-events-list__card-register {
    align-self: center;
    margin-left: auto;
    align-self: flex-end;
    grid-area: register;
  }

.est-events-list__card-register-btn {
    background: none;
    border: none;
    color: var(--est-color-primary);
    font-family: var(--est-font-family);
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color var(--est-transition-fast);
    white-space: nowrap;
  }

.est-events-list__card-register-btn:hover {
      color: var(--est-color-primary-dark);
      font-weight: var(--est-font-weight-medium);
    }

.est-events-list__card-register-btn--full {
      color: var(--est-color-text-muted);
      cursor: default;
    }

.est-events-list__card-register-btn--full:hover {
        color: var(--est-color-text-muted);
      }

/* Card Form Panel */

.est-events-list__card-form {
    flex-basis: 100%;
    text-align: center;
    padding: var(--est-spacing-xl) var(--est-spacing-xl) var(--est-spacing-lg);
    position: relative;
    grid-area: form;
  }

.est-events-list hr.est-events-list__card-form-divider {
    border: none;
    border-top: 1px solid var(--est-color-border);
    margin: 0 0 var(--est-spacing-xl) 0;
  }

.est-events-list__card-form-close {
    position: absolute;
    top: var(--est-spacing-2xl);
    right: var(--est-spacing-sm);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--est-color-primary);
    cursor: pointer;
    line-height: 1;
  }

.est-events-list__card-form-close:hover {
      color: var(--est-color-text);
    }

.est-events-list__card-form-title {
    font-family: var(--est-font-family);
    font-weight: var(--est-font-weight-normal);
    line-height: var(--est-line-height-tight);
    color: var(--est-color-primary);
    font-size: var(--est-font-size-2xl) !important;
    color:var(--est-color-primary) !important;
    margin: 0 0 var(--est-spacing-sm) 0;
  }

@media (max-width: 767px){

.est-events-list__card-form-title {
      font-size: var(--est-font-size-xl) !important
  }
    }

.est-events-list__card-form-subtitle {
    font-size: var(--est-font-size-lg);
    color: var(--est-color-text-light);
    line-height: var(--est-line-height-loose);
    margin: 0 0 var(--est-spacing-xl) 0;
  }

@media (max-width: 767px){

.est-events-list__card-form-subtitle {
      font-size: var(--est-font-size-sm)
  }
    }

.est-events-list__card-form-fields {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

.est-events-list__card-form-full {
    font-size: var(--est-font-size-sm);
    color: var(--est-color-text-light);
    padding: var(--est-spacing-lg) 0;
  }

.est-events-list__card-form-close-link {
    display: inline-block;
    background: none;
    border: none;
    color: var(--est-color-primary);
    font-family: var(--est-font-family);
    font-size: var(--est-font-size-sm);
    font-weight: var(--est-font-weight-medium);
    cursor: pointer;
    margin-top: var(--est-spacing-md);
    text-transform: uppercase;
  }

.est-events-list__card-form-close-link:hover {
      text-decoration: underline;
    }

/* Empty State */

.est-events-list__empty {
    text-align: center;
    padding: var(--est-spacing-2xl);
    color: var(--est-color-text-light);
  }

/* Pagination */

.est-events-list__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--est-spacing-xs);
    padding-top: var(--est-spacing-2xl);
  }

.est-events-list__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 var(--est-spacing-xs);
    background: none;
    border: none;
    font-family: var(--est-font-family);
    font-size: var(--est-font-size-sm);
    color: var(--est-color-text);
    cursor: pointer;
    transition: color var(--est-transition-fast);
  }

.est-events-list__page:hover:not(.est-events-list__page--disabled):not(.est-events-list__page--active) {
      color: var(--est-color-primary-dark);
      text-decoration: underline;
    }

.est-events-list__page--active {
      font-weight: var(--est-font-weight-bold);
      color: var(--est-color-primary);
      cursor: default;
      text-decoration: underline;
    }

.est-events-list__page--disabled {
      color: var(--est-color-text-muted);
      cursor: default;
      opacity: 0.4;
    }

.est-events-list__page--prev,
    .est-events-list__page--next {
      color: var(--est-color-primary);
    }

.est-events-list__page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 32px;
    font-size: var(--est-font-size-sm);
    color: var(--est-color-text-muted);
    letter-spacing: 2px;
  }

/* Responsive */

@media (max-width: 767px) {
  .est-events-list {
    padding:  var(--est-spacing-md) var(--est-spacing-xl);
  }
    .est-events-list__filters {
      padding: var(--est-spacing-md) 0;
      flex-direction: column;
    }

    .est-events-list__filters-selects {
      flex-direction: column;
    }

    .est-events-list__filters-checkboxes {
      flex-direction: column;
      gap: var(--est-spacing-sm);
    }

    .est-events-list__filter {
      justify-content: flex-start;
      flex-wrap: wrap;
      width: 100%;
    }

    .est-events-list__filter--dropdown {
      width: 100%;
    }

    .est-events-list__filter-btn {
      width: 100%;
      margin-top:0;
    }

    .est-events-list__filters-left {
      width:100%;
    }

    .est-events-list__card {
      display: grid;
      grid-template-columns: 40% 1fr;
      grid-template-rows: 1fr auto;
      grid-template-areas:
        'data content'
        'data register'
        'form form';
      padding: var(--est-spacing-md) var(--est-spacing-lg);
    }

    .est-events-list__card-data {
      display: flex;
      flex-direction: column;
      grid-area: data;
    }

    .est-events-list__card-date {
        flex-direction: row;
        justify-content: start;
        align-items: end;
        padding: var(--est-spacing-sm);
        gap: var(--est-spacing-sm);
        min-width: auto;
    }

    .est-events-list__card-badges{
      flex-direction: column;
      align-items: flex-start;
    }

    .est-events-list__card-content {
      grid-area: content;
    }

    .est-events-list__card-register {
      grid-area: register;
      align-self: end;
      justify-self: end;
      margin-left: 0;
    }
          .est-events-list__badge--insignia> img.est-events-list__badge-img--insignia, .est-events-list__badge--gold> img.est-events-list__badge-img--insignia {
            height: 30px;
          }
          .est-events-list__badge--insignia> img.est-events-list__badge-img--gold, .est-events-list__badge--gold> img.est-events-list__badge-img--gold {
            height: 38px;
          }

    .est-events-list__card-form {
      grid-area: form;
      width: 100%;
    }

    .est-events-list h2.est-events-list__title {
      font-size: var(--est-font-size-lg);
      text-align: center;
    }

      /* Card Title */
    .est-events-list h3.est-events-list__card-title a {
        font-size: var(--est-font-size-xl);
    }

}

@media (min-width: 1200px) {
  .est-events-list {
    padding:  var(--est-spacing-2xl) calc((100% - 1200px) / 2);
  }
}
