/* Toolbox Talks Library — matches processpanda_toolbox_talks_bootstrap.html */

.ttl-page {
  --ttl-green: #35b449;
  --ttl-green-deep: #26963a;
  --ttl-ink: #0a1729;
  --ttl-black: #0a0f14;
  --ttl-muted: #68727a;
  --ttl-line: #dfe5e8;
  --ttl-soft: #f6f8f8;
  color: #182128;
  background: #fff;
}

.ttl-accent { color: var(--ttl-green); }
.ttl-accent-text { color: var(--ttl-green-deep); font-weight: 700; }

.ttl-section-title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
  color: #111;
}

.ttl-section-title--light { color: #fff; }

.ttl-section-sub {
  color: var(--ttl-muted);
  max-width: 760px;
  margin: 0.65rem auto 0;
  text-align: center;
  font-size: 1.05rem;
}

.ttl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--ttl-green);
  border: 1px solid var(--ttl-green);
  color: #fff !important;
  font-weight: 750;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ttl-btn:hover {
  background: var(--ttl-green-deep);
  border-color: var(--ttl-green-deep);
  color: #fff !important;
}

.ttl-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  font-weight: 600;
}

.ttl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

/* ---------- Hero ---------- */
.ttl-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(53, 180, 73, 0.14), transparent 25%),
    linear-gradient(180deg, #0b1015 0%, #0a0f14 100%);
  color: #fff;
  padding: 62px 0 28px;
  overflow: hidden;
}

.ttl-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
}

.ttl-hero-copy h1 {
  margin: 0 0 1.5rem;
  font-size: 90px;
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: -0.055em;
  color: #fff;
}

.ttl-hero-lead {
  margin: 0;
  color: #e2e8ea;
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.65;
}

.ttl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.ttl-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42));
}

.ttl-statbar {
  --ttl-stat-value-size: 1.55rem;
  --ttl-stat-value-lh: 1.2;
  --ttl-stat-label-size: 0.92rem;
  --ttl-stat-label-lh: 1.25;
  --ttl-stat-gap: 4px;
  --ttl-stat-icon-size: 40px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  background: #0a0f13;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.ttl-stat {
  display: grid;
  grid-template-columns: var(--ttl-stat-icon-size) minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.ttl-stat:last-child { border-right: 0; }

.ttl-stat-icon {
  width: var(--ttl-stat-icon-size);
  height: var(--ttl-stat-icon-size);
  color: var(--ttl-green);
  display: grid;
  place-items: center;
  line-height: 0;
  margin: 0;
  align-self: start;
}

.ttl-stat-icon img {
  width: var(--ttl-stat-icon-size);
  height: var(--ttl-stat-icon-size);
  display: block;
  object-fit: contain;
  filter: brightness(1.18) saturate(1.12) contrast(1.05);
}

.ttl-stat-text {
  display: grid;
  grid-template-rows: calc(var(--ttl-stat-value-size) * var(--ttl-stat-value-lh)) auto;
  row-gap: var(--ttl-stat-gap);
  min-width: 0;
  align-items: start;
  align-self: start;
}

.ttl-stat-value {
  margin: 0;
  padding: 0;
  font-size: var(--ttl-stat-value-size);
  font-weight: 700;
  line-height: var(--ttl-stat-value-lh);
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ttl-stat-label {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 400;
  line-height: var(--ttl-stat-label-lh);
  min-height: calc(var(--ttl-stat-label-size) * var(--ttl-stat-label-lh) * 2);
}

/* Copy cards: same label typography, icons stay on the shared icon row */
.ttl-stat--copy .ttl-stat-text {
  grid-template-rows: auto;
  padding-top: 0;
}

.ttl-stat--copy .ttl-stat-label {
  min-height: 0;
}

/* ---------- Steps ---------- */
.ttl-steps {
  background: #fff;
  padding: 72px 0;
}

.ttl-steps .ttl-section-title { margin-bottom: 2.75rem; }

.ttl-steps-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 20px;
  align-items: start;
}

.ttl-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  row-gap: 0;
}

.ttl-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 78px;
  left: calc(50% + 42px);
  width: calc(100% - 52px);
  height: 0;
  border-top: 2px dashed rgba(53, 180, 73, 0.55);
  pointer-events: none;
}

