* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #7a4e2f;
  --neutral: #e0e6ec;
  --secondary: #fff0e6;

  /* Text colors */
  --text-primary: #7a4e2f;
  --text-secondary: #ddd;
  --shadow-primary: 0 0px 0px 0 rgb(188 134 0 / 10%), 0 0 2px 0 rgb(188 149 0 / 10%), 0 2px 0px 0 rgb(188 95 0 / 20%);

  /* gradient colors */
  --gradient-primary: linear-gradient(90deg, var(--primary) 1.82%, var(--primary) 98.91%);
  --gradient-card: linear-gradient(-45deg, var(--neutral) 1%, var(--secondary) 99%);
}

/* Utility classes */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.bg-neutral {
  background-color: var(--neutral) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-neutral {
  color: var(--neutral) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.shadow-primary {
  box-shadow: var(--shadow-primary);
}

.form-wrap {
  border-radius: 1rem;
}


body {
  font-family: "Inter", sans-serif;
  background: #f7f7f7;
}

.wrapper {
  padding: 4rem 0;
}


.post {
  padding: 1rem;
}

/* ===== Footer v2 ===== */
.footer-v2 {
  position: relative;
  color: #3d2a1d;
  background-color: #f7f2ed;
  /* background-image: url('./img/footerbg.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-top: 4px solid #7a4e2f;
}

/* diagonal overlay for the hero look */
.footer-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(85% 120% at -10% -20%, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, rgba(255, 255, 255, .35) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.footer-v2 .wrapper {
  position: relative;
  z-index: 1;
}

.footer-v2 h4,
.footer-v2 h5 {
  color: #7a4e2f;
  font-weight: 700;
}

.footer-v2 a {
  color: #3d2a1d !important;
}

.footer-v2 a:hover {
  color: #7a4e2f !important;
  text-decoration: underline;
}

/* left signup panel */
.ft-hero {
  padding: 28px 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eadfd6;
  box-shadow: 0 10px 24px rgba(61, 42, 29, 0.08);
}

.ft-hero h3 {
  margin: 0 0 .5rem;
  font-weight: 700;
}

.ft-hero p {
  margin: 0 0 1.25rem;
  opacity: .95;
}

.ft-form .form-control {
  height: 46px;
  border: 1px solid #e3d7cc;
  background: #ffffff;
  color: #3d2a1d;
}

.ft-form .form-control::placeholder {
  color: #9a8b7e;
  font-size: 14px;
}

.footer-v2 .main-btn {
  background: #7a4e2f;
  color: #ffffff !important;
}

.footer-v2 .main-btn:hover {
  background: #5b3a23;
}

.footer-grid {
  row-gap: 18px;
}

.footer-section h4 {
  margin-bottom: 12px;
}



/* right side columns */
.ft-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.ft-links li {
  margin: 2px 0;
  font-size: 14px;
  flex-basis: 50%;
}

.ft-links i {
  color: #90a4ae !important;
}

/* keep your icon tone */
.ft-sep {
  border-top: 1px solid #51616a;
  margin: 1.25rem 0;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px 20px;
}

/* contact band */
.contact-band .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0e6dc;
  color: #7a4e2f;
  margin-right: .75rem;
}

label {
  padding: 0 !important;
}

.contact-band .label {
  color: #7a4e2f;
  font-size: .9rem;
  margin: 0;
}

.contact-band .value {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  text-wrap-mode: nowrap;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid #e3d7cc;
  margin-top: 24px;
  padding: 16px 0;
  text-align: center;
  color: #3d2a1d;
}

/* Navy footer style */
.footer-v2--navy {
  background-color: #7a4e2f;
  color: #ffffff;
  border-top: 0;
}

.footer-v2--navy::before {
  background: radial-gradient(85% 120% at -10% -20%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(0, 0, 0, 0) 55%);
}

.footer-v2--navy h4,
.footer-v2--navy h5 {
  color: #ffffff;
}

.footer-v2--navy a {
  color: #ffffff !important;
}

.footer-v2--navy a:hover {
  color: #ffe2c7 !important;
  text-decoration: underline;
}

.footer-v2--navy .footer-navy {
  row-gap: 24px;
}

.footer-v2--navy .footer-title {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-v2--navy .footer-col {
  padding-top: 8px;
}

.footer-v2--navy .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-v2--navy .footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-v2--navy .footer-list li:last-child {
  border-bottom: 0;
}

.footer-v2--navy .footer-list--links li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #ffe2c7;
  display: inline-block;
}

.footer-v2--navy .footer-list--links a {
  text-decoration: none;
}

.footer-v2--navy .footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffe2c7;
  flex-shrink: 0;
}

.footer-v2--navy .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-v2--navy .footer-contact__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-v2--navy .footer-contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe2c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-v2--navy .footer-contact__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-v2--navy .footer-contact__value {
  font-size: 14px;
  color: #ffffff;
}

.footer-follow {
  margin-top: 16px;
}

.footer-follow__title {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-follow__icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-follow__icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffe2c7;
  text-decoration: none;
}

.footer-follow__icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.footer-bottom.footer-bottom--navy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  padding: 16px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width:575.98px) {
  .footer-v2--navy .footer-col {
    padding-top: 0;
  }
}

/* responsive */
@media (min-width:992px) {
  .ft-hero {
    margin-right: 12px;
  }
}

@media (max-width:575.98px) {
  .ft-hero {
    padding: 24px 16px;
  }
}


/* navbar  */
.container-fluid {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    width: 100%;
  }


}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 24px;
}

