/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 05 2025 | 20:10:27 */
.pdf-repeater-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

@media (min-width: 600px) {
  .pdf-repeater-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pdf-repeater-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdf-item {
  padding: 30px;
  height: 100%;
  background: #fff;
}

.pdf-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pdf-icon {
	width: 15% !important;
	text-align: center;
}
.pdf-icon img {
  	width: 100%;
  	height: auto;
	padding: 10px;
}
.pdf-content {
	width: 85% !important;
}
.pdf-content h5 {
  	margin: 0 0 20px;
  	font-size: 1rem;
	margin-bottom: 20px;
}

.pdf-download {
  	display: inline-block;
  	color: #E84420;
  	text-decoration: underline;
  	font-weight: 600;
	font-size: 1rem;
}

.pdf-download:hover {
  text-decoration: none;
	 color: #1F2C50;
}
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 30 2025 | 11:44:11 */
.main-sponsor-grid {
	width: 100%;
}

.main-sponsor-grid .main-sponsor-logo-box {
	width: 100%;
}

.main-sponsor-grid .main-sponsor-text {
	overflow: hidden;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 30 2025 | 11:01:42 */
/* Wrap all speaker boxes in a grid container */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* default mobile */
  gap: 20px;
  padding: 0px;
	margin: 0px;
}

.speaker-box {
  background: transparent;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.speaker-box:hover {
}

.speaker-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
	border-radius: 5px;
}

.speaker-title {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.25rem;
	color: #fff;
}

.speaker-subtitle {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.speaker-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: #0073aa;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
}

.speaker-link:hover {
  background: #005a87;
}

/* Responsive columns */
@media (min-width: 600px) {
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .speaker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .speaker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
