/* ========================================
   TURNING 22 — SECTION THEME (safe-scoped)
   Works with existing script.js accordion logic
   (.turning22-card/.turning22-btn/.turning22-content),
   and styles current non-accordion blocks in index.html
   ======================================== */

/* --------- Optional overall wrapper (use if added) --------- */
.turning22-transition-section {
  background: linear-gradient(135deg, #f8fbff 0%, #f1f7ff 100%);
  padding: 60px 40px;
  border-left: 6px solid #005a87;
  margin: 50px auto;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 90, 135, 0.12);
  position: relative;
  overflow: hidden;
}

.turning22-transition-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #005a87 0%, #2980b9 50%, #1abc9c 100%);
}

/* --------- Headers (use if you include title/subtitle) --------- */
.turning22-header {
  text-align: center;
  margin-bottom: 50px;
}

.turning22-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  line-height: 1.2;
}
.turning22-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #005a87, #2980b9);
  border-radius: 2px;
}
.turning22-subtitle {
  font-size: 1.3rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 30px;
  font-style: italic;
}
.turning22-section-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.turning22-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 35px;
  border-radius: 12px;
  border-left: 4px solid #005a87;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================
   ACCORDION (dropdown) — if/when you re-wrap
   content in .turning22-card + .turning22-btn + .turning22-content
   ======================================== */

.turning22-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.turning22-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 90, 135, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.turning22-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.turning22-card.active {
  border-color: #005a87;
  box-shadow: 0 12px 40px rgba(0, 90, 135, 0.2);
}

.turning22-btn {
  width: 100%;
  background: linear-gradient(135deg, #005a87 0%, #004670 100%);
  color: #fff;
  font-size: 1.25rem;
  padding: 24px 28px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.turning22-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.5s ease;
}
.turning22-btn:hover::before {
  left: 100%;
}
.turning22-btn:hover {
  background: linear-gradient(135deg, #b8860b 0%, #9a7009 100%);
  transform: translateY(-1px);
}
.turning22-card.active .turning22-btn {
  background: linear-gradient(135deg, #b8860b 0%, #9a7009 100%);
}

.turning22-btn-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.turning22-btn-text {
  font-weight: 600;
  flex: 1;
  text-align: left;
}
.turning22-expand-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.turning22-card.active .turning22-expand-arrow {
  transform: rotate(180deg);
}

.turning22-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  background: #fff;
}
.turning22-card.active .turning22-content {
  max-height: 2000px;
  overflow-y: auto;
}
.turning22-content > div {
  padding: 40px 30px;
}

/* content scrollbar (when open) */
.turning22-content::-webkit-scrollbar {
  width: 8px;
}
.turning22-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #005a87 0%, #b8860b 100%);
  border-radius: 10px;
}
.turning22-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

/* ========================================
   CURRENT INDEX.HTML BLOCKS (non-accordion)
   ======================================== */

/* Resources overview wrapper */
.turning22-resources-info {
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 10px;
  border-left: 4px solid #005a87;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}
.turning22-resources-info h4 {
  color: #005a87;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e2e8f0;
}
.turning22-resources-info p {
  color: #4a5568;
  line-height: 1.7;
}

.turning22-resources .t22-link-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  text-align: left;
}
.turning22-resources .t22-link-list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #005a87;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fd 100%);
  border: 1px solid rgba(0, 90, 135, 0.2);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.turning22-resources .t22-link-list a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 90, 135, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}
.turning22-resources .t22-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #4a5568;
}

/* “What you’ll find at fairs” */
.turning22-fair-features {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 22px;
  border-radius: 12px;
  margin: 18px 0 26px;
  border-left: 4px solid #3498db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.turning22-fair-features h5 {
  color: #1e3a5f;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-fair-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-fair-features li {
  padding: 12px 0 12px 35px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.turning22-fair-features li:last-child {
  border-bottom: 0;
}
.turning22-fair-features li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1rem;
}