.gap-ratio {
  gap: 20%;
}

.cont {
  width: 98%;
  margin: auto;
}

.brder {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  background: white;
  padding: 2%;
}

.navbar-collapse {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.dropdown .dropdown-menu {
  border-radius: 0;
}

.brand {
  font-family: "ArialRounddedMT";
  font-size: 36px;
  line-height: 36px;
  color: #0c489e;
}

.brand img {
  width: 80%;
  line-height: 30px;
  height: auto;
  margin: 2rem 0;
}

.brand .tag-line {
  line-height: 24px;
  font-size: 13px;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}


@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border-radius: 0;
  }


}


.navbar-light .navbar-nav .nav-link {
  color: var(--text-primary) !important;
  padding: 2px 14px;
  font-size: 16px !important;
  display: inline-block;
}

.border-left {
  border-left: 1px solid #ccc !important;
  height: 50px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--secondary) !important;

}


/* header refresh */
.header-topbar {
  background: #f7f9fb;
  border-bottom: 1px solid #e6e9ef;
  font-size: 13px;
}

.header-topbar .container-fluid {
  padding: 8px 0;
}

.topbar-link {
  color: #1f2a30;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-link i {
  color: var(--primary);
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ef;
  padding: 16px 0;
}

.header-main {
  gap: 16px;
  align-items: center !important;
}

.main-header .navbar-brand img {
  height: 34px;
  width: auto;
}

.main-header .navbar-collapse {
  gap: 18px;
  justify-content: space-between;
}

.main-header .navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--neutral);
  border-radius: 999px;
  padding: 4px;
}

.main-header .navbar-nav .nav-link {
  color: #1f2a30 !important;
  font-weight: 400;
  font-size: 14px !important;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-wrap-mode: nowrap;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link:focus {
  color: #0f141a !important;
  background: #ffffff;
}

.main-header .navbar-nav .nav-link.active,
.main-header .navbar-nav .active>.nav-link {
  font-weight: 600;
  background: #ffffff;
  color: #0f141a !important;
  box-shadow: inset 0 0 0 1px rgba(15, 20, 26, 0.08);
}

.main-header .navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 0.15em;
}

.main-header .dropdown-menu {
  border: 0;
  border-radius: 16px !important;
  padding: 12px;
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 24, 18, 0.16);
  min-width: 320px;
}

.main-header .dropdown-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 12px;
  width: 80px;
  height: calc(100% - 24px);
  border-radius: 12px;
  background: url("../img/webinar-illustration.jpg") center/cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.main-header .dropdown-item {
  width: fit-content !important;
  color: #1b2a24;
  border-radius: 10px;
  padding: 8px 12px;
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus {
  background: var(--secondary);
  color: #0f141a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  color: #223142;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
}

.header-link:hover {
  color: #0f141a;
  text-decoration: none;
  border-color: #cfd8e3;
}

.header-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #dfe5ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #223142;
  text-decoration: none;
  background: #ffffff;
}

.header-icon:hover {
  color: #0f141a;
  text-decoration: none;
}


.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 11px;
  line-height: 1;
}

.main-header--news {
  padding: 10px 0 ;
  border-bottom: 0;
  flex-direction: column;
   
}

.main-header--news .header-main {
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 10px;
}

.header-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.main-header--news .navbar-toggler {
  margin-left: 8px;
  font-size: 26px;
    border: none;
}

.header-pill {
  background: var(--neutral);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--neutral);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.header-pill:hover {
  text-decoration: none;
  color: var(--text-primary);
  background: #ffffff;
}

.nav-strip {
  background-image: linear-gradient(-180deg, #e6e5e4 0, #e6e5e4 52%, #d6d6d6 58%, #dddcdc 63%, #ddd 100%);
  border-top: 8px solid var(--primary);
  border-bottom: 1px solid var(--neutral);
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 6px rgba(15, 23, 42, 0.08);
  position: relative;
  width: 96%;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, .1));
}

.nav-strip::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -8px;
  width: 18px;
  height: 8px;
  background: var(--secondary);
}

.header-nav {
  padding-top: 6px;
  padding-bottom: 6px;
}

.main-header--news .navbar-collapse {
  gap: 16px;
  justify-content: space-between;
}

.main-header--news .navbar-nav {
  background: transparent;
  padding: 0;
  border-radius: 0;
  gap: 0;
}

.main-header--news .navbar-nav .nav-link {
  padding: 6px 14px;
  font-size: 14px !important;
  color: var(--text-primary) !important;
  border-radius: 0;
  position: relative;
}

.main-header--news .navbar-nav .nav-item + .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--neutral);
}

.main-header--news .navbar-nav .nav-link:hover,
.main-header--news .navbar-nav .nav-link:focus {
  background: transparent;
  color: var(--primary) !important;
}

.main-header--news .navbar-nav .nav-link.active,
.main-header--news .navbar-nav .active > .nav-link {
  font-weight: 600;
  color: var(--primary) !important;
  box-shadow: none;
}

.main-header--news .dropdown-menu::after {
  display: none;
}