.ttl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 73px;
  right: -8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(53, 180, 73, 0.75);
  pointer-events: none;
  z-index: 1;
}

.ttl-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ttl-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1;
}

.ttl-step-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #1a1a1a;
  margin: 0 0 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: inherit;
}

.ttl-step-icon svg,
.ttl-step-icon img {
  width: 65px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.ttl-step h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.ttl-step h3 small {
  font-weight: 700;
  font-size: 0.92em;
  color: #111;
}

.ttl-step p {
  margin: 0 auto;
  max-width: 210px;
  font-size: 1rem;
  color: #505b62;
  line-height: 1.45;
}

/* ---------- Libraries ---------- */
.ttl-libraries {
  background: #fff;
  padding: 8px 0 64px;
}

.ttl-libraries .ttl-section-title { margin-bottom: 1.75rem; }

.ttl-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ttl-library-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #d5dce0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 100%;
}

.ttl-library-card:hover {
  border-color: #c2ccd2;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  color: inherit;
}

.ttl-library-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid #e8eef1;
}

.ttl-library-art {
  min-height: 180px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #eef3f5;
}

.ttl-library-art--construction {
  background: linear-gradient(180deg, #9fd6f3 0 55%, #f2bf48 55% 100%);
}

.ttl-library-art--manufacturing {
  background: linear-gradient(180deg, #d6e5eb 0 52%, #666f75 52% 100%);
}

.ttl-library-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ttl-library-intro {
  padding: 22px 22px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ttl-library-intro h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.20;
  color: #111;
}

.ttl-library-count {
  display: inline-block;
  color: var(--ttl-green);
  font-weight: 650;
  font-size: 1.6rem;
  margin-top: 8px;
  line-height: 1.2;
}

.ttl-library-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  padding: 18px 22px 22px;
  align-items: start;
}

.ttl-check-list,
.ttl-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ttl-check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  color: #303a40;
  font-size: 1rem;
  line-height: 1.25;
}

.ttl-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2335b449'/%3E%3Cpath d='M4.2 8.2l2.3 2.3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ttl-topics-label {
  color: var(--ttl-green);
  font-weight: 650;
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.ttl-topics li {
  margin: 5px 0;
  padding-left: 1em;
  position: relative;
  color: #303a40;
  font-size: 1rem;
  line-height: 1.35;
}

.ttl-topics li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #303a40;
}

/* ---------- Features ---------- */
.ttl-features {
  background: #fff;
  padding: 0 0 36px;
}

.ttl-features-panel {
  background: #0a0f13;
  color: #fff;
  border-radius: 18px;
  padding: 42px 30px 34px;
}

.ttl-features-panel .ttl-section-title { margin-bottom: 0; }

.ttl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ttl-feature {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
}

.ttl-feature-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.ttl-feature-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.ttl-feature strong {
  display: block;
  font-size: 1.42rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ---------- Videos ---------- */
.ttl-videos {
  background: #fff;
  padding: 8px 0 72px;
}

.ttl-videos-head {
  margin-bottom: 1.5rem;
  text-align: center;
}

.ttl-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0;
}

.ttl-video-card {
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.ttl-video-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  background: #e8eef1;
  overflow: hidden;
  border: 1.5px solid #9aa3a9;
  border-radius: 12px;
  line-height: 0;
}

.ttl-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ttl-video-caption {
  padding: 14px 6px 0;
  text-align: center;
  font-weight: 800;
  font-size: 1.08rem;
  color: #111;
  line-height: 1.25;
}

/* ---------- CTA ---------- */
.ttl-cta {
  background: #fff;
  padding: 0 0 64px;
}

.ttl-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1.35fr) auto;
  gap: 0 28px;
  align-items: center;
  background: #05080b;
  border-radius: 22px;
  color: #fff;
  padding: 28px 34px 28px 30px;
  overflow: hidden;
}

.ttl-cta-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(280px, 28%);
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.1px, transparent 1.3px);
  background-size: 12px 12px;
  opacity: 0.4;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
}

.ttl-cta-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  z-index: 1;
}

