#pulse-agenda {
  max-width: 800px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
}

.agenda-day {
  text-align: center;
  font-weight: bold;
  font-size: 32px; /* bigger day header */
  margin: 32px 0 16px 0;
}

/* Box style for each row */
.agenda-row {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  align-items: center; /* vertically center time and content */
  transition: transform 0.2s;
}

.agenda-row:hover {
  transform: translateY(-2px);
}

.agenda-time {
  flex: 0 0 200px; /* make the time box a bit wider */
  font-weight: 700;
  text-align: left; /* can switch to right if you prefer */
  padding-right: 24px;
  white-space: nowrap;
  font-size: 1em;
}

.agenda-content {
  flex: 1 1 calc(100% - 200px);
  min-width: 200px;
  word-wrap: break-word;
  text-align: left;
  font-size: 1em;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .agenda-row {
    flex-direction: column;
    align-items: flex-start; 
    gap: 8px;
  }
  .agenda-time,
  .agenda-content {
    flex: 1 1 100%;
    text-align: left;
    padding-right: 0;
  }
}

/* Pure CSS - put this in your theme's style.css or customizer */

.speaker-scroll-section {
    width: 100%;
    padding: 2rem 0;
}

.speaker-scroll-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.speaker-scroll-header {
    margin-bottom: 2rem;
}

.speaker-scroll-header h2 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.speaker-scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.speaker-scroll-row::-webkit-scrollbar {
    height: 4px;
}

.speaker-scroll-row::-webkit-scrollbar-track {
    background: transparent;
}

.speaker-scroll-row::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 2px;
}

.speaker-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.speaker-photo-wrapper {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1.5rem 0;
}

.speaker-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
}

.speaker-content {
    padding: 1.25rem 0.5rem 0.5rem;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.speaker-title {
    font-size: 0.9rem;
    margin: 0 0 0.15rem;
    line-height: 1.4;
    font-weight: 400;
}

.speaker-company {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    font-weight: 600;
}

.speaker-company a {
    text-decoration: none;
}

.speaker-company a:hover {
    text-decoration: underline;
}

.speaker-session {
    font-size: 0.85rem;
    margin: 0 0 1.25rem;
    padding: 0.5rem 0 0.5rem 0.5rem;
    border-left-width: 3px;
    border-left-style: solid;
    font-style: italic;
    line-height: 1.5;
}

.speaker-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

.speaker-btn:hover {
    transform: translate(2px, -2px);
}

.speaker-all-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid;
    background: transparent;
    text-decoration: none;
}

@media (max-width: 768px) {
    .speaker-scroll-header h2 {
        font-size: 2rem;
    }
    
    .speaker-card {
        flex: 0 0 260px;
    }
    
    .speaker-photo {
        width: 120px;
        height: 120px;
    }
}