.tour-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3rem 4rem;
  background-color: #0f1a2f;
  min-height: 100vh;
  gap: 2rem;
}

.tour-content {
  max-width: 32rem;
}

.tour-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tour-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tour-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #fdfdff;
  margin-bottom: 1.5rem;
}

.tour-bullets {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #e6ecf7;
  margin-bottom: 2rem;
}

.tour-next-btn {
  background-color: #1e90ff;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tour-next-btn:hover {
  background-color: #3aa0ff;
}

.tour-mascot img {
  max-width: 20rem;
  width: 100%;
  height: auto;
  display: block;
  justify-self: end;
}

.tour-mascot {
  transform: translateX(-25rem);
}

.btn-primary {
  background-color: #1e90ff;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 1rem rgba(30, 144, 255, 0.35);
  transform: translateY(-0.05rem);
}

.btn-primary:hover {
  background-color: #3aa0ff;
  box-shadow: 0 0 1.25rem rgba(30, 144, 255, 0.45);
}

.tour-callout {
  font-size: 1rem;
  color: #cfd6e6;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.btn-throb {
  animation: throb 2.5s ease-in-out infinite;
  background-color: #1e90ff;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 1rem rgba(30, 144, 255, 0.35);
}

@keyframes throb {
  0%   { transform: scale(1); box-shadow: 0 0 0 rgba(30,144,255,0.0); }
  50%  { transform: scale(1.05); box-shadow: 0 0 1.25rem rgba(30,144,255,0.45); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(30,144,255,0.0); }
}
.partner-pilf {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.partner-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.partner-tagline {
  font-size: 0.95rem;
  color: #aeb7c8;
  margin-bottom: 1rem;
}

.partner-body {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.partner-note {
  font-style: italic;
  color: #9aa3b5;
}

.partner-actions .dead-link {
  font-size: 0.9rem;
  color: #6f7a8c;
  cursor: default;
  text-decoration: none;
  opacity: 0.8;
}

.dead-link:hover {
  opacity: 0.8; /* no change on hover = intentional dead end */
}

/* ------------------------------
   GLOBAL TUTORIAL PAGE LAYOUT
--------------------------------*/
.tutorial-page {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #222;
}

.tutorial-header {
    font-size: 1.9rem;
    font-weight: 400;
    text-align: center;
    padding: 2.5rem 1.25rem 1.25rem;
    color: #fcf9f9;
}

/* ------------------------------
   CONTENT WRAPPER
--------------------------------*/
.tutorial-content {
    max-width: 56.25rem; /* 900px */
    margin: 0 auto;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
}

/* ------------------------------
   MASCOT BLOCK
--------------------------------*/
.mascot-block {
    position: relative;
    text-align: center;
}

.mascot-block img.mascot {
    width: 100%;
    max-width: 17.5rem; /* 280px */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ------------------------------
   SPEECH BALLOON
--------------------------------*/
.speech-balloon {
    position: absolute;
    top: -0.625rem;
    right: -1.25rem;
    background: #fafafa;            /* off‑white for contrast */
    border: 0.125rem solid #333;    /* darker border */
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    max-width: 11.25rem;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #222;                    /* stronger text */
}

.speech-balloon::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 1.25rem;
    border-top: 0.75rem solid #333; /* match border */
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
}

/* ------------------------------
   INFO BOX
--------------------------------*/
.info-box {
    background: #fafafa;            /* off‑white */
    border: 0.0625rem solid #bbb;   /* darker than #ddd */
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    color: #222;  
    grid-column: span 2;
    padding: 1rem 1.25rem;
    background: #fafafa;              /* soft off‑white */
    padding: 1rem 1.25rem;            /* shorter height */
    max-width: 48rem;                 /* centers nicely */
    margin: 0 auto 1rem;              /* centers + spacing below */
    position: relative;
}

.info-box h2 {
    margin-top: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-box p {
    margin: 0.625rem 0 1.25rem; /* 10px 0 20px */
    line-height: 1.5;
}

.info-box .learn-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.info-box .learn-more:hover {
    text-decoration: underline;
}

/* ------------------------------
   CTA BUTTON
--------------------------------*/
.cta-button {
    grid-column: span 2;
    display: inline-block;
    margin: 1.25rem auto 0;       /* 20px */
    padding: 0.875rem 1.75rem;    /* 14px 28px */
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 0.375rem;      /* 6px */
    text-align: center;
}

.cta-button:hover {
    background: #004c99;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 43.75rem) { /* 700px */
    .tutorial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .speech-balloon {
        position: relative;
        top: 0;
        right: 0;
        margin: 0.625rem auto 0; /* 10px */
    }

    .cta-button {
        grid-column: span 1;
    }
}
/* Tutorial Section Headings */
.tutorial-page h2 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 1.8rem 0 0.8rem;
    color: #e8ecf3; /* soft off‑white */
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.3rem;
}

.doc-section p {
    text-align: left;
}