.ttl-cta-mark {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ttl-cta-brand-text { min-width: 0; }

.ttl-cta-name {
  font-size: 30px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.ttl-cta-tagline {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.ttl-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 88px;
  background: rgba(53, 180, 73, 0.55);
  z-index: 1;
}

.ttl-cta-copy {
  z-index: 1;
  min-width: 0;
}

.ttl-cta-copy h2 {
  margin: 0 0 8px;
  font-size: 50px;
  font-weight: 750;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.02em;
}

.ttl-cta-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 460px;
}

.ttl-btn--cta {
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

.ttl-btn--cta i { font-size: 1.05rem; }

.ttl-cta-mascot {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: -8px -10px -28px 0;
  line-height: 0;
}

.ttl-cta-mascot img {
  display: block;
  width: clamp(190px, 20vw, 260px);
  height: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .ttl-steps-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ttl-step:not(:last-child)::after,
  .ttl-step:not(:last-child)::before { display: none; }
  .ttl-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ttl-cta-panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px 24px;
  }
  .ttl-cta-divider { display: none; }
  .ttl-cta-mascot { display: none; }
  .ttl-cta-panel::after { display: none; }
}

@media (max-width: 1199.98px) {
  .ttl-statbar {
    --ttl-stat-value-size: 1.35rem;
    --ttl-stat-label-size: 0.86rem;
  }

  .ttl-stat {
    column-gap: 10px;
    padding: 18px 14px;
  }
}

@media (max-width: 991.98px) {
  .ttl-hero { padding-top: 42px; }
  .ttl-hero-row { grid-template-columns: 1fr; gap: 28px; }
  .ttl-hero-copy h1 { font-size: 3.5rem; }
  .ttl-statbar {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .ttl-stat {
    flex: 0 0 auto;
    width: min(220px, 72vw);
    scroll-snap-align: start;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }
  .ttl-library-grid,
  .ttl-video-grid { grid-template-columns: 1fr; }
  .ttl-library-top,
  .ttl-library-bottom { grid-template-columns: 1fr; }
  .ttl-library-art { min-height: 200px; }
}

@media (max-width: 575.98px) {
  .ttl-steps { padding: 52px 0; }
  .ttl-steps-row { grid-template-columns: 1fr; }
  .ttl-features-grid { grid-template-columns: 1fr; }
  .ttl-features-panel { padding: 34px 20px; }
  .ttl-hero-copy h1 { font-size: 2.8rem; }
  .ttl-cta-panel {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    gap: 18px;
  }
  .ttl-cta-name,
  .ttl-cta-tagline {
    white-space: normal;
  }
}

/* ========== Redesign: library intro (post-hero) ========== */
.ttl-r-intro {
  --ttl-r-green: #248636;
  --ttl-r-ink: #0f1728;
  --ttl-r-muted: #516075;
  --ttl-r-icon-bg: #e8f5eb;
  padding: 48px 0 52px;
  background: #fff;
}
.ttl-r-intro-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttl-r-green);
}
.ttl-r-intro-title {
  margin: 0 0 14px;
  max-width: 100%;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-intro-lead {
  margin: 0 0 36px;
  max-width: 88ch;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ttl-r-muted);
}
.ttl-r-intro-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}
.ttl-r-intro-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}
.ttl-r-intro-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttl-r-icon-bg);
  color: #0f1728;
  font-size: 25px;
  line-height: 1;
}
.ttl-r-intro-points h3 {
  margin: 2px 0 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-intro-points p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ttl-r-muted);
}

