* {
    box-sizing: border-box;
  }
  
  .navbar.joe {
    /* position: fixed; */
    top: 0;
    left: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    padding: 0 20px;
    color: #222222;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    font-family: "Euclid Circular A", "Poppins";
    background: linear-gradient(to right, #ffffff, #14b4f1);
    color: white;
  }
  
  .logo,
  .links {
    display: flex;
    align-items: center;    
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo img {
    /* width: 40px; */
    height: 40px;
    border-radius: 6px;
  }
  
  .logo h2 {
    font-size: 20px;
    font-weight: 400;
  }
  
  .links {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 20px;
  }
  
  .navbar.joe a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s;
  }
  
  a.join-link {
    display: grid;
    place-items: center;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    color: #f9f9f9;
    background: #e5322d; /* #01a081; */
  }
  
  .search {
    flex: 1 1 auto;
    position: relative;
    margin-left: 10px;
  }
  
  .search input {
    background: #f2f2f2;
    border-radius: 6px;
    border: 0;
    width: 100%;
    height: 40px;
    padding-left: 34px;
    font-family: inherit;
    font-size: 16px;
  }
  
  .search input::placeholder {
    color: #9d9d9d;
  }
  
  .search img {
    position: absolute;
    top: 50%;
    left: 10px;
    translate: 0 -50%;
    width: 20px;
    height: 20px;
  }
  
  .burger {
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
  }
  
  @media (width >= 320px) {
    .burger {
      display: none;
    }
  }
  
  .dropdown {
    position: relative;
    cursor: pointer;
  }
  
  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 72px;
  }
  .dropdown > a > img {
    width: 20px;
  }
  
  .dropdown:hover .menu {
    opacity: 1;
    visibility: visible;
  }
  
  .menu {
    position: absolute;
    top: 60px;
    right: -20px;
    display: grid;
    width: 180px;
    padding: 8px 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 40px 40px rgb(0 0 0 / 6%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    color: #333;
  }
  
  .menu::before {
    content: "";
    background: inherit;
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    position: absolute;
    top: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    rotate: -45deg;
  }
  
  .menu.open {
    opacity: 1;
    visibility: visible;
  }
  
  .menu > a {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .menu > a:hover {
    background: #f5f5f5;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  @media (max-width: 767px) {
    .cards {
      grid-template-columns: 1fr;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1280px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1281px) and (max-width: 1366px) {
    .cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1367px) and (max-width: 1440px) {
    .cards {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .card-content {
    padding: 20px;
    display: grid;
    gap: 10px;
  }
  
  .card-image {
    width: auto;
    height: 320px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;  
    border-radius: 6px;
  }
  
  .card-image-content {
    width: auto;
    height: 320px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.5s ease;
  }
  
  .card-image-content:hover {
    transform: scale(1.1);
  }
  
  .card-title {
    font-size: 18px;
    font-weight: 600;
  }
  
  .card-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
  }
  
  .card-description {
    font-size: 14px;
    color: #888888;
  }
  
  .card-level {
    display: grid;
    grid-template-columns: repeat(10, 24px);
    gap: 0px;
    padding: 20px;
  }
  
  .level {
    width: 24px;
    height: 24px;
    border: 1px solid #f5f5f5;
  }
  
  .level.fill:nth-child(1),
  .level.fill:nth-child(2) {
    background-color: #e5322d;
  }
  
  .level.fill:nth-child(3),
  .level.fill:nth-child(4) {
    background-color: #ff9800;
  }
  
  .level.fill:nth-child(5),
  .level.fill:nth-child(6) {
    background-color: #4caf50;
  }
  
  .level.fill:nth-child(7),
  .level.fill:nth-child(8) {
    background-color: #2196f3;
  }
  
  .level.fill:nth-child(9),
  .level.fill:nth-child(10) {
    background-color: #9c27b0;
  }


  /* 20250107 */
  img.chevron {
    background-image: url('/images/menu/chevron.png');
    z-index: 9999;
    width: 20px;
    height: 20px;
    background-size: contain;
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    border: 0px;
  }

  img.burger {
    background-image: url('/images/menu/burger.png');
  }

  img.search {
    background-image: url('/images/menu/burger.png');       
  }

nav.navbar.joe {
    content:  none !important;
}

nav.navbar.joe::before, nav.navbar.joe::after {
    content:  none !important;
}

.dropdown a {
    text-decoration: none !important;
}
.dropdown a:visited {
    text-decoration: none !important;
    color: inherit;
}