  /* ===============================
   Scoped Workshop Styles
   Namespace: .utep-ai-workshop
   =============================== */

.utep-ai-workshop {
  --utep-navy: #041e42;
  --utep-orange: #ff8200;
  --utep-orange-dark: #d96e00;
  --utep-light: #f5f6f8;
  --utep-grey: #555;
  --utep-border: #e3e5e8;

  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* ===== RESET / OVERRIDES ===== */
.utep-ai-workshop * {
  box-sizing: border-box;
}

.utep-ai-workshop h1,
.utep-ai-workshop h2,
.utep-ai-workshop h3,
.utep-ai-workshop h4 {
  font-family: "Roboto Slab", serif;
  margin-top: 0;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.utep-ai-workshop p {
  margin: 0 0 1em 0;
  color: var(--utep-grey);
}

/* ===== FIX BOOTSTRAP CONTAINER ===== */
.utep-ai-workshop .uaw-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION ===== */
.utep-ai-workshop .section {
  padding: 70px 0;
}

/* ===== HERO ===== */
.utep-ai-workshop .hero-tag {
  display: inline-block;
  background: var(--utep-orange);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 20px;
}

.utep-ai-workshop .section-title {
  font-size: 2.2rem;
  color: var(--utep-navy);
  position: relative;
  padding-bottom: 12px;
}

.utep-ai-workshop .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--utep-orange);
  border-radius: 2px;
}

.utep-ai-workshop .accent {
  color: var(--utep-orange);
}

.utep-ai-workshop .lead {
  max-width: 760px;
  font-size: 1.15rem;
}

/* ===== ABOUT ===== */
.utep-ai-workshop .about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.utep-ai-workshop .about-logo {
  max-width: 100%;
}

/* ===== DETAILS PANEL ===== */
.utep-ai-workshop .details-panel {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.utep-ai-workshop .detail-block h4 {
  color: var(--utep-navy);
  text-transform: uppercase;
  border-bottom: 2px solid var(--utep-orange);
  display: inline-block;
  padding-bottom: 6px;
}

.utep-ai-workshop .detail-block .big {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--utep-navy);
}

/* ===== SESSION CARDS ===== */
.utep-ai-workshop .sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.utep-ai-workshop .session-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-top: 6px solid var(--utep-orange);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.utep-ai-workshop .session-card:hover {
  transform: translateY(-5px);
}

.utep-ai-workshop .session-number {
  background: var(--utep-navy);
  color: #fff;
  padding: 18px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.utep-ai-workshop .session-body {
  padding: 25px;
  flex: 1;
}

.utep-ai-workshop .platform {
  color: var(--utep-orange);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== BUTTONS ===== */
.utep-ai-workshop .btn-rsvp {
  display: inline-block;
  background: var(--utep-orange);
  color: #fff;
  padding: 13px 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  margin-top: 15px;
}

.utep-ai-workshop .btn-rsvp:hover {
  background: var(--utep-orange-dark);
}

/* ===== DOWNLOAD ===== */
.utep-ai-workshop .download-section {
  text-align: center;
  margin: 50px 0;
}

.utep-ai-workshop .btn-download {
  background: var(--utep-navy);
  color: white;
  padding: 15px 32px;
  text-decoration: none;
  border-radius: 6px;
}

.utep-ai-workshop span {
  all: unset;
  display: inline;
  font-family: inherit;
  font-size: 14px;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .utep-ai-workshop .about-section {
    grid-template-columns: 1fr;
  }

  .utep-ai-workshop .details-panel {
    grid-template-columns: 1fr;
  }
}