.nav-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-search .searchbar {
  max-width: 240px;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-search .searchbar-input {
  height: 32px;
  padding: 0 40px 0 12px;
  border-radius: 999px;
  box-shadow: none;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid var(--neutral);
}

.nav-search .searchbar-btn {
  height: 26px;
  right: 6px;
  border-radius: 999px;
  padding: 0;
  width: 28px;
  min-width: 28px;
  align-items: center;
    justify-content: center;
  background: var(--primary);
}


@media (max-width: 991px) {
  .header-topbar .container-fluid {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0 4px;
    flex-wrap: wrap;
  }

  .main-header .navbar-nav {
    width: 100%;
    margin: 12px 0 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-header .navbar-nav .nav-link {
    padding: 10px 0;
    width: 100%;
    border-radius: 0;
  }

  .main-header .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    width: 100%;
    margin-top: 0;
  }

  .main-header .dropdown-menu::after {
    display: none;
  }
}

/* footer */

.footer h4 {
  margin-bottom: 30px;
}

.footer>div ul {
  margin: 0px;
  padding: 0px;
}

.footer>div ul li {
  list-style: none;
  margin: 0px;
  padding: 0px;
  line-height: 26px;
}

.footer a,
.footer i {
  color: #fff !important;
}

.footer {
  background-color: #17252a;
  background-repeat: no-repeat;
  line-height: 30px;
  align-items: stretch;
  color: #fff;
}

.footer .newsletter-widget {
  background-color: #11141a;
  padding: 20px 30px 30px;
  margin-bottom: 0px;
  line-height: 22px;
}

.widget-content div {
  margin-bottom: 15px;
  color: #d4dae3 !important;
}

.newsletter-widget input {
  height: 50px;
  color: #fff;
  width: 100%;
  padding: 0 18px;
  background-color: #292c31;
  margin-bottom: 20px;
  border: 0px;
}

.btn-style-one {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: #0a387a;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0px;
}




.webinar-card {
  padding: 1rem 0;
  background-color: #fff;
  display: block;
  position: relative;
  margin: 16px 0;
  box-shadow: 0px 1px 16px #d3d3d36b;
  width: 100%;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;

  .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    color: var(--primary);
  }

  .speaker-name {
    color: var(--secondary) !important;
    text-decoration: none;
    font-weight: 400;
  }
}

.webinar-layout-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.layout-btn {
  border: 1px solid #cfd7e3;
  background: #fff;
  color: #415164;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.webinar-layout {
  width: 100%;
  padding-bottom: 2rem;

}

.layered-bg {
  border-bottom: 1px solid #ddd;
  background: #fff;
  padding: 3rem 0;
}

.webinar-layout.is-list .live-webinar-grid,
.webinar-layout.is-list .recorded-webinar-grid {
  display: none;
}

.webinar-layout.is-grid .live-webinar-list,
.webinar-layout.is-grid .recorded-webinar-list {
  display: none;
}

.live-webinar-grid {
  margin-top: 10px;
}

.webinar-grid-item {
  padding: 0 12px 24px;
  display: flex;
}

.webinar-grid-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.webinar-grid-link:hover {
  text-decoration: none;
  color: inherit;
}

.webinar-grid-card {
  background-color: #ffffff;
  color: #1f2937;
  padding: 18px 18px 18px 20px;
  width: 100%;
  border-radius: 0 8px 8px 0;
  border: 1px solid #e6e7eb;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.webinar-grid-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), #c5a081);
}

.webinar-grid-card:hover {
  transform: translateY(-2px);
}

.webinar-grid-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-left: 12px;
}

.webinar-grid-date-badge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(109, 187, 89, 0.25);
}

.webinar-grid-date-badge--all {
  background: #e9eef5;
  color: #3b4555;
  box-shadow: none;
}

.webinar-grid-date-day {
  font-size: 28px;
}

.webinar-grid-date-month {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.webinar-grid-date-text {
  font-size: 12px;
  color: #5b6778;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.webinar-grid-days {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2937;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 999px;
}

.webinar-grid-content {
  min-width: 0;
}

.webinar-grid-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-primary);
}

.webinar-grid-type-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.webinar-grid-type {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.webinar-grid-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #374151;
}

.webinar-grid-presenter,
.webinar-grid-time,
.webinar-grid-length {
  margin: 0;
}

.webinar-grid-footer {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.webinar-grid-speaker {
  position: absolute;
  right: 16px;
    top: 44px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.webinar-grid-speaker img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, .2));
  background: #f8fafc;
}