@media (max-width: 991px) {
  .ttl-r-intro {
    padding: 36px 0 44px;
  }
  .ttl-r-intro-title {
    font-size: 28px;
    max-width: none;
  }
  .ttl-r-intro-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .ttl-r-intro-title {
    font-size: 24px;
  }
  .ttl-r-intro-lead {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .ttl-r-intro-points h3 {
    font-size: 16px;
  }
  .ttl-r-intro-points p {
    font-size: 14px;
  }
}

/* ========== Redesign: one library, two collections ========== */
.ttl-r-collections {
  --ttl-r-green: #248636;
  --ttl-r-ink: #0f1728;
  --ttl-r-muted: #516075;
  --ttl-r-soft: #eef8f0;
  padding: 48px 0 48px;
  background: #fff;
}
.ttl-r-collections-panel {
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
}
.ttl-r-collections-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) minmax(220px, 0.9fr);
  gap: 22px 20px;
  align-items: start;
  margin-bottom: 20px;
}
.ttl-r-collections-side {
  min-width: 0;
}
.ttl-r-collections-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: var(--ttl-r-soft);
  border-radius: 14px;
}
.ttl-r-collections-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}
.ttl-r-collections-stat-icon i {
  color: #fff;
}
.ttl-r-collections-stat h3 {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-collections-stat p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.ttl-r-collections-stat strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 750;
  color: var(--ttl-r-green);
}
.ttl-r-collections-stat p span {
  font-size: 14px;
  font-weight: 550;
  color: var(--ttl-r-muted);
}
.ttl-r-collections-col-title {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-collections-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ttl-r-collections-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ttl-r-ink);
}
.ttl-r-collections-pills > li > i {
  width: 18px;
  text-align: center;
  color: var(--ttl-r-green);
  font-size: 18px;
  flex-shrink: 0;
}
.ttl-r-collections-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
}
.ttl-r-collections-center {
  min-width: 0;
  align-self: center;
}
.ttl-r-collections-media {
  min-width: 0;
}
.ttl-r-collections-media img {
  display: block;
  width: 100%;
  height: auto;
}
.ttl-r-collections-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  background: var(--ttl-r-soft);
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ttl-r-green);
}
.ttl-r-collections-note-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .ttl-r-collections-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ttl-r-collections-center {
    order: -1;
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .ttl-r-collections-panel {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 767px) {
  .ttl-r-collections {
    padding: 40px 0 40px;
  }
  .ttl-r-collections-panel {
    padding: 18px 14px 14px;
    border-radius: 18px;
  }
  .ttl-r-collections-pills li {
    font-size: 14px;
  }
  .ttl-r-collections-note {
    align-items: flex-start;
    font-size: 15px;
  }
}

/* ========== Redesign: built for your workforce ========== */
.ttl-r-action {
  --ttl-r-green: #248636;
  padding: 8px 0 48px;
  background: #fff;
  color: #fff;
}
.ttl-r-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #12181e;
}
.ttl-r-action-media {
  min-width: 0;
  min-height: 100%;
  background: #0a0f14;
}
.ttl-r-action-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ttl-r-action-copy {
  padding: 40px 42px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ttl-r-action-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttl-r-green);
}
.ttl-r-action-title {
  margin: 0 0 16px;
  max-width: 31ch;
  font-size: 45px;
  line-height: 1.18;
  font-weight: 700;
  color: #fff;
}
.ttl-r-action-lead {
  margin: 0 0 12px;
  max-width: 54ch;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.78);
}
.ttl-r-action-lead + .ttl-r-action-lead {
  margin-bottom: 22px;
}
.ttl-r-action-feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.ttl-r-action-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.92);
}
.ttl-r-action-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--ttl-r-green);
  color: var(--ttl-r-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.ttl-r-action-tagline {
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ttl-r-green);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
}
.ttl-r-action-tagline span {
  color: var(--ttl-r-green);
}
.ttl-r-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ttl-r-action-btn:hover,
.ttl-r-action-btn:focus-visible {
  background: #1f722e;
  color: #fff;
  text-decoration: none;
}
.ttl-r-action-btn i {
  font-size: 14px;
}

