* {
  font-family: "Inter", Sans-serif;
}
.title {
  font-family: Sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
}
.main-content-width {
  width: 90% !important;
  max-width: 1147px !important;
  margin: auto !important;
  font-family: Inter;
}
.card-title {
  font-family: Sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  color: white;
}
.teach-sub-heading {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
.teach-list-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  padding-bottom: 0.5rem;
}
.list-disc {
  list-style-type: disc;
}
.title-list-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.tm-width {
  width: 15rem;
}
.features-container {
  position: relative;
  background-color: #1e1f21;
  border-radius: 16px;
  padding: 16px;
  z-index: 1;
}
.features-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(134.71deg, #ffffff 8.64%, #666666 101.44%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.lead-div{
    background: linear-gradient(to right, #252b33, #181818);
    border-radius: 16px;
    padding: 20px;
}

/* mobile */
@media (max-width: 767px) {
  .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    vertical-align: middle;
  }
  .card-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
  .tm-width {
    width: 12rem;
  }
  .title-list-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
  .teach-sub-heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
  }
  .teach-list-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
  .youtube-video {
    width: 300px;
    height: 220px;
  }
}

.playlist-item {
  background-color: black;
}

.playlist-item .playlist-title {
  color: white;
}

.playlist-item:hover {
  background-color: white;
}

.playlist-item:hover .playlist-title {
  color: black;
}

@media (min-width: 1024px) {
  #playlist{
    width: 550px;
  }
}
/* Saudi ads page: drop the tm-tfi-max-width bottom padding inside the hardware
   section only (scoped to .ads-hardware-wrap so other pages are unaffected). */
.ads-hardware-wrap .tm-tfi-max-width {
  padding-bottom: 0;
}

/* checklist_two_col (title-part.html macro): plain CSS instead of Tailwind
   grid-cols utilities — those aren't in the prebuilt tm-tailwind.css bundle
   used on this page, so they'd be silently dropped. 2 columns at every width,
   matching the desktop layout. Below lg the half-width column is too narrow
   for the longest item at the shared .title-list-item 16px, so this scopes a
   smaller size to just this component. */
.checklist-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}
@media (max-width: 1023px) {
  .checklist-two-col .title-list-item { font-size: 14px; }
}

/* "Make Every Classroom More Interactive" (interactive-cards.html) and
   "Trusted by Educators. Built for Institutions." (trust-band.html) cards on
   the Saudi digital-smart-board-for-classroom page share the same card look. */
.interactive-cards-grid,
.trust-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.interactive-card,
.trust-band-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .interactive-cards-grid,
  .trust-band-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