@media (max-width: 575.98px) {
  .webinar-grid-item {
    padding: 0 0 16px;
  }

  

  .webinar-grid-left {
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .webinar-layout-toggle {
    width: 100%;
    justify-content: flex-start;
  }
}
.gap-4 {
  gap: 12px
}

.Instructor {
  padding: 4rem 0;
}

.date-picker {
  width: 100px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0px 0px 3px #ddd;
  margin: 0 auto;
  padding: 8px;
  font-weight: 600;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;



  .year,
  .month {
    color: #444;
    font-size: 14px;
  }

  .day {
    color: var(--text-primary);
    text-shadow: 1px 1px #ffffff;
    font-size: 50px;
    font-weight: 200;
  }
}


@media(max-width: 578px) {
  .date-picker {
    margin: 0;
    margin-bottom: 1rem;
  }
}

.date-picker p {
  margin: 0px;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.search-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid #e6ebf2;
  display: grid;
  place-items: center;
  color: #9aa3af;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.08);
}

.search-empty__icon i {
  font-size: 28px;
}

.search-empty__title {
  font-size: 22px;
  color: #475569;
  margin: 8px 0 0;
}

.search-empty__subtitle {
  color: #94a3b8;
  margin: 0 0 6px;
}

.search-empty__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-empty__tag {
  border: 1px solid #cfe1ff;
  color: #2563eb;
  background: #f5f9ff;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.search-empty__tag:hover {
  text-decoration: none;
  color: #1d4ed8;
  border-color: #b8d1ff;
}

.search-empty__cta {
  background: #2563eb;
  color: #fff;
  padding: 7px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.search-empty__cta:hover {
  text-decoration: none;
  color: #fff;
  background: #1d4ed8;
}

.Title-info ul {
  display: block;
}

.Title-info h6 {
  font-size: 16px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info h5 {
  font-size: 16px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info ul li {
  display: block;
  color: #333;
  line-height: 30px;
  font-weight: 500;
}

.webinar {
  /* padding: 20px 0px 0px 0px; */
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

  .resp {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



}

.speaker-card-col {
  margin-bottom: 24px;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 8px;
  background: var(--secondary);
  text-decoration: none;
  color: #0f141a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: #0f141a;
}

.speaker-card__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-bottom: 5rem;
}

.speaker-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  /* background: linear-gradient(180deg, rgb(255, 255, 255) 0%, #ffffff 65%); */
}


.speaker-card__name {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: #0f141a;
}

.speaker-card__cta {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #0f141a;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(15, 20, 26, 0.08);
}

@media (max-width: 575.98px) {
  .speaker-card {
    padding: 16px;
  }
}

.speaker-detail {
  padding: 24px;
}

.speaker-detail__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 16px;
  text-align: left;
}

.speaker-detail__avatar {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.speaker-detail__name {
  margin-left: 0;
  margin-bottom: 20px;
}

.speaker-detail__bio {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.speaker-detail__bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .speaker-detail {
    padding: 40px 0 56px;
  }

  .speaker-detail__card {
    padding: 24px 22px 30px;
  }

  .speaker-detail__avatar {
    width: 120px;
    height: 120px;
  }

  .speaker-detail__bio {
    text-align: left;
  }

  .speaker-detail__name {
    margin-left: 0;
  }
}




.item {
  padding: 20px 20px 12px;
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: block;
  position: relative;
  margin: 0px 10px px;
  width: 25rem;
}

.Title-info a h5 {
  font-size: 18px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info a h5:hover {
  font-size: 18px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
  text-decoration: none;
}



.webinar-search-form {
  background-color: #ffffff;
  display: none;
}

.webinar-search-form form {
  padding: 15px;
}

.Search-form {
  float: left;
  width: 20%;
  padding-right: 15px;
}

.Search-form span {
  float: left;
}

.Search-form input {
  width: 100%;
  margin-right: 10px;
}

.webinar-search-form .search_results {
  background: #eaebf8;
  width: 100%;
}

.webinar-search-form .search_results span {
  color: #266dd4;
}

.Search-form span {
  float: left;
}

.sela {
  width: 100%;
  height: 33px;
}

#filter-button {
  font-size: 16px;
  margin-left: 30px;
  cursor: pointer;
  padding: 1px 6px 2px;
  background: #7b3ae7;
  color: #fff;
}

.pagination-numbers {
  float: right;
  margin: 0px;
  padding: 0px;
}

.pagination-numbers li {
  float: left;
  list-style: none;
  padding: 0px 10px;
}

.my-navigation div {
  float: left;
}

.my-navigation div+div {
  margin-left: 0.5rem;
}

.pagination-numbers {
  float: right;
  margin: 0px;
  padding: 0px;
}

.pagination-numbers>.simple-pagination-navigation-disabled {
  background: #55c904;
  color: #fff;
}

.simple-pagination-page-numbers a {
  border: 1px solid var(--text-secondary);
  margin-right: -1px;
  display: block;
  float: left;
  width: 2rem;
  text-align: center;
}

.simple-pagination-page-numbers a {
  border: 1px solid var(--text-secondary);
  margin-right: -1px;
  display: block;
  float: left;
  width: 2rem;
  text-align: center;
}

.pagination-box {
  background-color: #ffffff;
  padding: 15px;
  margin: 20px 0;
  overflow: hidden;
}


.section-heading {
  padding: 0.5rem 3rem;
  background-color: var(--primary);
  margin-left: -2rem;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  color: #ffffff;
  position: relative;
  width: fit-content;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: color-mix(in srgb, var(--primary) 50%, transparent);
  left: 0;
  bottom: -1rem;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    0% 0%
  );
}

.section-heading--speaker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-right: 1.2rem;
}

.section-heading--speaker .section-heading__avatar {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, .2));
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
}

.section-heading--speaker .section-heading__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.fwid {
  width: 97%;
  margin: auto;
}

.confr {
  background: #e8e7ff;
  margin-left: -3%;
  margin-right: -3%;
  padding: 2%;
}

.about-section {
  background: #ffffff;
  padding: 16px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
}


.category-badge {
  background-color: var(--secondary);
  color: var(--text-primary);
  padding: 2px 16px;
  border-radius: 1rem;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 14px;
}

.event-title {
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
  width: 100%;
  margin-bottom: 2rem;
}


@media (min-width: 992px) {

  /* lg and up */
  .event-title {
    width: 60%;
  }
}


.meta-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.meta-table th {
  width: 120px;
  color: #1b2e25;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.meta-table td {
  color: #2f5140;
}