/* School coordination block */
.turning22-school-coordination {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 26px;
}
.turning22-school-coordination h4 {
  color: #005a87;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-school-coordination p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 12px;
}
.turning22-school-coordination ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-school-coordination li {
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.turning22-school-coordination li:last-child {
  border-bottom: 0;
}
.turning22-school-coordination li::before {
  content: "📚";
  position: absolute;
  left: 0;
  top: 10px;
}

/* Key contacts */
.turning22-key-contacts {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 22px;
  border-radius: 12px;
  border-left: 4px solid #0ea5e9;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.12);
}
.turning22-key-contacts h4 {
  color: #0c4a6e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-key-contacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-key-contacts li {
  padding: 10px 0 10px 30px;
  color: #0e7490;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(14, 116, 144, 0.1);
}
.turning22-key-contacts li:last-child {
  border-bottom: 0;
}
.turning22-key-contacts li::before {
  content: "📞";
  position: absolute;
  left: 0;
  top: 10px;
}

/* Generic info blocks reused multiple times */
.turning22-info-block {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #2980b9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.turning22-info-block h4 {
  color: #1e3a5f;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-info-block p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 12px;
}
.turning22-info-block ul {
  margin: 0;
  padding-left: 18px;
}

/* Requirements list (Chapter 688 etc.) */
.turning22-requirements-list {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.turning22-requirements-list h4 {
  color: #005a87;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-requirements-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-requirements-list li {
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}
.turning22-requirements-list li:last-child {
  border-bottom: 0;
}
.turning22-requirements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #2980b9, #005a87);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(41, 128, 185, 0.3);
}

/* Goals grid */
.turning22-goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.turning22-goal-category {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #1abc9c;
  transition: all 0.25s ease;
}
.turning22-goal-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.turning22-goal-category h5 {
  color: #005a87;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f4f8;
}
.turning22-goal-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-goal-category li {
  padding: 8px 0 8px 24px;
  color: #4a5568;
  line-height: 1.55;
  position: relative;
}
.turning22-goal-category li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: #1abc9c;
  font-weight: 700;
  font-size: 1rem;
}

/* Touring tips (container + grid) */
.turning22-touring-tips {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  border-left: 4px solid #f39c12;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 20px 0 10px;
}
.turning22-touring-tips h4 {
  color: #a15e00;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.turning22-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.turning22-tip-item {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #f39c12;
}
.turning22-tip-item h5 {
  color: #005a87;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.turning22-tip-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-tip-item li {
  padding: 6px 0 6px 18px;
  color: #4a5568;
  line-height: 1.5;
  position: relative;
  font-size: 0.95rem;
}
.turning22-tip-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 6px;
  color: #f39c12;
  font-weight: 700;
}

