/* ---------- Webinar Filters ---------- */
.webinar-filters {
  font-family: Inter, sans-serif;
  margin-bottom: 18px;
}

.webinar-filters .filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.filter-item.search {
  flex: 1 1 45%;
  position: relative;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .icon-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.webinar-filters .webinar-search-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background-color: #fff;
      height: auto;
}

.webinar-filters .webinar-search-input::placeholder {
  color: #9ca3af;
}

.filter-item.selects {
  display: flex;
  gap: 10px;
  flex: 1 1 55%;
  justify-content: flex-end;
}

.webinar-select {
  appearance: none;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  color: #111827;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%236b7280' stroke-width='1.6' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  cursor: pointer;
  min-width: 160px;
  height: auto;
}

.webinar-select:focus {
  outline: none;
  border-color: #23405c;
}

.filter-meta {
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
}




/* ---------- Webinar Card ---------- */
.webinar-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.webinar.card {
  display: flex;
  gap: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow .25s ease;
  font-family: 'Inter', sans-serif;
}

.webinar.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.webinar-left {
    flex: 0 0 22.04%;
    width: 22.04%;
    position: relative;
}



.webinar svg {
  fill:none;
}

.webinar-left iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
}

.video-thumb p {margin: 0;}

.video-thumb {
    text-align: right;
}

.webinar-left .duration {
  
  bottom: 0px;
  right: 10px;
  background: #374151;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.webinar-right {
    flex: 0 0 46.17%;
    width: 46.17%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}
.topic svg {
    width: 24px;
        color: #23405c;
}

.webinar-right.far {
    flex: 0 0 22.04%;
    width: 22.04%;
    position: relative;
    flex-direction: column;
}

.meta-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags .tag {
  background: #f3f4f6;
  color: #1f2937;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 14px;
}

.tags .featured {
  background: #23405c;
  color: #fff;
  font-weight: 600;
}

.organizer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 14px;
  color: #374151;
}

.organizer-info .organizer {
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.organizer-info .date,
.organizer-info .views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.webinar-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 8px 0;
}

.short-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
}

.what-learn h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.what-learn ul {
  padding-left: 0px;
  margin: 0;
}



.what-learn li {
    color: #374151;
    font-size: 14px;
    margin-bottom: 4px;
    display: flex;
    gap: 9px;
    align-items: center;
}

.watch-button {
  margin-top: 20px;
}

/* .btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #23405c;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    transition: background .2s ease;
}

.btn-watch:hover {
  background: #2b50b3;
} */


.btn-watch {
    justify-content: center;
    margin-top: auto;
    background: #23405c;
    color: #fff;
    padding: 7px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    gap: 6px;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        width: 100%;
}


.btn-watch:hover {
    background: #23405c;
    color:#fff;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Responsive */
@media(max-width:768px) {
  .webinar.card {
    flex-direction: column;
  }
  .webinar-left iframe {
    height: 200px;
  }
  .organizer-info {
    align-items: flex-start;
  }

  .webinar-left {
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
  }
  .webinar-right {
    flex: 0 0 100%;
    width: 100%;
  }
  .webinar-right.far {
    flex: 0 0 100%;
    width: 100%;
  }
  .webinar-left .duration {
    bottom: -5px;
    right: 0;
  }
}