.trainer-pic {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.group-header {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

.option-row:last-child {
  border-bottom: none;
}

.option-row label {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: normal !important;
  padding: 2px 8px !important;
  font-size: 15px;
}

.opt-price {
  font-weight: 500;
  margin-left: 10px;
  margin-right: 14px;
  font-size: 14px;
  min-width: 70px;
  text-align: end;
  color: #2f5140;
}

.cta-wrap {
  padding: 14px;
  border-top: 1px solid #eef1f7;
}

.btn-cart {
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 700;
}

.btn-cart:hover {
  color: #fff;
  background: var(--secondary);
}

/* expert section */
.expert-wrap {
  border-top: 4px solid var(--secondary);
  margin-top: 24px;
  padding-top: 22px;
}

.expert-head {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 18px 0;
}

.expert-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

/* mobile spacing */
@media (max-width: 991.98px) {
  .order-card {
    margin-top: 16px;
  }
}



/* CSS */
.main-btn {
  align-items: center;
  background-color: var(--primary);
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.main-btn:hover,
.main-btn:focus {
  background-color: var(--secondary);
  color: var(--text-primary) !important;
  text-decoration: none;
}

.main-btn:active {
  background: var(--secondary);
  color: rgb(255, 255, 255, .7);
}

.main-btn:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}


@media (max-width: 991px) {
  .main-header--news .header-main {
    flex-direction: row;
    align-items: center !important;
  }

  .header-top-row {
    width: 100%;
  }

  .nav-strip {
    padding-bottom: 8px;
  }

  .nav-strip::before {
    left: 6px;
  }

  .main-header--news .navbar-nav .nav-item + .nav-item .nav-link::before {
    display: none;
  }

  .nav-search {
    width: 100%;
  }

  .nav-search .searchbar {
    max-width: 100%;
  }

  .nav-search .searchbar-input {
    height: 44px;
    padding-right: 18px;
    border-radius: 12px;
  }

  .nav-search .searchbar-btn {
    position: static;
    height: 36px;
    border-radius: 8px;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }
}

.conference-header__card {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.06);
  padding: 24px;
}

.conference-header__card--story {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
}

.story-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-action {
  max-width: 360px;
}

.story-action .action-card {
  margin-top: 6px;
}

.story-right {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  gap: 12px;
}


.conference-header .event-title {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  margin: 2px 0 8px;
  color: #1b2430;
  line-height: 1.2;
}

.story-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 700;
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}

.story-brand__name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e3b4e;
  font-weight: 600;
}

.story-speaker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 12px;
  border-left: 3px solid #7a4e2f;
  background: #f9f7f3;
}

.story-speaker__img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}

.story-speaker__name {
  font-weight: 600;
  color: #7a4e2f;
  font-size: 16px;
}

.story-speaker__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.story-speaker--hero {
  align-items: flex-start;
}

.story-speaker--hero .story-speaker__img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
}

.story-speaker--hero .story-speaker__name {
  font-size: 16px;
  padding-top: 0;
}

.story-coupon {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 88px;
  align-items: stretch;
  border: 1px solid #e6e1dc;
  background: #fbf7f2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(122, 78, 47, 0.08);
  position: relative;
  max-width: 400px;
}

.story-coupon::before,
.story-coupon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 1px solid #e6e1dc;
  border-radius: 50%;
  transform: translateY(-50%);
}

.story-coupon::before {
  left: 56px;
}

.story-coupon::after {
  right: 82px;
}

.story-coupon__ribbon {
  background: #7a4e2f;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story-coupon__body {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}

.story-coupon__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7a4e2f;
  font-weight: 700;
}

.story-coupon__status {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #1b2430;
  font-weight: 600;
}

.story-coupon__copy {
  border: 1px solid rgba(122, 78, 47, 0.2);
  background: #ffffff;
  color: #7a4e2f;
  padding: 4px 6px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.story-coupon__copy:hover {
  background: #7a4e2f;
  color: #ffffff;
  border-color: #7a4e2f;
  box-shadow: 0 6px 12px rgba(122, 78, 47, 0.2);
  transform: translateY(-1px);
}

.story-coupon__copy:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(122, 78, 47, 0.18);
}

.story-coupon__copy:focus-visible {
  outline: 2px solid #7a4e2f;
  outline-offset: 2px;
}

.story-coupon__copy.is-copied {
  background: #1b2430;
  border-color: #1b2430;
  color: #ffffff;
}

.story-coupon__name {
  font-weight: 700;
  color: #1b2430;
  font-size: 16px;
}

.story-coupon__meta {
  font-size: 12px;
  color: #6b7280;
}

.story-coupon__value {
  background: #7a4e2f;
  color: #ffffff;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #556476;
}

.story-meta--sub {
  color: #2c7a2f;
  font-weight: 600;
}

.story-meta__dot {
  color: #9aa6b2;
}

.story-info {
  background-image: linear-gradient(-90deg, #e6e5e4 0, #f5f5f5 52%, #e6e6e6 58%, #e9e9e9 63%, #f3f3f3 100%);
  border: 1px solid #e1e1e1;
  padding: 16px;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.story-info__row {
  display: block;
  padding: 0;
}

.story-info__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  display: block;
  margin-bottom: 4px;
}

.story-info__value {
  font-size: 14px;
  font-weight: 600;
  color: #1b2430;
  text-align: left;
}

.story-panel {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 24px 16px;
}

.webinar-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #1b2430;
}

.webinar-desc ul {
  padding: 0rem 2rem;
  /* background: #f5f5f5; */
}

.webinar-desc img {
  max-width: 100%;
  height: auto;
}

.story-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}

.story-section__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.conf-speaker-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.conf-speaker-panel__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.conf-speaker-panel__bio {
  color: #4b5563;
  line-height: 1.7;
}

.speaker-bio-toggle {
  border: 0;
  background: transparent;
  color: #7a4e2f;
  font-weight: 600;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
}

.conf-speaker-panel__empty {
  color: #6b7280;
  font-style: italic;
}