@media (max-width: 991px) {
  .ttl-r-action {
    padding: 4px 0 40px;
  }
  .ttl-r-action-panel {
    grid-template-columns: 1fr;
  }
  .ttl-r-action-media {
    min-height: 0;
    max-height: none;
  }
  .ttl-r-action-media img {
    height: auto;
    object-fit: contain;
  }
  .ttl-r-action-copy {
    padding: 28px 24px 30px;
  }
  .ttl-r-action-title {
    font-size: 28px;
    max-width: none;
  }
  .ttl-r-action-feats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .ttl-r-action-panel {
    border-radius: 20px;
  }
  .ttl-r-action-media {
    min-height: 0;
    max-height: none;
  }
  .ttl-r-action-copy {
    padding: 22px 18px 24px;
  }
  .ttl-r-action-title {
    font-size: 24px;
  }
  .ttl-r-action-lead,
  .ttl-r-action-tagline {
    font-size: 15px;
  }
  .ttl-r-action-feats li {
    font-size: 14px;
  }
  .ttl-r-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== Redesign: evaluation of effectiveness ========== */
.ttl-r-eval {
  --ttl-r-green: #248636;
  --ttl-r-ink: #0f1728;
  --ttl-r-muted: #516075;
  --ttl-r-soft: #e8f5eb;
  padding: 48px 0 52px;
  background: #fff;
}
.ttl-r-eval-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 36px 40px;
  align-items: center;
  margin-bottom: 40px;
}
.ttl-r-eval-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttl-r-green);
}
.ttl-r-eval-title {
  margin: 0 0 14px;
  max-width: 25ch;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-eval-lead {
  margin: 0;
  max-width: 60ch;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 450;
  color: var(--ttl-r-muted);
}
.ttl-r-eval-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 420px;
}
.ttl-r-eval-phone {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  padding: 12px 10px 14px;
  border-radius: 32px;
  background: #111827;
  box-shadow: 0 18px 40px rgba(15, 23, 40, 0.22);
}
.ttl-r-eval-phone-notch {
  width: 72px;
  height: 8px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #2a3344;
}
.ttl-r-eval-phone-screen {
  padding: 16px 14px 14px;
  border-radius: 22px;
  background: #fff;
}
.ttl-r-eval-phone-meta {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 650;
  color: #8a95a5;
}
.ttl-r-eval-phone-q {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-eval-phone-opts {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ttl-r-eval-phone-opts li {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e4e7ec;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ttl-r-ink);
  background: #fff;
}
.ttl-r-eval-phone-opts li.is-selected {
  padding-left: 34px;
  border-color: var(--ttl-r-green);
  background: #eef8f0;
  color: var(--ttl-r-green);
}
.ttl-r-eval-phone-check {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 9px;
}
.ttl-r-eval-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 10px;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.ttl-r-eval-result {
  /* width: min(100%, 250px); */
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ecf0;
  box-shadow: 0 14px 34px rgba(15, 23, 40, 0.12);
}
.ttl-r-eval-result-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ttl-r-eval-result-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 17px;
}
.ttl-r-eval-result-head strong {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 750;
  color: var(--ttl-r-ink);
}
.ttl-r-eval-result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ttl-r-eval-result-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ttl-r-ink);
}
.ttl-r-eval-result-list span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttl-r-soft);
  color: var(--ttl-r-green);
  font-size: 11px;
}
.ttl-r-eval-flow {
  list-style: none;
  margin: 0;
  padding: 22px 8px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid #eef1f4;
}
.ttl-r-eval-flow li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-right: 22px;
}
.ttl-r-eval-flow li:not(:last-child)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 14px;
  color: #b0b8c4;
  font-size: 22px;
}
.ttl-r-eval-flow-num {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttl-r-soft);
  color: var(--ttl-r-ink);
  font-size: 20px;
  font-weight: 750;
  flex-shrink: 0;
}
.ttl-r-eval-flow strong {
  display: block;
  margin: 2px 0 4px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-eval-flow span:not(.ttl-r-eval-flow-num) {
  display: block;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ttl-r-muted);
}

@media (max-width: 991px) {
  .ttl-r-eval {
    padding: 36px 0 44px;
  }
  .ttl-r-eval-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .ttl-r-eval-title {
    font-size: 28px;
    max-width: none;
  }
  .ttl-r-eval-lead {
    max-width: none;
  }
  .ttl-r-eval-visual {
    min-height: 0;
    flex-wrap: wrap;
  }
  .ttl-r-eval-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .ttl-r-eval-flow li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ttl-r-eval-title {
    font-size: 24px;
  }
  .ttl-r-eval-lead {
    font-size: 15px;
  }
  .ttl-r-eval-phone {
    width: 220px;
  }
  .ttl-r-eval-result {
    width: 100%;
    max-width: 280px;
  }
  .ttl-r-eval-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ttl-r-eval-flow li {
    padding-right: 0;
  }
  .ttl-r-eval-flow li::after {
    display: none;
  }
}

