/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/** display speaker grid */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.speaker-card {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.speaker-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.speaker-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #222;
}

.speaker-position {
  font-size: 0.95rem;
  color: #555;
  margin-top: 5px;
}

.speaker-social {
  margin-top: 10px;
}

.speaker-social .social-link {
  display: inline-block;
  margin-right: 10px;
}

.speaker-social .social-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.speaker-social .social-link:hover img {
  transform: scale(1.1);
}
/** shine effect */
.shine {
  background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff)) 0 0 no-repeat;
  -webkit-background-size: 200px !important;
  /**color: $text-color;*/
  -webkit-background-clip: text;
  -webkit-animation-name: shine;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5);
}
.chrome {
  background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff)) 0 0 no-repeat;
  background-image: -webkit-linear-gradient(-40deg, transparent 0%, transparent 40%, #fff 50%, transparent 60%, transparent 100%);
  -webkit-background-size: 200px;
  /**color: $text-color;*/
  -webkit-background-clip: text;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
   animation-name: shine;
  text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5);
}
@keyframes shine {
  0% {
    background-position: -1000px;
  }
  20% {
    background-position: top left;
  }

  90% {
    background-position: top right;
  }
  100% {
    background-position: 1000px;
  }
}
/** end shine */