.side-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 16px 16px 18px;
  position: relative;
}

.side-card__top {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: -16px 0px 12px;
}

.side-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.share-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.share-inline__btn {
  border: 0;
  width: 46px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.share-inline__btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.share-inline__btn--x {
  background: #111111;
}

.share-inline__btn--linkedin {
  background: #0a66c2;
}

.share-inline__btn--copy {
  background: #7a4e2f;
}

.share-inline__status {
  margin-top: 8px;
  font-size: 12px;
  color: #7a4e2f;
  min-height: 16px;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 14px;
  margin-bottom: 12px;
}

.share-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 12px;
}

.share-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f5f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.share-chip--facebook .share-chip__icon {
  color: #1877f2;
}

.share-chip--linkedin .share-chip__icon {
  color: #0a66c2;
}

.share-chip--x .share-chip__icon {
  color: #111111;
}

.share-chip--whatsapp .share-chip__icon {
  color: #25d366;
}

.share-chip--gmail .share-chip__icon {
  color: #d93025;
}

.share-chip--reddit .share-chip__icon {
  color: #ff4500;
}

.share-chip:hover {
  text-decoration: none;
  color: #7a4e2f;
}

.share-copy {
  position: relative;
  display: flex;
  align-items: center;
}

.share-copy__input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 0 42px 0 10px;
  font-size: 12px;
  background: #ffffff;
}

.share-copy__btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #7a4e2f;
  color: #ffffff;
  cursor: pointer;
}