/* ========== Redesign: assign / upload / records ========== */
.ttl-r-ops {
  --ttl-r-green: #248636;
  --ttl-r-ink: #0f1728;
  --ttl-r-muted: #516075;
  padding: 4px 0 36px;
  background: #fff;
}
.ttl-r-ops-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 18px 32px;
  align-items: center;
  padding: 18px 0;
}
.ttl-r-ops-block + .ttl-r-ops-block {
  border-top: 1px solid #eef1f4;
}
.ttl-r-ops-block--mint {
  padding: 20px 24px;
  margin-bottom: 4px;
  background: #eef8f0;
  border: 1px solid #dcefe1;
  border-radius: 18px;
  border-top: 0;
}
.ttl-r-ops-block--mint + .ttl-r-ops-block {
  border-top: 0;
  padding-top: 22px;
}
.ttl-r-ops-kicker {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttl-r-green);
}
.ttl-r-ops-title {
  margin: 0 0 8px;
  max-width: 28ch;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-ops-lead {
  margin: 0 0 14px;
  max-width: 54ch;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ttl-r-muted);
}
.ttl-r-ops-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff6e8;
  border: 1px solid #f0c48a;
}
.ttl-r-ops-alert-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e08a1e;
  color: #fff;
  font-size: 11px;
  margin-top: 1px;
  line-height: 1;
}
.ttl-r-ops-alert-icon i {
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ttl-r-ops-alert strong {
  display: block;
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 750;
  color: #c56a0a;
}
.ttl-r-ops-alert > div span {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: #c56a0a;
}
.ttl-r-ops-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ttl-r-green);
  border: 1px solid var(--ttl-r-green);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
}
.ttl-r-ops-btn:hover {
  background: #1d6c2c;
  border-color: #1d6c2c;
  color: #fff !important;
}
.ttl-r-ops-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 40, 0.07);
  padding: 12px 14px;
  overflow: hidden;
}
.ttl-r-ops-table--dept {
  display: grid;
  gap: 0;
}
.ttl-r-ops-thead,
.ttl-r-ops-row {
  display: grid;
  align-items: center;
  gap: 16px;
}
.ttl-r-ops-table--dept .ttl-r-ops-thead,
.ttl-r-ops-table--dept .ttl-r-ops-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: start;
  text-align: left;
}
.ttl-r-ops-table--files .ttl-r-ops-thead,
.ttl-r-ops-table--files .ttl-r-ops-row {
  grid-template-columns: minmax(0, 1.5fr) minmax(64px, 0.5fr) minmax(110px, 0.75fr) 24px;
  justify-items: start;
  text-align: left;
}
.ttl-r-ops-thead {
  padding: 0 4px 8px;
  border-bottom: 1px solid #eef1f4;
  font-size: 16px;
  font-weight: 700;
  color: #8a95a5;
}
.ttl-r-ops-row {
  padding: 9px 4px;
  border-bottom: 1px solid #f2f4f7;
  font-size: 16px;
  font-weight: 550;
  color: var(--ttl-r-ink);
}
.ttl-r-ops-row:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}
.ttl-r-ops-dept,
.ttl-r-ops-file {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.ttl-r-ops-table--dept .ttl-r-ops-dept {
  justify-content: flex-start;
}
.ttl-r-ops-table--dept .ttl-r-ops-progress {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}
.ttl-r-ops-dept i,
.ttl-r-ops-file i {
  width: 18px;
  text-align: center;
  color: #516075;
  font-size: 18px;
  flex-shrink: 0;
}
.ttl-r-ops-file--pdf { color: #2f6fed !important; }
.ttl-r-ops-file--ppt { color: #d35400 !important; }
.ttl-r-ops-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ttl-r-green);
}
.ttl-r-ops-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e8ecf0;
  position: relative;
  overflow: hidden;
}
.ttl-r-ops-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--ttl-progress, 0%);
  border-radius: inherit;
  background: var(--ttl-r-green);
}
.ttl-r-ops-bar--warn::after {
  background: #e08a1e;
}
.ttl-r-ops-progress:has(.ttl-r-ops-bar--warn) {
  color: #c56a0a;
}
.ttl-r-ops-more {
  color: #9aa3b2;
  text-align: center;
}
.ttl-r-ops-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ttl-r-ops-learners {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  table-layout: fixed;
}
.ttl-r-ops-learners th,
.ttl-r-ops-learners td {
  width: 20%;
  padding: 8px 12px;
  text-align: left;
  font-size: 15px;
  line-height: 1.3;
  border-bottom: 1px solid #eef1f4;
  white-space: nowrap;
  vertical-align: middle;
}
.ttl-r-ops-learners th {
  font-size: 16px;
  font-weight: 700;
  color: #8a95a5;
}
.ttl-r-ops-learners td {
  font-weight: 600;
  color: var(--ttl-r-ink);
}
.ttl-r-ops-learners tbody tr:last-child td {
  border-bottom: 0;
}
.ttl-r-ops-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.ttl-r-ops-pill--ok {
  background: #e7f6ea;
  color: #1f7a32;
}
.ttl-r-ops-pill--due {
  background: #f8ecd8;
  color: #9a6410;
}
.ttl-r-ops-pill--late {
  background: #f8e4e4;
  color: #b42318;
}

