/* Local Tutor Interest Tabs */
.lti-tabs-card {
  --lti-border: #e1ded6;
  --lti-text: #0f172a;
  --lti-muted: #50668a;
  --lti-soft: #f7f5f1;
  --lti-dash: #ded7ce;
  --lti-blue: #1078a7;

  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--lti-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  font-family: inherit;
  color: var(--lti-text);
}

.lti-tabs-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 10px;
  border-bottom: 1px solid var(--lti-border);
  background: #FAF8F5;
}

.lti-tab-button {
  appearance: none;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #626d84;
  cursor: pointer;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  /* line-height: 1.25;
  min-height: 72px; */
  padding: 14px 18px;
  text-align: center;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.lti-tab-button:hover {
  background: rgba(15, 23, 42, 0.035);
	 color: #21242C;
}

.lti-tab-button.is-active {
  background: #fff;
  color: #071229;
  box-shadow: 0 2px 9px rgba(15, 23, 42, 0.16);
  border: 1px solid #e6e1d9;
}

.lti-tabs-panels {
  padding: 52px 48px 48px;
}

.lti-tab-panel h2 {
  margin: 0 0 6px;
  color: #21242C;
  font-family: DM Serif Display;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.lti-subtitle {
  margin: 0 0 30px;
  color: #626D84;
  font-size: 14px;
  font-weight: 400;
}

.lti-embed-wrap {
  border: 2px dashed var(--lti-dash);
  border-radius: 20px;
  min-height: 274px;
  overflow: hidden;
  background: #fff;
}

.lti-form-embed,
.lti-form-embed iframe {
  width: 100%;
}

.lti-form-embed iframe {
  display: block;
  min-height: 560px;
  border: 0;
}

.lti-empty-embed {
  min-height: 274px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 34px;
}

.lti-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e8f7fd;
  color: var(--lti-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lti-empty-embed strong {
  display: block;
  color: #21242C;
  font-size: 14px;
	font-family: Inter;
  font-weight: 500;
}

.lti-empty-embed small {
  display: block;
  max-width: 390px;
  color: #626D84;
  font-size: 12px;
  font-family: Inter;
  font-weight: 400;
  /* line-height: 1.4; */
}

.lti-direct-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid var(--lti-border);
  color: #626D84;
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
}

.lti-open-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 39px;
  padding: 8px 16px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  background: #fff;
  color: #21242C;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  text-decoration: none !important;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  cursor: pointer;
}

.lti-open-button:hover {
  color: #071229;
  background: #f8fafc;
}

.lti-open-button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .lti-tabs-card {
    border-radius: 20px;
  }

  .lti-tabs-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lti-tab-button {
    min-height: auto;
    padding: 14px;
  }

  .lti-tabs-panels {
    padding: 32px 22px 30px;
  }

  .lti-direct-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .lti-open-button {
    width: 100%;
    justify-content: center;
  }
}
