.elementor-kit-16{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-16 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.speaker-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.speaker {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.speaker img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.speaker h3 {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.speaker p {
  font-size: 1em;
  color: #555;
}
/* Outer Container */
.speakers-container {
  background: #f5faff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* Search Bar */
.speakers-search {
  text-align: right;
  margin-bottom: 25px;
}
.speakers-search input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 250px;
  max-width: 100%;
}

/* Grid Layout */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Card */
.speaker-card {
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Image Container */
.speaker-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.speaker-card:hover .speaker-image img {
  transform: scale(1.1);
}

/* Text */
.speaker-card h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}
.speaker-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

/* Link */
.speaker-card a {
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s;
}
.speaker-card a:hover {
  color: #0056b3;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .speakers-search {
    text-align: left;
  }
  .speakers-search input {
    width: 100%;
  }
}/* End custom CSS */