@media (max-width: 991px) {
  .ttl-r-ops-block,
  .ttl-r-ops-block--mint {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ttl-r-ops-title {
    font-size: 23px;
    max-width: none;
  }
  .ttl-r-ops-lead {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .ttl-r-ops {
    padding: 2px 0 32px;
  }
  .ttl-r-ops-block--mint {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .ttl-r-ops-block {
    padding: 16px 0;
  }
  .ttl-r-ops-title {
    font-size: 21px;
  }
  .ttl-r-ops-lead {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .ttl-r-ops-table--dept .ttl-r-ops-thead,
  .ttl-r-ops-table--dept .ttl-r-ops-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ttl-r-ops-table--files .ttl-r-ops-thead,
  .ttl-r-ops-table--files .ttl-r-ops-row {
    grid-template-columns: minmax(0, 1fr) 48px 88px 20px;
    font-size: 13px;
  }
}

/* ========== Redesign: close CTA ========== */
.ttl-r-close {
  --ttl-r-green: #248636;
  --ttl-r-ink: #0f1728;
  --ttl-r-muted: #516075;
  padding: 4px 0 40px;
  background: #fff;
}
.ttl-r-close-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px 28px;
  align-items: center;
  padding: 22px 24px;
  background: #f4f7f8;
  border: 1px solid #e8ecf0;
  border-radius: 18px;
}
.ttl-r-close-title {
  margin: 0 0 14px;
  max-width: 42ch;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ttl-r-ink);
}
.ttl-r-close-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ttl-r-close-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 550;
  color: var(--ttl-r-muted);
}
.ttl-r-close-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttl-r-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.ttl-r-close-cta {
  padding: 22px 22px;
  border-radius: 14px;
  background: #0f1728;
  color: #fff;
}
.ttl-r-close-cta-title {
  margin: 0 0 16px;
  font-size: 29px;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}
.ttl-r-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ttl-r-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ttl-r-green);
  border: 1px solid var(--ttl-r-green);
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
}
.ttl-r-close-btn:hover {
  background: #1d6c2c;
  border-color: #1d6c2c;
  color: #fff !important;
}
.ttl-r-close-btn--ghost {
  background: transparent;
  border-color: var(--ttl-r-green);
  color: var(--ttl-r-green) !important;
}
.ttl-r-close-btn--ghost:hover {
  background: rgba(36, 134, 54, 0.12);
  border-color: var(--ttl-r-green);
  color: var(--ttl-r-green) !important;
}

@media (max-width: 991px) {
  .ttl-r-close-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  .ttl-r-close-title {
    font-size: 24px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .ttl-r-close {
    padding: 2px 0 32px;
  }
  .ttl-r-close-panel {
    padding: 16px;
    border-radius: 14px;
  }
  .ttl-r-close-title {
    font-size: 22px;
  }
  .ttl-r-close-cta {
    padding: 18px 16px;
  }
  .ttl-r-close-cta-title {
    font-size: 16px;
  }
  .ttl-r-close-actions {
    flex-direction: column;
  }
  .ttl-r-close-btn {
    width: 100%;
  }
}