/* Legal/benefits/housing (kept for future use) */
.turning22-legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.turning22-legal-item {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #e74c3c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.turning22-legal-item h4 {
  color: #005a87;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.turning22-legal-item p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 12px;
}
.turning22-legal-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-legal-item li {
  padding: 8px 0 8px 25px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.turning22-legal-item li:last-child {
  border-bottom: 0;
}
.turning22-legal-item li::before {
  content: "⚖";
  position: absolute;
  left: 0;
  top: 8px;
  color: #e74c3c;
  font-size: 0.9rem;
}

.turning22-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.turning22-benefit-category {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #27ae60;
  transition: all 0.25s ease;
}
.turning22-benefit-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.turning22-benefit-category h4 {
  color: #005a87;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f4f8;
}
.turning22-benefit-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-benefit-category li {
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.turning22-benefit-category li:last-child {
  border-bottom: 0;
}
.turning22-benefit-category li::before {
  content: "$";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #27ae60, #229954);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

/* Housing timeline highlight (optional) */
.turning22-housing-timeline {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 22px;
  border-radius: 12px;
  margin-top: 22px;
  border-left: 4px solid #f39c12;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.12);
}
.turning22-housing-timeline h4 {
  color: #856404;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.turning22-housing-timeline p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

/* Disclaimer + compliance badges (optional) */
.turning22-disclaimer {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 2px solid #f87171;
  border-radius: 16px;
  padding: 26px;
  margin-top: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(248, 113, 113, 0.15);
}
.turning22-disclaimer h4 {
  color: #991b1b;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.turning22-disclaimer p {
  color: #7f1d1d;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.turning22-compliance {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  padding: 22px;
  margin-top: 24px;
  border: 2px solid #0ea5e9;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}
.turning22-compliance .compliance-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.turning22-compliance .compliance-text p {
  color: #0e7490;
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

/* ========================================
   Timeline grid pattern (if you use it)
   ======================================== */
.turning22-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.turning22-age-block {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 22px;
  border-radius: 12px;
  border-left: 4px solid #005a87;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.turning22-age-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.turning22-age-block h4 {
  color: #005a87;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}
.turning22-age-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.turning22-age-block li {
  padding: 8px 0 8px 24px;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.turning22-age-block li:last-child {
  border-bottom: 0;
}
.turning22-age-block li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 8px;
  color: #005a87;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ========================================
   Accessibility & responsive
   ======================================== */
.turning22-btn:focus {
  outline: 3px solid #005a87;
  outline-offset: 2px;
}

@media screen and (max-width: 1024px) {
  .turning22-transition-section {
    padding: 50px 30px;
    margin: 40px 20px;
  }
  .turning22-timeline-grid,
  .turning22-goals-grid,
  .turning22-tips-grid,
  .turning22-legal-grid,
  .turning22-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .turning22-transition-section {
    padding: 40px 20px;
    margin: 30px 15px;
  }
  .turning22-title {
    font-size: 2.2rem;
  }
  .turning22-subtitle {
    font-size: 1.1rem;
  }
  .turning22-intro {
    font-size: 1rem;
    padding: 22px 20px;
  }

  .turning22-btn {
    padding: 20px;
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .turning22-btn-icon {
    font-size: 1.4rem;
  }
  .turning22-btn-text {
    font-size: 1.05rem;
  }

  .turning22-content > div {
    padding: 25px 20px;
  }

  .turning22-timeline-grid,
  .turning22-goals-grid,
  .turning22-tips-grid,
  .turning22-legal-grid,
  .turning22-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .turning22-age-block,
  .turning22-goal-category,
  .turning22-tip-item,
  .turning22-legal-item,
  .turning22-benefit-category {
    padding: 18px;
  }

  .turning22-compliance {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .turning22-disclaimer {
    padding: 22px 18px;
  }
  .turning22-disclaimer h4 {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 6px;
  }
}

@media screen and (max-width: 480px) {
  .turning22-transition-section {
    padding: 30px 15px;
    margin: 20px 10px;
  }
  .turning22-title {
    font-size: 1.8rem;
  }
  .turning22-subtitle {
    font-size: 1rem;
  }
  .turning22-intro {
    font-size: 0.95rem;
    padding: 18px 15px;
  }
  .turning22-btn {
    padding: 16px 14px;
    font-size: 1rem;
  }
  .turning22-btn-text {
    font-size: 1rem;
  }
  .turning22-content > div {
    padding: 18px 15px;
  }
  .turning22-disclaimer {
    padding: 18px 14px;
  }
  .turning22-disclaimer p {
    font-size: 1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .turning22-card,
  .turning22-btn,
  .turning22-age-block,
  .turning22-goal-category,
  .turning22-benefit-category {
    transition: none;
  }
  .turning22-card:hover,
  .turning22-age-block:hover,
  .turning22-goal-category:hover,
  .turning22-benefit-category:hover {
    transform: none;
  }
  .turning22-btn::before {
    transition: none;
  }
  .turning22-btn:hover::before {
    left: -100%;
  }
}

/* High contrast support */
@media (prefers-contrast: high) {
  .turning22-card,
  .turning22-age-block,
  .turning22-goal-category,
  .turning22-tip-item,
  .turning22-legal-item,
  .turning22-benefit-category,
  .turning22-disclaimer,
  .turning22-compliance {
    border: 2px solid #000;
  }
  .turning22-btn {
    border: 2px solid #fff;
  }
}

/* Print */
@media print {
  .turning22-transition-section {
    box-shadow: none;
    background: #fff !important;
    border: 1px solid #000;
    page-break-inside: avoid;
  }
  .turning22-card {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  .turning22-btn {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  .turning22-content {
    max-height: none !important;
    overflow: visible !important;
  }
  .turning22-disclaimer,
  .turning22-compliance {
    background: #f9f9f9 !important;
    border: 2px solid #000;
  }
}
