.elementor-464 .elementor-element.elementor-element-efad9f4{--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;--padding-top:5%;--padding-bottom:5%;--padding-left:5%;--padding-right:5%;}/* Start custom CSS for shortcode, class: .elementor-element-55d9291 *//* =====================================================
   INTELLUS ALL STATES DIRECTORY DESIGN SYSTEM
===================================================== */

/* Wrapper Layout */
.int-course-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0px 0;
  position: relative;
}

/* =====================================================
   FILTER SIDEBAR
===================================================== */

.int-course-filters {
  width: 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.int-course-filters h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111827;
}

.int-course-filters input,
.int-course-filters select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
  background: #F9FAFB;
  transition: all 0.2s ease;
}

.int-course-filters input:focus,
.int-course-filters select:focus {
  outline: none;
  border-color: #1A73E8;
  background: #ffffff;
}

.int-course-filters button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.int-course-filters button[type="submit"] {
  background: #1A73E8;
  color: #fff;
  margin-bottom: 10px;
}

.int-course-filters button[type="submit"]:hover {
  background: #155ec8;
}

#int-state-reset {
  background: #F3F4F6;
  color: #374151;
}

#int-state-reset:hover {
  background: #E5E7EB;
}

/* =====================================================
   RESULTS AREA
===================================================== */

#int-course-results {
  flex: 1;
  min-height: 300px;
  position: relative;
}

/* =====================================================
   STATE GRID
===================================================== */

.intellus-state-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* =====================================================
   STATE CARD DESIGN
===================================================== */

.intellus-state-card{
    position:relative;
    background:#ffffff;
    border: 2px solid #E5E7EB;
    border-radius:18px;
    padding:40px 20px;
    text-decoration:none;
    color:#111;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.intellus-state-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.1);
     border: 2px solid #1A73E8;
}

/* ACTIVE STATE */
.intellus-state-card.active-state{
    background:#1A73E8;
    color:#fff;
}

.intellus-state-card.active-state .state-count{
    color:#fff;
}

/* =====================================================
   SVG BACKGROUND
===================================================== */

.intellus-state-card .state-svg-bg path{
    stroke-width: 3%;
}

.intellus-state-card:hover .state-svg-bg path {
    stroke: #000;
    stroke-width: 3%;
}

.intellus-state-card:hover .state-svg-bg svg {
    fill: #000000;
}

.state-svg-bg{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:end;
    opacity:0.2;
    pointer-events:none;
}

.state-svg-bg svg{
    width:auto;
    height:100%;
}

/* =====================================================
   CARD CONTENT
===================================================== */

.state-card-inner{
    position:relative;
    z-index:2;
}

.state-card-inner h4{
    margin:0;
    font-size:20px;
    font-weight:600;
}

.state-count{
    display:block;
    margin-top:10px;
    font-size:14px;
    color:#1A73E8;
    font-weight:500;
}

/* =====================================================
   PAGINATION
===================================================== */

.int-course-pagination {
  margin-top: 40px;
}

.int-course-pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.int-course-pagination a,
.int-course-pagination span {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  text-decoration: none;
  font-size: 14px;
  color: #111827;
}

.int-course-pagination a:hover {
  background: #F3F4F6;
}

.int-course-pagination .current {
  background: #1A73E8;
  color: #fff;
  border-color: #1A73E8;
}

/* =====================================================
   LOADER
===================================================== */

.int-course-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.int-course-loader::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid #E5E7EB;
  border-top: 3px solid #1A73E8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   MOBILE DRAWER SYSTEM
===================================================== */

.int-course-mobile-toggle {
  display: none;
  padding: 10px 18px;
  background: #1A73E8;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.int-course-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.int-course-overlay.active {
  opacity: 1;
  visibility: visible;
}

.int-course-close {
  display: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .int-course-wrapper {
    flex-direction: column;
  }

  .int-course-mobile-toggle {
    display: inline-block;
  }

  .int-course-filters {
    position: fixed;
    top: 80px;
    left: -100%;
    height: 100vh;
    width: 320px;
    background: #fff;
    z-index: 1001;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 0;
    padding: 70px 20px 20px;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  }

  .int-course-filters.open {
    left: 0;
  }

  .int-course-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F3F4F6;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

.int-no-results {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    font-size: 16px;
    color: #374151;
}/* End custom CSS */