.action-card__coupon {
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.action-card__coupon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.action-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-card__buttons--inline {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.action-card__buttons--inline .action-btn {
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 4px;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

.action-card__buttons--inline .action-btn i {
  font-size: 13px;
}

.action-card__buttons--inline .action-btn--outline {
  border: 1px solid #7a4e2f;
  color: #7a4e2f;
  background: #ffffff;
}

.action-card__buttons--inline .action-btn--solid {
  background: #7a4e2f;
  color: #ffffff;
}

.action-card__buttons--inline .action-btn--solid:hover,
.action-card__buttons--inline .action-btn--outline:hover {
  opacity: 0.9;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.action-btn--outline {
  border: 1px solid #1b2430;
  color: #1b2430;
  background: #ffffff;
}

.action-btn--solid {
  background: var(--text-primary);
  color: #ffffff;
}

.action-btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.order-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

.order-card.side-card {
  padding: 0;
}

.order-card .side-card__top {
  margin: 0;
}

.order-card .card-head {
  padding: 12px 10px;
}

.order-card .card-head h4 {
  margin: 0 0 4px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.related-cards {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  padding: 16px 14px 0px;
  margin-bottom: 1rem;
}

.related-cards h4 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 6px;
  text-align: center;
  word-break: break-word;
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.related-header h4 {
  margin-bottom: 0;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 8px;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.related-carousel {
  padding: 0 8px;
}

.related-carousel .carousel-inner {
  padding-bottom: 6px;
}

.related-carousel__indicators {
  position: static !important;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-left: 0;
}

.related-carousel__indicators li {
  background-color: #c2c9d1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.related-carousel__indicators .active {
  background-color: #2b3a45;
}

.related-thumb {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-title {
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.related-title:hover {
  text-decoration: underline;
}

.related-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #54616f;
  gap: 12px;
}

@media (max-width: 575.98px) {
  .related-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-meta {
    flex-direction: column;
    gap: 2px;
  }

  .related-thumb {
    width: 100%;
    height: 160px;
  }

}


@media (max-width: 767px) {
  .conference-header {
    padding: 16px 0 0;
  }

  .webinar-grid-card {
    grid-template-columns: 1fr;
    padding-right: 20px;
  }

  .webinar-grid-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    padding-left: 0;
}

  .conference-header__card {
    padding: 20px;
  }

  .conference-header .event-title {
    font-size: 24px;
  }

  .story-panel {
    padding: 18px;
  }

  .conf-speaker-panel {
    flex-direction: column;
  }

  .conference-body {
    padding-top: 16px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-right {
    justify-content: flex-start;
  }

  .story-info {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .story-speaker--hero {
    align-items: flex-start;
  }

  .story-speaker--hero .story-speaker__img {
    width: 84px;
    height: 84px;
  }

  .story-action {
    max-width: 100%;
  }

  .story-coupon {
    max-width: 100%;
}
}


/* Center + width control */
#searchForm.searchbar {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.searchbar-input {
  height: 56px;
  padding: 0 110px 0 12px;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.08);
  font-size: 15px;
}

.searchbar-input:focus {
  outline: 0;
  box-shadow: 0 14px 28px rgba(15, 20, 26, 0.12);
  border-color: #cbd5e1;
}

.searchbar-input::placeholder {
  color: #8b95a5;
}


.searchbar-btn {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  border: 0;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.searchbar-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(91, 58, 240, 0.3);
}

@media (max-width: 575.98px) {
  .searchbar-input {
    height: 52px;
    padding-right: 18px;
  }

  .searchbar-btn {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.truncate-15 {
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.empty-card {
  min-height: 80dvh;
  width: 100%;
  background: #fff;
  border-radius: .5rem;
  gap: 1rem;

  .empty-cart-img {
    width: 150px;
  }
}

.empty-cart-img {
  max-width: 180px;
  /* tweak as you like */
  height: auto;
}

.heading_pera {
  background: var(--gradient-primary) !important;
  color: white;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  padding: 0.8rem;
}


.cart {
  background-color: #fff;
}
.cart,
.checkout-table {

  /* Minimal, modern inputs for white backgrounds */
  .form-control {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    /* light grey */
    border-radius: .5rem;
    /* softer corners */
    padding: .5rem .675rem;
    /* 10px 14px */
    height: auto;
    line-height: 1;
    color: #111827;
    /* near-black text */
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  }

  .form-control::placeholder {
    color: #9ca3af;
    /* muted placeholder */
    opacity: 1;
    font-size: 14px;
  }

  .form-control:hover {
    border-color: #d1d5db;
  }

  /* Brand focus (matches your #56cd92 green) */
  .form-control:focus {
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
  }

  /* Disabled / readonly */
  .form-control[disabled],
  .form-control:disabled {
    background-color: #f8f9fb;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
  }

  .form-control[readonly] {
    background-color: #fbfbfb;
  }

  /* Textarea + select tweaks */
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }

  select.form-control {
    background-color: #fff;
  }

  /* Keep rounded corners inside input-groups/addons */
  .input-group .form-control {
    border-radius: .6rem;
  }

  /* Validation states (optional) */
  .form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 .2rem rgba(239, 68, 68, .15);
  }

  .form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 .2rem rgba(16, 185, 129, .15);
  }

  /* Minor polish for number/search fields */
  input[type=number].form-control::-webkit-outer-spin-button,
  input[type=number].form-control::-webkit-inner-spin-button {
    height: auto;
  }

  input[type=search].form-control {
    -webkit-appearance: none;
  }


  /* ===== Cart table (Bootstrap 4) ===== */
  .table {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 4px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border: 1px solid #e5e7eb;
  }

  .table thead th,
  .table tbody td {
    padding: 8px;
    /* comfy spacing */
    vertical-align: middle;
  }

  .table.table-sticky {
    border-collapse: collapse;
    /* helps with consistent widths */
    width: 100%;
  }

  /* Make head a separate block (stays visible), body scrollable */
  .table.table-sticky thead {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .table.table-sticky tbody {
    display: block;
    max-height: 50vh;
    min-height: 40vh;
    overflow-y: auto;
    width: 100%;
  }

  .table.table-sticky tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }


  /* Column widths – must be set on BOTH th and td */
  .table.table-sticky th:nth-child(1),
  .table.table-sticky td:nth-child(1) {
    width: 6%;
    text-align: center;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(3),
  .table.table-sticky td:nth-child(3) {
    width: 8%;
    text-align: center;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(4),
  .table.table-sticky td:nth-child(4) {
    width: 10%;
    text-align: right;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(5),
  .table.table-sticky td:nth-child(5) {
    width: 10%;
    text-align: right;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(6),
  .table.table-sticky td:nth-child(6) {
    width: 10%;
    text-align: center;
    box-sizing: border-box;
  }


  .row-gap-4 {
    row-gap: 1rem;
  }


  /* Header row */
  .table thead th {
    /* background:#f8fafc; */
    /* color:#111827; */
    font-weight: 600;
    letter-spacing: .02em;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }

  /* Use your existing header row class for brand color */
  .heading-table {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
  }

  /* Body cells */
  .table tbody td {
    color: #374151;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
  }

  /* Hover */
  .table tbody tr:hover {
    background: var(--neutral);
  }

  /* Links inside table */
  .table a.text-dark {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
  }

  .table a.text-dark:hover {
    text-decoration: underline;
  }

  /* Alignments: item #, quantity, remove centered; money right-aligned */
  .table tbody td:nth-child(1),
  .table tbody td:nth-child(3),
  .table tbody td:nth-child(6) {
    text-align: center;
  }

  .table tbody td:nth-child(4),
  .table tbody td:nth-child(5) {
    text-align: right;
    font-variant-numeric: tabular-nums;
    /* tidy numbers */
  }

  /* Totals cell emphasis */
  .table .itotal {
    font-weight: 600;
  }

  /* HRs printed inside the product-name cell */
  .table td hr {
    border: 0;
    border-top: 1px dashed #e5e7eb;
    margin: .25rem 0;
  }

  /* Quantity input inside table */
  .table .iquantity {
    width: 50px;
    text-align: center;
    margin: 0 auto;
  }

  /* Trash icon size */
  .table .fa-trash {
    font-size: 1rem;
  }

  .checkout-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 10px 0 6px;
  }

  .checkout-heading__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    display: inline-block;
  }

  /* Mobile tweaks */
  @media (max-width:575.98px) {

    .table thead th,
    .table tbody td {
      padding: .625rem .75rem;
      font-size: .95rem;
    }

    .table tbody td:nth-child(4),
    .table tbody td:nth-child(5) {
      white-space: nowrap;
    }
  }

  .coupon-total-div {
    padding: 12px 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 8px;
  }


}

/* ===== Seminars Page ===== */
.seminars-hero {
  background-color: #fff;
  background-image: repeating-linear-gradient(60deg, color-mix(in srgb, var(--secondary) 10%, transparent) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(-60deg, color-mix(in srgb, var(--secondary) 10%, transparent) 0 12px, transparent 12px 24px);
  background-size: 48px 48px;
  border-bottom: 2px solid var(--secondary);
  padding: 48px 0 56px;
}

.seminars-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.seminars-hero__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.seminars-hero__subtitle {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.seminars-hero__hint {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.seminars-filter {
  background: #fff;
  padding: 12px 16px 6px;
  border-radius: 2px;
  box-shadow: 0 0px 4px rgba(15, 23, 42, 0.08);
}

.seminars-filter .form-control {
  height: 42px;
  border: 1px solid var(--secondary);
  border-radius: 2px;
  font-size: 14px;
  box-shadow: none;
}

.seminars-filter .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.seminars-list {
  background: #fff;
  padding: 60px 0;

}

.seminars-card {
  background: #fff;
  position: relative;
  border-radius: 34px;
  border: 1px solid var(--neutral);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;

  .main-btn {
    background-color: var(--neutral);
    color: #000 !important;
    font-weight: normal;
  }
}

.seminars-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.seminars-card-link:hover {
  text-decoration: none;
}

.seminars-card__header {
  gap: 12px;
  margin-bottom: 10px;
}

.seminars-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
  padding-right: 70px;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speaker-avatar-group {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: end;
  margin-bottom: 10px;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
}

.seminars-card__avatar {
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
  object-fit: cover;
}

.seminars-card__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--primary);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
}

.seminars-presenter {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.seminars-presenter strong {
  color: var(--primary);
}

.seminars-meta {
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
  color: var(--text-primary);
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.seminars-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seminars-meta i {
  width: 16px;
  text-align: center;
  color: var(--text-primary);
}

.seminars-card__footer {
  border-top: 1px solid var(--neutral);
  padding-top: 12px;
  margin-top: auto;
}


.seminars-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .seminars-hero {
    padding: 36px 0 44px;
  }

  .seminars-filter {
    padding: 12px;
  }

  .seminars-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .seminars-card__avatar {
    align-self: flex-end;
  }

  .seminars-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .seminars-price {
    text-align: left;
  }
}

/* ===== Seminar Detail ===== */
.seminar-detail {
  padding: 20px 0 40px;
}

.seminar-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  font-size: 14px;
}

.seminar-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.seminar-breadcrumb a:hover {
  text-decoration: underline;
}

.seminar-hero {
  border: 1px solid var(--secondary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.seminar-hero__main {
  padding: 18px 22px 22px;
}

.seminar-hero__tag {
  font-size: 14px;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 6px;
}

.seminar-hero__title {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.seminar-speaker__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  overflow: hidden;
  margin-right: 12px;
  background: #fff;
}

.seminar-speaker__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seminar-speaker__name {
  font-weight: 700;
  color: var(--text-primary);
}

.seminar-speaker__code {
  font-size: 13px;
  color: var(--text-primary);
}

.seminar-hero__details {
  margin-top: 16px;
  border-top: 1px solid var(--secondary);
}

.seminar-detail-row {
  display: flex;
  gap: 12px;
  color: var(--text-primary);
  font-size: 14px;
}

.seminar-detail-row i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
}

.seminar-detail__title {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-detail__sub {
  color: #51616a;
}

.seminar-status {
  margin: 16px 0;
  background: color-mix(in srgb, var(--secondary) 60%, transparent);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 14px;
}

.seminar-status i {
  color: #f97316;
}

.seminar-options {
  margin: 18px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  min-width: 360px;
}

.seminar-options__head {
  font-weight: 700;
  color: var(--primary);
  font-size: 24px;
  text-align: center;
}

.seminar-options__sub {
  text-align: center;
  color: var(--text-primary);
  font-size: 13px;
  margin-bottom: 12px;
}

.seminar-options__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  gap: 16px;
  color: var(--text-primary);
}

.seminar-options__price {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-options__total {
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-options__note {
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 10px;
  text-align: center;
}

.seminar-tabs .nav-tabs {
  border-bottom: 1px solid var(--secondary);
  border-radius: 6px 6px 0 0;
}

.seminar-tabs .nav-link {
  color: var(--text-primary);
  font-weight: 600;
}

.seminar-tabs .nav-link.active {
  border-color: var(--primary) var(--secondary) #fff;
  border-top-width: 2px;
  color: var(--primary);
}

.seminar-tabs .tab-content {
  border: 1px solid var(--secondary);
  border-top: none;
  padding: 18px 20px;
  background: #fff;
}

.seminar-tab__body {
  color: var(--text-primary);
  font-size: 14px;
}


ul {
  padding-left: 18px;
}

.agenda-grid {
  display: grid;
  gap: 24px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agenda-day {
  color: var(--text-primary);
}

.agenda-day__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.agenda-day__title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.agenda-day__time {
  font-size: 13px;
  color: var(--text-primary);
}

.agenda-day__list {
  margin: 0;
  padding-left: 18px;
}

.agenda-day__list li {
  margin-bottom: 6px;
}

@media (max-width: 767.98px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
}

.seminar-speaker-card {
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary);
}

.seminar-speaker-card:last-child {
  border-bottom: none;
}

.seminar-speaker-card img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.seminar-speaker-card__name {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-speaker-card__title {
  font-size: 13px;
  color: var(--text-primary);
}

.seminar-speaker-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-profile {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--secondary);
}

.speaker-profile:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.speaker-profile__media {
  text-align: center;
  min-width: 140px;
}

.speaker-profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
  background: #fff;
}

.speaker-profile__name {
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary);
}

.speaker-profile__content {
  flex: 1;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.speaker-profile__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.speaker-profile__bio {
  margin-bottom: 12px;
}


@media (max-width: 767px) {
  .speaker-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .speaker-profile__media {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .speaker-profile__avatar {
    width: 80px;
    height: 80px;
  }

  .speaker-profile__name {
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .seminar-options {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .seminar-hero__main {
    padding: 16px;
  }

  .seminar-options {
    margin: 16px;
  }

  .seminar-tabs .nav-link {
    font-size: 13px;
    padding: .5rem .75rem;
  }
}
