/* Content Variables */
/* Header Variables */
/* Login Variables */
/* Form Variables */
/* Button Variables */
* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

body, html {
  background-color: #f3f4f7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: #474b50;
}

.form {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.form .form-label {
  display: block;
  padding: 20px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #474b50;
}
.form .form-label .muted {
  color: #7d8792;
  font-size: 13px;
  font-weight: 500;
}
.form .form-group {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form .form-group .form-icon-left, .form .form-group .form-icon-right {
  fill: #c1c6cb;
  width: 40px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.form .form-group .form-icon-left {
  left: 0;
}
.form .form-group .form-icon-left + .form-input {
  padding-left: 40px;
}
.form .form-group .form-icon-right {
  right: 0;
}
.form .form-group .form-icon-right + .form-input {
  padding-right: 40px;
}
.form .form-group:focus-within .form-icon-left {
  fill: #98a0a8;
}
.form .form-input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee2e6;
  padding: 0 15px;
  border-radius: 4px;
  outline: 0;
  color: #000;
}
.form .form-input::placeholder {
  color: #98a0a8;
}
.form .form-input:focus {
  box-shadow: 0 0 0 3px #c7def7;
  border: 1px solid #75b3f1;
}
.form .form-link {
  color: #2a77eb;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.form .form-link:hover {
  color: #135ac5;
}
.form #remember_me {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #474b50;
  user-select: none;
}
.form #remember_me input {
  margin: 0 10px 0 0;
  transform: scale(1.1);
  opacity: 0.5;
}
.form #remember_me input:checked {
  opacity: 1;
}
.form p.register-link {
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 14px;
  color: #6b7179;
}
.form div.msg {
  font-size: 14px;
  font-weight: 500;
}
.form div.msg.success {
  padding: 0 0 20px 0;
  color: #0da74d;
}
.form div.msg.success .form-link {
  color: #0b6430;
}
.form div.msg.success .form-link:hover {
  color: #06361a;
}
.form div.msg.error {
  padding: 0 0 20px 0;
  color: #c21e13;
}
.form div.msg.error .form-link {
  color: #74160b;
}
.form div.msg.error .form-link:hover {
  color: #450d07;
}
.form .captcha {
  display: flex;
  padding-bottom: 20px;
}
.form .captcha img {
  min-width: 150px;
}
.form .captcha input {
  height: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .fb-btn, .form .gl-btn, .form .dc-btn, .form .ms-btn {
  display: flex;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  margin: 15px 0 0 0;
  padding: 15px;
  transition: background-color 0.2s;
}
.form .fb-btn svg, .form .gl-btn svg, .form .dc-btn svg, .form .ms-btn svg {
  position: absolute;
  left: 15px;
  fill: #fff;
}
.form .fb-btn:hover, .form .gl-btn:hover, .form .dc-btn:hover, .form .ms-btn:hover {
  color: #fff;
  transition: background-color 0.2s;
}
.form .fb-btn {
  background-color: #507CBF;
}
.form .fb-btn:hover {
  background-color: #426fb4;
}
.form .gl-btn {
  background-color: #d6523e;
}
.form .gl-btn:hover {
  background-color: #cf412c;
}
.form .dc-btn {
  background-color: #4A67CF;
}
.form .dc-btn:hover {
  background-color: #3656ca;
}
.form .ms-btn {
  background-color: #2F2F2F;
}
.form .ms-btn:hover {
  background-color: #222222;
}
.form.form-small {
  max-width: 300px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: #26313d;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 38px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.1);
}
[hidden] {
  display: none !important;
}
.btn:hover {
  background: #202934;
}
.btn.blue {
  background: #2873cf;
}
.btn.blue:hover {
  background: #266cc2;
}
.btn.green {
  background: #4ab46d;
}
.btn.green:hover {
  background: #46a966;
}
.btn.red {
  background: #be4949;
}
.btn.red:hover {
  background: #b74141;
}
.btn.alt {
  color: #75797e;
  border: 1px solid #d4dbde;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.03);
  background: #f1f3f4;
}
.btn.alt:hover {
  background: #eef1f2;
}
.btn.disabled {
  background: #b1b3b4;
}
.btn.disabled:hover {
  background: #a9abad;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.78;
  box-shadow: none;
}
.btn.small {
  padding: 8px 12px;
  font-size: 12px;
}
.btn .loader,
.btn .loader::after {
  width: 15px;
  height: 15px;
}
.btn .loader {
  margin: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.login, .register {
  display: flex;
  flex-flow: column;
  width: 450px;
  max-width: 95%;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 1px rgba(45, 54, 68, 0.05);
  border-radius: 5px;
  margin: 100px auto;
  padding: 35px;
}
.password-recovery {
  width: 500px;
  max-width: calc(100% - 32px);
  margin-top: 80px;
  padding: 38px 36px 34px;
  border: 1px solid #dde6ef;
  border-top: 4px solid #f1ad21;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(31, 45, 61, 0.08);
}
.auth-brand {
  display: flex;
  justify-content: center;
  margin: -6px 0 12px;
}
.auth-brand img {
  display: block;
  width: 178px;
  max-width: 70%;
  height: auto;
}
.login .icon, .register .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 5px auto 0 auto;
  border-radius: 50%;
  background-color: #e2e7ee;
}
.login .icon svg, .register .icon svg {
  fill: #fff;
}
.login h1, .register h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding: 20px 0 10px 0;
  margin: 0;
}
.password-recovery h1 {
  color: #1f2d3d;
  font-size: 25px;
  font-weight: 750;
  padding: 8px 0 18px;
}
.login .btn[type=submit], .register .btn[type=submit] {
  height: 42px;
}
.auth-login {
  width: 460px;
  max-width: calc(100% - 32px);
  margin-top: 74px;
  padding: 38px 36px 34px;
  border: 1px solid #dde6ef;
  border-top: 4px solid #f1ad21;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(31, 45, 61, 0.08);
}
.auth-login .auth-brand {
  display: flex;
  justify-content: center;
  margin: -6px 0 12px;
}
.auth-login .auth-brand img {
  display: block;
  width: 178px;
  max-width: 70%;
  height: auto;
}
.auth-login h1 {
  color: #1f2d3d;
  font-size: 25px;
  font-weight: 750;
  padding: 8px 0 6px;
}
.auth-login .auth-subtitle {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}
.auth-login .form-label {
  padding-top: 18px;
  color: #2f3c49;
}
.auth-login .form-input {
  border-color: #d5dde6;
  background: #fbfcfe;
}
.auth-login .form-input:focus {
  border-color: #2a77eb;
  box-shadow: 0 0 0 4px rgba(42, 119, 235, 0.14);
}
.auth-login .login-options {
  padding: 16px 0 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.auth-login .register-link {
  text-align: center;
}
.form div.msg.login-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
}
.form div.msg.login-message.success {
  color: #0b7e3c;
  background: #ecfbf1;
  border: 1px solid #c8f0d5;
}
.form div.msg.login-message.error {
  color: #aa1f15;
  background: #fff3f2;
  border: 1px solid #f2c6c2;
}
.form .form-help {
  margin: 10px 0 0 0;
  color: #5d6670;
  font-size: 14px;
  line-height: 1.5;
}
.reset-code-input {
  height: 52px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  text-align: center;
  color: #1f2d3d;
}
.password-recovery .form-label {
  padding-top: 18px;
  color: #2f3c49;
}
.password-recovery .form-input {
  border-color: #d5dde6;
  background: #fbfcfe;
}
.password-recovery .form-input:focus {
  border-color: #2a77eb;
  box-shadow: 0 0 0 4px rgba(42, 119, 235, 0.14);
}
.reset-info-panel {
  display: grid;
  gap: 6px;
  margin: 4px 0 4px;
  padding: 14px 16px;
  border: 1px solid #dbe7f3;
  border-left: 4px solid #2a77eb;
  border-radius: 8px;
  background: #f6faff;
  color: #314155;
}
.reset-info-panel strong {
  color: #1f2d3d;
  font-size: 14px;
}
.reset-info-panel span {
  color: #5d6670;
  font-size: 14px;
  line-height: 1.45;
}
.reset-info-panel.centered {
  text-align: center;
  border-left-width: 1px;
}
.reset-info-panel.success-panel {
  border-color: #c8f0d5;
  border-top: 3px solid #18a957;
  border-left-width: 1px;
  background: #f1fbf5;
}
.reset-info-panel.success-panel strong {
  color: #0b7e3c;
}
.reset-done {
  gap: 14px;
}
.reset-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
}
.reset-secondary-actions form {
  margin: 0;
}
.reset-secondary-actions .btn,
.reset-login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  text-decoration: none;
}
.password-recovery .btn {
  height: 44px;
  border-radius: 6px;
}
.password-recovery .btn.alt {
  background: #f7f9fc;
  color: #31506f;
  border-color: #d4dfeb;
  box-shadow: none;
}
.password-recovery .btn.alt:hover {
  background: #eef4fb;
}
.recovery-msg {
  margin: 0 0 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
}
.form div.msg.recovery-msg.success {
  padding: 12px 14px;
  color: #0b7e3c;
  background: #ecfbf1;
  border: 1px solid #c8f0d5;
}
.form div.msg.recovery-msg.error {
  padding: 12px 14px;
  color: #aa1f15;
  background: #fff0ef;
  border: 1px solid #ffd1cd;
}
.reset-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 5px auto;
  border-radius: 50%;
  background: #e7f8ee;
  color: #0b8f43;
}
.reset-success-icon svg {
  fill: currentColor;
}
.reset-step-icon {
  width: 62px;
  height: 62px;
  margin-top: 2px;
  margin-bottom: 6px;
}
.reset-warning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 5px auto;
  border-radius: 50%;
  background: #fff2e0;
  color: #b45f00;
}
.reset-warning-icon svg {
  fill: currentColor;
}
.reset-centered-text {
  text-align: center;
  margin-bottom: 22px;
}
.reset-text-link {
  margin: 0;
  text-align: center;
}

.header {
  background-color: #fff;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid #dde3ea;
  box-shadow: 0 4px 16px rgba(38, 49, 61, 0.05);
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}
.header .wrapper h1, .header .wrapper a, .header .wrapper label {
  display: inline-flex;
  align-items: center;
}
.header .wrapper h1 {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: #1f2a36;
  font-weight: 700;
}
.header .wrapper label, .header .wrapper input[type=checkbox] {
  display: none;
}
.header .wrapper label {
  cursor: pointer;
  position: relative;
  height: 40px;
  width: 50px;
  text-decoration: none;
  margin-right: 5px;
  border-radius: 5px;
}
.header .wrapper label::before, .header .wrapper label::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background-color: #616b78;
}
.header .wrapper label::after {
  top: 26px;
}
.header .wrapper label:hover, .header .wrapper label:active, .header .wrapper input[type=checkbox]:checked ~ label {
  background-color: #eef2f7;
}
.header .wrapper label:hover::before, .header .wrapper label:hover::after, .header .wrapper label:active::before, .header .wrapper label:active::after, .header .wrapper input[type=checkbox]:checked ~ label::before, .header .wrapper input[type=checkbox]:checked ~ label::after {
  background-color: #798493;
}
.header .wrapper .menu {
  display: flex;
  align-items: center;
}
.header .wrapper .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 15px;
  padding: 0 14px;
  margin: 0 3px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.header .wrapper .menu a svg {
  fill: #87919e;
  margin: 2px 8px 0 0;
}
.header .wrapper .menu a.alt {
  color: #334155;
}
.header .wrapper .menu a.alt svg {
  fill: #334155;
}
.header .wrapper .menu a:hover, .header .wrapper .menu a:active, .header .wrapper .menu a.active {
  color: #1f2a36;
  background-color: #eef6ff;
}
.header .wrapper .menu a:hover svg, .header .wrapper .menu a:active svg, .header .wrapper .menu a.active svg {
  fill: #1f2a36;
}
.header .wrapper .menu a:last-child {
  margin-right: 0;
}

.content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.content .page-title {
  display: flex;
  align-items: center;
  padding: 25px 0 10px 0;
}
.content .page-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3dc4ad;
  color: #FFFFFF;
  margin-right: 20px;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  min-height: 55px;
  min-width: 55px;
}
.content .page-title .icon svg {
  fill: #fff;
}
.content .page-title h2 {
  margin: 0;
  padding: 0 0 7px 0;
  font-size: 20px;
  font-weight: 600;
  color: #53585e;
}
.content .page-title p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #777e86;
}
.content .block {
  box-shadow: 0px 0px 7px 1px rgba(45, 54, 68, 0.05);
  margin: 25px 0;
  padding: 25px;
  border-radius: 5px;
  background-color: #fff;
}
.content .block p {
  padding: 7px;
  margin: 0;
}
.content .profile-detail {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  padding: 5px 30px;
}
.content .profile-detail strong {
  display: block;
  color: #92979e;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.pad-1 {
  padding: 5px;
}

.mar-1 {
  margin: 5px;
}

.pad-2 {
  padding: 10px;
}

.mar-2 {
  margin: 10px;
}

.pad-3 {
  padding: 15px;
}

.mar-3 {
  margin: 15px;
}

.pad-4 {
  padding: 20px;
}

.mar-4 {
  margin: 20px;
}

.pad-5 {
  padding: 25px;
}

.mar-5 {
  margin: 25px;
}

.pad-bot-1 {
  padding-bottom: 5px;
}

.pad-top-1 {
  padding-top: 5px;
}

.pad-left-1 {
  padding-left: 5px;
}

.pad-right-1 {
  padding-right: 5px;
}

.pad-x-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-y-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.mar-bot-1 {
  margin-bottom: 5px;
}

.mar-top-1 {
  margin-top: 5px;
}

.mar-left-1 {
  margin-left: 5px;
}

.mar-right-1 {
  margin-right: 5px;
}

.mar-x-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mar-y-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pad-bot-2 {
  padding-bottom: 10px;
}

.pad-top-2 {
  padding-top: 10px;
}

.pad-left-2 {
  padding-left: 10px;
}

.pad-right-2 {
  padding-right: 10px;
}

.pad-x-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-y-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mar-bot-2 {
  margin-bottom: 10px;
}

.mar-top-2 {
  margin-top: 10px;
}

.mar-left-2 {
  margin-left: 10px;
}

.mar-right-2 {
  margin-right: 10px;
}

.mar-x-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-y-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pad-bot-3 {
  padding-bottom: 15px;
}

.pad-top-3 {
  padding-top: 15px;
}

.pad-left-3 {
  padding-left: 15px;
}

.pad-right-3 {
  padding-right: 15px;
}

.pad-x-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.pad-y-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mar-bot-3 {
  margin-bottom: 15px;
}

.mar-top-3 {
  margin-top: 15px;
}

.mar-left-3 {
  margin-left: 15px;
}

.mar-right-3 {
  margin-right: 15px;
}

.mar-x-3 {
  margin-left: 15px;
  margin-right: 15px;
}

.mar-y-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pad-bot-4 {
  padding-bottom: 20px;
}

.pad-top-4 {
  padding-top: 20px;
}

.pad-left-4 {
  padding-left: 20px;
}

.pad-right-4 {
  padding-right: 20px;
}

.pad-x-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-y-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mar-bot-4 {
  margin-bottom: 20px;
}

.mar-top-4 {
  margin-top: 20px;
}

.mar-left-4 {
  margin-left: 20px;
}

.mar-right-4 {
  margin-right: 20px;
}

.mar-x-4 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-y-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pad-bot-5 {
  padding-bottom: 25px;
}

.pad-top-5 {
  padding-top: 25px;
}

.pad-left-5 {
  padding-left: 25px;
}

.pad-right-5 {
  padding-right: 25px;
}

.pad-x-5 {
  padding-left: 25px;
  padding-right: 25px;
}

.pad-y-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.mar-bot-5 {
  margin-bottom: 25px;
}

.mar-top-5 {
  margin-top: 25px;
}

.mar-left-5 {
  margin-left: 25px;
}

.mar-right-5 {
  margin-right: 25px;
}

.mar-x-5 {
  margin-left: 25px;
  margin-right: 25px;
}

.mar-y-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
  .login, .register {
    margin: 20px auto;
    padding: 25px;
  }
  .password-recovery {
    margin: 18px auto;
    padding: 30px 22px 26px;
  }
  .auth-login {
    margin: 18px auto;
    padding: 30px 22px 26px;
  }
  .header .wrapper {
    width: 100%;
  }
  .header .wrapper h1 {
    font-size: 18px;
    padding: 15px;
  }
  .header .wrapper label {
    display: inline-flex;
  }
  .header .wrapper .menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    flex-flow: column;
    background-color: #fff;
    border-bottom: 1px solid #dde3ea;
    box-shadow: 0 14px 24px rgba(38, 49, 61, 0.08);
    justify-items: flex-start;
    align-items: flex-start;
    padding: 10px;
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu {
    display: flex;
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu a {
    justify-content: flex-start;
    width: 100%;
    padding: 25px;
  }
  .content {
    width: 100%;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 480px) {
  .reset-secondary-actions {
    grid-template-columns: 1fr;
  }
  .auth-brand img {
    width: 150px;
  }
  .auth-login h1 {
    font-size: 22px;
  }
  .auth-login .login-options {
    align-items: flex-start;
    gap: 10px;
  }
  .password-recovery h1 {
    font-size: 22px;
  }
  .reset-code-input {
    letter-spacing: 5px;
  }
}

.learn-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 22px 0;
  min-height: 190px;
  padding: 30px 34px;
  background: #ffffff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(38, 49, 61, 0.05);
  position: relative;
  overflow: hidden;
}
.learn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42,119,235,0.08), rgba(11,125,65,0.05) 46%, transparent 72%),
    radial-gradient(circle at 10% 10%, rgba(42,119,235,0.08), transparent 28%);
  opacity: .9;
  pointer-events: none;
}
.learn-hero > * {
  position: relative;
  z-index: 1;
}
.learn-hero h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #26313d;
}
.learn-hero p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #65717f;
}
.learn-kicker {
  margin: 0 0 8px !important;
  color: #2a77eb !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.learn-hero-stats, .program-meta, .program-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.learn-hero-stats span, .attempt-pill, .status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: #edf3fa;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}
.status-pill.done {
  background: #e4f7ed;
  color: #0b7d41;
}
.status-pill.failed {
  background: #fff1f0;
  color: #a5271d;
}
.learn-section {
  margin: 24px 0;
}
.learn-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.learn-section-head h3, .learn-panel h3, .lesson-block h3 {
  font-size: 20px;
  color: #26313d;
}
.learn-empty {
  padding: 22px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  color: #64748b;
  background: #fff;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.program-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.program-card:hover {
  border-color: #8db8f1;
  box-shadow: 0 10px 24px rgba(38, 49, 61, 0.08);
  transform: translateY(-1px);
}
.program-card h4 {
  color: #26313d;
  font-size: 19px;
}
.program-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}
.progress-line {
  width: 100%;
  height: 9px;
  overflow: hidden;
  background: #edf2f7;
  border-radius: 8px;
}
.progress-line span {
  display: block;
  height: 100%;
  background: #2a77eb;
}
.program-meta span {
  color: #65717f;
  font-size: 13px;
  font-weight: 600;
}

.learn-main {
  display:flex;
  flex-direction: column;
  gap:16px;
}
.program-progress-ring {
  --progress: 0%;
  display: grid;
  place-items: center;
  width: 128px;
  min-width:128px;
  height: 128px;
  padding: 32px 0px;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle closest-side, #fff 77%, transparent 78% 100%),
    conic-gradient(#2a77eb var(--progress), #e5eefb 0);
  box-shadow: 0 10px 22px rgba(42, 119, 235, 0.10), inset 0 0 0 1px rgba(255,255,255,.7);
  animation: progress-pop .55s ease-out both;
  position: relative;
}
.program-progress-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(42, 119, 235, 0.10);
}
.program-progress-ring strong {
  font-size: 26px;
  color: #26313d;
  line-height: 1;
}
.program-progress-ring span {
  max-width: 90px;
  color: #64748b;
  font-size: 13px;
  margin-top: 8px;
}
.learn-layout, .lesson-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.learn-panel, .lesson-block, .exam-form {
  padding: 22px;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(38, 49, 61, 0.04);
}
.curriculum-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.curriculum-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}
.curriculum-item.locked {
  opacity: 0.6;
}
.curriculum-status {
  color: #2a77eb;
  font-size: 13px;
  font-weight: 800;
}
.curriculum-item h4 {
  font-size: 17px;
  color: #26313d;
}
.curriculum-item p, .curriculum-item span {
  display: block;
  margin: 5px 0 0;
  color: #65717f;
  font-size: 14px;
}
.attempt-history {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.attempt-history span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #f4f7fb;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}
.attempt-history span.passed {
  background: #e4f7ed;
  color: #0b7d41;
}
.attempt-history span.failed {
  background: #fff1f0;
  color: #a5271d;
}
.practical-attempt-history {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.attempt-history span.practical-attempt {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  border: 1px solid #dbe3ee;
}
.attempt-history span.practical-attempt strong,
.attempt-history span.practical-attempt small {
  font-size: 12px;
}
.attempt-history span.running {
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  border: 1px solid #f2d98d;
  background: #fff8e5;
  color: #6f4e00;
}
.attempt-history span.running::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--exam-progress, 0%);
  height: 3px;
  background: #f2a90b;
}
.attempt-history span.running em {
  font-style: normal;
}
.attempt-history span.running small {
  font-size: 12px;
  font-weight: 700;
  opacity: .82;
}
.practical-exam-panel {
  display: grid;
  gap: 16px;
}
.practical-current {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  background: #f5f9fe;
}
.practical-current strong {
  color: #142235;
  font-size: 14px;
}
.practical-current span {
  color: #526176;
  font-size: 14px;
}
.practical-current form {
  margin-top: 8px;
}
.practical-slot-list {
  display: grid;
  gap: 10px;
}
.practical-slot-info {
  padding: 14px 16px;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  background: #f8fbff;
}
.practical-slot-info h4 {
  margin: 0 0 8px;
  color: #142235;
  font-size: 15px;
}
.practical-slot-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.practical-slot-card:hover {
  border-color: #b8d8ff;
  background: #f8fbff;
}
.practical-slot-card input {
  margin-top: 5px;
}
.practical-slot-card > span {
  display: grid;
  gap: 4px;
}
.practical-slot-card strong {
  color: #142235;
}
.practical-slot-card small {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.practical-slot-card .rich-content {
  grid-column: 2;
}
.practical-slot-details {
  grid-column: 2;
}
.practical-slot-details summary {
  color: #2a77eb;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.practical-slot-details .rich-content {
  margin-top: 8px;
}
.practical-slot-card.disabled {
  opacity: .55;
  cursor: not-allowed;
}
.learn-notices {
  display: grid;
  gap: 10px;
  margin: 18px 0 8px;
}
.learn-notices.in-panel {
  margin-top: 0;
}
.learn-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #f1d18d;
  border-radius: 8px;
  background: #fff8e8;
  color: #2f3c49;
}
.learn-notice strong {
  display: block;
  color: #8a5a05;
  font-size: 13px;
  text-transform: uppercase;
}
.learn-notice p {
  margin: 4px 0;
  color: #253244;
  line-height: 1.45;
}
.learn-notice small {
  color: #7a8796;
  font-weight: 700;
}
.learn-notice form {
  flex: 0 0 auto;
}
.back-link {
  display: inline-flex;
  margin-bottom: 10px;
  color: #2a77eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.lesson-shell {
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 24px;
  margin-top: 28px;
}
.lesson-side {
  position: sticky;
  top: 20px;
  padding: 22px;
  background: #fff;
  border-radius: 8px;
  color: #1f2a36;
  box-shadow: 0 14px 32px rgba(38, 49, 61, 0.08);
  border: 1px solid #dde3ea;
}
.lesson-side h3 {
  color: #1f2a36;
  font-size: 18px;
}
.lesson-side p {
  color: #64748b;
}
.legacy-nav-hidden {
  display: none;
}
.course-mini-head {
  margin-bottom: 18px;
}
.course-mini-head .learn-kicker {
  margin: 0 0 6px;
}
.course-mini-section {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.course-mini-section > strong {
  color: #334155;
  font-size: 13px;
}
.course-mini-list {
  display: grid;
  gap: 8px;
}
.course-mini-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 3px 10px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2a36;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.course-mini-item:hover {
  background: #eef6ff;
  border-color: #b8d8ff;
  transform: translateX(2px);
}
.course-mini-item.active {
  background: #eef6ff;
  color: #1f2a36;
  border-color: #7db4f4;
  box-shadow: inset 3px 0 0 #2a77eb;
}
.course-mini-item.locked {
  background: #f5f7fa;
  color: #94a3b8;
}
.course-mini-item span {
  grid-row: span 2;
  color: #7db4f4;
  font-size: 12px;
  font-weight: 800;
}
.course-mini-item.active span {
  color: #2a77eb;
}
.course-mini-item.done span {
  color: #0b7d41;
}
.course-mini-item b {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course-mini-item small {
  color: inherit;
  font-size: 12px;
  opacity: .72;
}
.lesson-nav {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}
.lesson-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  font-weight: 700;
  transition: background .16s ease, transform .16s ease;
}
.lesson-nav a:hover {
  background: rgba(255,255,255,.14);
  transform: translateX(2px);
}
.lesson-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.lesson-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(38, 49, 61, 0.04);
}
.lesson-title h2 {
  font-size: 28px;
}
.learn-alert {
  padding: 14px 16px;
  background: #fff1f0;
  border: 1px solid #ffc7c2;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #a5271d;
  font-weight: 700;
}
.learn-alert.success {
  background: #e4f7ed;
  border-color: #b8e9ce;
  color: #0b7d41;
}
.learn-alert.timer {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff8e5;
  border-color: #f2d98d;
  color: #6f4e00;
}
.learn-alert.timer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--exam-progress, 0%);
  height: 3px;
  background: #f2a90b;
}
.status-pill.running {
  background: #fff8e5;
  color: #6f4e00;
  border-color: #f2d98d;
}
.lesson-copy {
  color: #334155;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.rich-content {
  color: #334155;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.rich-content.compact {
  margin-top: 6px;
  color: #65717f;
  font-size: 14px;
}
.rich-content > :first-child {
  margin-top: 0;
}
.rich-content > :last-child {
  margin-bottom: 0;
}
.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote,
.rich-content table {
  margin: 0 0 12px;
}
.rich-content ul,
.rich-content ol {
  padding-left: 22px;
}
.rich-content a {
  color: #1d62c9;
  font-weight: 700;
}
.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.rich-content table {
  width: 100%;
  border-collapse: collapse;
}
.rich-content td,
.rich-content th {
  padding: 8px;
  border: 1px solid #dfe5ee;
}
.secure-video video {
  display: block;
  width: 100%;
  max-height: 70vh;
  background: #0f172a;
  border-radius: 8px;
}
.video-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  color: #64748b;
}
.quiz-list {
  display: grid;
  gap: 12px;
}
.learner-step[hidden],
.quiz-question[hidden] {
  display: none !important;
}
.quiz-question {
  display: grid;
  gap: 12px;
}
.quiz-question p,
.quiz-question .question-copy {
  margin: 0;
  font-weight: 700;
  color: #26313d;
}
.quiz-threshold {
  margin: 0 0 12px;
  color: #64748b;
  font-weight: 700;
}
.quiz-feedback-wrap {
  display: grid;
  gap: 14px;
}
.quiz-feedback {
  padding: 20px;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(38, 49, 61, 0.04);
}
.quiz-feedback.passed {
  border-color: #b8e9ce;
}
.quiz-feedback.failed {
  border-color: #ffc7c2;
}
.quiz-feedback-head, .quiz-score-row, .quiz-review-title, .quiz-result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.quiz-feedback-head h3 {
  margin: 0;
  color: #26313d;
  font-size: 22px;
}
.quiz-score-row {
  justify-content: flex-start;
  margin: 14px 0;
}
.quiz-score-row strong {
  color: #26313d;
  font-size: 28px;
}
.quiz-score-row span {
  padding: 7px 10px;
  border-radius: 6px;
  background: #f4f7fb;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}
.quiz-review-list {
  display: grid;
  gap: 10px;
}
.quiz-review-item {
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}
.quiz-review-item.correct {
  background: #f0fbf5;
  border-color: #c7edd8;
}
.quiz-review-item.wrong {
  background: #fff7f6;
  border-color: #ffd2ce;
}
.quiz-review-title span {
  font-size: 13px;
  font-weight: 800;
}
.quiz-review-item.correct .quiz-review-title span {
  color: #0b7d41;
}
.quiz-review-item.wrong .quiz-review-title span {
  color: #a5271d;
}
.quiz-review-item p {
  margin: 8px 0 0;
  color: #475569;
}
.quiz-result-actions {
  justify-content: flex-start;
  margin-top: 16px;
}
.quiz-retry-note {
  margin: 14px 0 0;
  color: #64748b;
  font-weight: 700;
}
.answer-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.answer-row:hover {
  background: #f8fafc;
}
.answer-row:has(input:checked) {
  background: #eef6ff;
  border-color: #7db4f4;
  box-shadow: inset 3px 0 0 #2a77eb;
}
.answer-row .answer-body {
  display: grid;
  gap: 8px;
}
.answer-image {
  width: min(220px, 100%);
  max-height: 160px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.lesson-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: 18px;
  padding: 12px 0 0;
  background: linear-gradient(180deg, rgba(241,245,249,0), #f4f6f9 35%);
}
.question-step-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
}
.question-step-controls span {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}
.btn.alt {
  background: #eef2f7;
  color: #26313d;
}
.question-image, .quiz-question img {
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

@media screen and (max-width: 900px) {
  .learn-hero, .lesson-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .program-progress-ring {
    width: 110px;
    height: 110px;
  }
  .lesson-shell {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .lesson-side {
    position: static;
  }
  .curriculum-item {
    grid-template-columns: 1fr;
  }
  .lesson-actions, .question-step-controls {
    justify-content: stretch;
  }
  .lesson-actions .btn, .question-step-controls .btn {
    flex: 1 1 160px;
  }
  .learn-notice {
    align-items: stretch;
    flex-direction: column;
  }
  .learn-notice form,
  .learn-notice .btn {
    width: 100%;
  }
}

@keyframes progress-pop {
  from {
    opacity: 0;
    transform: scale(.9) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.invite-page {
  min-height: 100vh;
  padding: 48px 18px;
  background: #f4f6f9;
}
.invite-card {
  width: min(980px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
  padding: 28px;
}
.invite-header {
  border-bottom: 1px solid #e6edf5;
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.invite-header h1 {
  margin: 4px 0 8px;
  color: #111827;
}
.eyebrow {
  margin: 0;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.muted {
  color: #64748b;
}
.invite-alert {
  border-radius: 8px;
  padding: 13px 15px;
  margin: 14px 0;
  font-weight: 700;
}
.invite-alert.error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}
.invite-alert.success {
  border: 1px solid #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}
.invite-section {
  margin-top: 20px;
}
.invite-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
}
.invite-programs {
  display: grid;
  gap: 10px;
}
.invite-program {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  background: #f8fafc;
}
.invite-program span {
  color: #64748b;
}
.invite-auth {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) 1.25fr;
  gap: 20px;
  align-items: start;
}
.invite-form label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-weight: 700;
  margin-bottom: 14px;
}
.invite-form input {
  min-height: 42px;
  border: 1px solid #cfd9e6;
  border-radius: 7px;
  padding: 9px 11px;
  color: #111827;
  background: #fff;
  font: inherit;
}
.invite-form input:focus {
  border-color: #2563eb;
  outline: 3px solid rgba(37, 99, 235, .14);
}
.invite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.invite-grid .wide {
  grid-column: 1 / -1;
}

.certificate-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid #bbf7d0;
  border-left: 5px solid #16a34a;
  border-radius: 8px;
  background: #f0fdf4;
  box-shadow: 0 8px 18px rgba(38, 49, 61, .04);
}
.certificate-summary.revoked,
.certificate-summary.expired,
.certificate-summary.invalid {
  border-color: #fecaca;
  border-left-color: #dc2626;
  background: #fff1f2;
}
.certificate-summary-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.certificate-summary-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.certificate-label,
.certificate-summary small {
  color: #64748b;
}
.certificate-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.certificate-summary strong {
  color: #0f172a;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.certificate-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: #dcfce7;
  color: #047857;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.certificate-status.revoked,
.certificate-status.expired,
.certificate-status.invalid {
  background: #fee2e2;
  color: #b91c1c;
}
.certificate-check {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}
.program-certificate-link {
  margin-top: 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.certificate-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #e9eef5;
}
.certificate-card {
  position: relative;
  overflow: hidden;
  width: min(920px, 100%);
  padding: 34px 38px 36px;
  border: 1px solid #d8e1ee;
  border-top: 8px solid #f1ad21;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
  text-align: left;
}
.certificate-card.revoked,
.certificate-card.expired,
.certificate-card.invalid {
  border-top-color: #dc2626;
}
.certificate-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: #0d203a;
}
.certificate-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e2e8f0;
}
.certificate-hero-main {
  min-width: 0;
}
.certificate-brand-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.certificate-title-block {
  min-width: 0;
}
.certificate-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}
.certificate-title-row h1 {
  min-width: 0;
}
.certificate-hero-rule {
  width: 100%;
  height: 2px;
  margin: 18px 0 30px;
  border-radius: 999px;
  background: #0f172a;
}
.certificate-hero .certificate-identity {
  margin: 0;
}
.certificate-hero > .certificate-issuer-details {
  align-self: start;
}
.certificate-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 320px);
  gap: 18px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.certificate-header-side {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: 0;
}
.certificate-kicker {
  margin: 0 0 5px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.certificate-logo {
  width: 168px;
  max-width: 100%;
  height: auto;
}
.certificate-card h1 {
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.12;
}
.certificate-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
}
.certificate-state.revoked,
.certificate-state.expired,
.certificate-state.invalid {
  border-color: #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}
.certificate-identity {
  position: relative;
  z-index: 1;
  margin: 28px 0 18px;
}
.certificate-identity span,
.certificate-program > span,
.certificate-program-meta span,
.certificate-issuer-details span,
.certificate-public-link span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.certificate-identity strong {
  display: block;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.15;
}
.certificate-program {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid #dbe5f2;
  border-radius: 6px;
  background: #f8fbff;
}
.certificate-program > strong {
  display: block;
  max-width: 760px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.45;
}
.certificate-program-description {
  margin-top: 0;
  max-width: none;
  color: #334155;
  font-size: 12px;
  line-height: 1.55;
}
.certificate-program-description p {
  margin: 0 0 8px;
  font-size: 12px;
}
.certificate-program-description ul,
.certificate-program-description ol {
  margin: 8px 0 8px 20px;
  padding: 0;
  font-size: 12px;
}
.certificate-program-description li + li {
  margin-top: 4px;
  font-size: 12px;
}
.certificate-program-description strong,  .certificate-program-description li strong {
  color: #0f172a;
  font-size: 12px;
}
.certificate-program-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.certificate-program-meta > div {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
}
.certificate-program-meta > .certificate-program-meta-wide {
  grid-column: 1/-1;
}
.certificate-program-meta > div > strong {
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.certificate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 12px;
  text-align: left;
}
.certificate-grid .span-2 {
  grid-column: span 2;
}
.certificate-grid div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
}
.certificate-grid span {
  display: block;
  margin-bottom: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.certificate-grid strong {
  color: #0f172a;
  overflow-wrap: anywhere;
}
.certificate-warning {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fff1f2;
  color: #991b1b;
  font-weight: 700;
}
.certificate-public-link {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #dbe5f2;
  border-radius: 6px;
  background: #fff;
}
.certificate-issuer-details {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 390px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.certificate-issuer-details > span {
  margin: 0 0 8px;
  padding: 0;
  color: #536173;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.certificate-issuer-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.certificate-issuer-copy p {
  margin: 0;
  color: #536173;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.certificate-public-link a {
  color: #155bb5;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.certificate-public-link a:hover {
  text-decoration: underline;
}
.certificate-empty {
  position: relative;
  z-index: 1;
  margin: 24px 0 10px;
  color: #475569;
  font-size: 17px;
}
.certificate-downloads {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.certificate-downloads a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.certificate-downloads a:hover {
  background: #eef6ff;
  border-color: #93c5fd;
}

@media screen and (max-width: 760px) {
  .invite-card {
    padding: 20px;
  }
  .invite-auth, .invite-grid {
    grid-template-columns: 1fr;
  }
  .invite-program {
    flex-direction: column;
  }
  .certificate-summary {
    align-items: stretch;
    flex-direction: column;
  }
  .certificate-summary-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .certificate-card {
    padding: 26px 18px 32px;
  }
  .certificate-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .certificate-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .certificate-brand-line {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .certificate-title-row {
    align-items: flex-start;
    display: flex;
    gap:16px;
  }
  .certificate-hero-rule {
    margin: 16px 0 22px;
  }
  .certificate-hero > .certificate-issuer-details {
    margin-top: 0;
  }
  .certificate-header-side {
    justify-items: start;
  }
  .certificate-card h1 {
    font-size: 28px;
  }
  .certificate-logo {
    width: 150px;
  }
  .certificate-identity strong {
    font-size: 26px;
  }
  .certificate-program-meta {
    grid-template-columns: 1fr;
  }
  .certificate-issuer-details {
    max-width: none;
  }
  .certificate-grid {
    grid-template-columns: 1fr;
  }
  .certificate-grid .span-2 {
    grid-column: auto;
  }
}

/* Learner polish */
body, html {
  color: #172033;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  height: auto;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #dbe3ee;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
  backdrop-filter: blur(10px);
}
.header .wrapper {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  gap: 18px;
}
.header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.header .brand img {
  display: block;
  width: 178px;
  height: auto;
}
.header .brand span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 12px;
  border-left: 1px solid #dbe3ee;
  color: #155bb5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.header .wrapper .menu {
  gap: 6px;
}
.header .wrapper .menu a {
  min-height: 38px;
  height: auto;
  margin: 0;
  padding: 0 14px;
  border-radius: 8px;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}
.header .wrapper .menu a svg {
  flex: 0 0 auto;
  margin: 0 8px 0 0;
}
.header .wrapper .menu a:hover,
.header .wrapper .menu a:active,
.header .wrapper .menu a.active {
  background: #eef6ff;
  color: #0f2f5f;
  box-shadow: inset 0 0 0 1px #d8eafe;
}
.header .wrapper .menu a.alt {
  color: #1f2a36;
}
.header .wrapper .menu a.alt:hover {
  background: #fff7e8;
  box-shadow: inset 0 0 0 1px #f3d597;
}
.header .wrapper label.menu-button {
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #f8fafc;
}
.header .wrapper label.menu-button span,
.header .wrapper label.menu-button::before,
.header .wrapper label.menu-button::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  width: auto;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #334155;
  transition: transform .16s ease, opacity .16s ease, top .16s ease;
}
.header .wrapper label.menu-button span {
  top: 20px;
}
.header .wrapper label.menu-button::before {
  top: 13px;
}
.header .wrapper label.menu-button::after {
  top: 27px;
}
.header .wrapper input[type=checkbox]:checked ~ label.menu-button {
  background: #eef6ff;
  border-color: #b8d8ff;
}
.header .wrapper input[type=checkbox]:checked ~ label.menu-button span {
  opacity: 0;
}
.header .wrapper input[type=checkbox]:checked ~ label.menu-button::before {
  top: 20px;
  transform: rotate(45deg);
}
.header .wrapper input[type=checkbox]:checked ~ label.menu-button::after {
  top: 20px;
  transform: rotate(-45deg);
}
.content {
  width: min(1180px, calc(100% - 32px));
  padding: 18px 0 42px;
}
.content .page-title {
  padding: 22px 0 14px;
}
.content .block {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}
.learn-hero {
  min-height: 176px;
  margin: 8px 0 24px;
  padding: 34px 36px;
  border: 1px solid #d9e4f2;
  border-top: 4px solid #f1ad21;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}
.learn-hero::before {
  background: linear-gradient(90deg, rgba(42,119,235,.09), rgba(10,169,165,.06) 48%, rgba(241,173,33,.04));
}
.learn-hero h2 {
  color: #142235;
  font-size: 34px;
  font-weight: 800;
}
.learn-hero p {
  color: #5f6d7d;
  font-size: 15px;
}
.learn-kicker {
  color: #155bb5 !important;
  letter-spacing: 0;
}
.learn-section {
  margin: 28px 0;
}
.learn-section-head {
  margin-bottom: 14px;
}
.learn-section-head h3,
.learn-panel h3,
.lesson-block h3 {
  color: #142235;
  font-size: 21px;
  font-weight: 800;
}
.program-grid {
  gap: 18px;
}
.program-card,
.learn-panel,
.lesson-block,
.exam-form {
  border-color: #dbe3ee;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}
.program-card {
  min-height: 176px;
  padding: 22px;
}
.program-card h4 {
  color: #142235;
  font-size: 20px;
  line-height: 1.32;
}
.program-card.finished {
  min-height: 158px;
}
.program-certificate-link {
  margin-top: auto;
  color: #155bb5;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.status-pill,
.attempt-pill,
.learn-hero-stats span {
  border-radius: 6px;
  font-size: 13px;
}
.progress-line {
  height: 8px;
  margin-top: auto;
}
.progress-line span {
  background: linear-gradient(90deg, #155bb5, #0aa9a5);
}
.program-meta {
  gap: 8px 14px;
}
.program-meta span {
  line-height: 1.45;
}
.curriculum-item {
  border-color: #dbe3ee;
  border-radius: 8px;
}

@media screen and (max-width: 1000px) {
  .header {
    min-height: 68px;
  }
  .header .wrapper {
    width: 100%;
    min-height: 68px;
    padding: 10px 14px;
    flex-wrap: wrap;
  }
  .header .brand {
    flex: 1 1 auto;
  }
  .header .brand img {
    width: 146px;
    max-width: calc(100vw - 92px);
  }
  .header .brand span {
    display: none;
  }
  .header .wrapper label.menu-button {
    display: inline-flex;
  }
  .header .wrapper .menu {
    position: static;
    display: none;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    margin: 8px 0 0;
    padding: 8px;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu {
    display: grid;
    gap: 4px;
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu a,
  .header .wrapper .menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
  }
  .content {
    width: 100%;
    padding: 16px;
  }
}

@media screen and (max-width: 640px) {
  .content {
    padding: 12px;
  }
  .learn-hero {
    gap: 16px;
    min-height: 0;
    margin: 4px 0 22px;
    padding: 24px 18px;
  }
  .learn-hero h2 {
    font-size: 27px;
  }
  .learn-hero-stats {
    width: 100%;
  }
  .learn-hero-stats span {
    flex: 1 1 120px;
    justify-content: center;
  }
  .program-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .program-card,
  .learn-panel,
  .lesson-block,
  .exam-form,
  .content .block {
    padding: 18px;
  }
  .program-card h4 {
    font-size: 18px;
  }
  .program-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .content .page-title {
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
  }
}

/* Learner polish pass 2 */
body {
  background:
    linear-gradient(180deg, #f8fafc 0, #f3f5f8 220px, #f2f4f7 100%);
}
.header {
  min-height: 64px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
}
.header .wrapper {
  width: min(1120px, calc(100% - 36px));
  min-height: 64px;
}
.header .brand {
  align-self: stretch;
}
.header .brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}
.header .wrapper .menu {
  margin-left: auto;
}
.header .wrapper .menu a {
  min-height: 36px;
  padding: 0 13px;
  color: #3f4d63;
  font-size: 14px;
}
.header .wrapper .menu a.active {
  border-color: #cfe2fb;
  background: #eaf4ff;
  color: #123965;
}
.header .wrapper .menu a.alt {
  font-weight: 800;
}
.content {
  width: min(1120px, calc(100% - 36px));
  padding-top: 26px;
}
.learn-hero {
  min-height: 164px;
  margin-top: 0;
  padding: 30px 34px;
  border-color: #d6e2f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .045);
}
.learn-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,91,181,.16), transparent);
  pointer-events: none;
}
.learn-hero h2 {
  margin-top: 2px;
  font-size: 31px;
}
.learn-hero p {
  max-width: 660px;
}
.learn-hero-stats {
  align-self: center;
  justify-content: flex-end;
  min-width: 190px;
}
.learn-hero-stats span {
  min-width: 82px;
  justify-content: center;
  border: 1px solid #dbe8f7;
  background: #f5f9fe;
}
.learn-section {
  margin: 30px 0;
}
.learn-section-head {
  padding: 0 1px;
}
.learn-section-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}
.learn-section-head h3::before {
  content: "";
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: #f1ad21;
}
.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.program-grid:not(.compact) {
  grid-template-columns: 1fr;
}
.program-card {
  position: relative;
  overflow: hidden;
  border-color: #d7e2ef;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #155bb5, #0aa9a5 55%, #f1ad21);
  opacity: .86;
}
.program-card.finished::before {
  background: linear-gradient(90deg, #0b7d41, #0aa9a5 55%, #f1ad21);
}
.program-card:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
}
.program-card-top {
  gap: 8px;
}
.program-card h4 {
  max-width: 860px;
  font-size: 19px;
}
.program-grid.compact .program-card h4 {
  max-width: 460px;
}
.program-card p {
  max-width: 820px;
}
.program-meta span {
  color: #526176;
}
.program-certificate-link {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 5px;
  background: #eef6ff;
  color: #155bb5;
  line-height: 1.35;
}
.status-pill,
.attempt-pill {
  border: 1px solid transparent;
}
.status-pill {
  background: #eef6ff;
  color: #123965;
}
.attempt-pill {
  background: #f5f7fa;
  color: #475569;
}
.status-pill.done {
  border-color: #c7edd8;
}
.progress-line {
  background: #edf3fa;
}

@media screen and (max-width: 1000px) {
  .header .wrapper {
    width: 100%;
    min-height: 64px;
    padding: 8px 14px;
  }
  .header .brand img {
    height: 44px;
    max-width: calc(100vw - 82px);
  }
  .header .wrapper .menu {
    margin-left: 0;
  }
  .content {
    width: 100%;
    padding: 18px 16px 40px;
  }
}

@media screen and (max-width: 760px) {
  .program-grid,
  .program-grid:not(.compact) {
    grid-template-columns: 1fr;
  }
  .learn-hero {
    padding: 22px 18px;
  }
  .learn-hero-stats {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media screen and (max-width: 480px) {
  .header .brand img {
    height: 38px;
  }
  .header .wrapper label.menu-button {
    width: 40px;
    height: 40px;
  }
  .content {
    padding: 12px 10px 34px;
  }
  .learn-section-head h3 {
    font-size: 20px;
  }
  .program-card,
  .learn-panel,
  .lesson-block,
  .exam-form,
  .content .block {
    padding: 16px;
  }
}

/* Profile */
.profile-shell {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.profile-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}
.profile-overview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-top: 4px solid #f1ad21;
}
.profile-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
}
.profile-main {
  min-width: 0;
}
.profile-main h2 {
  margin: 2px 0 4px;
  color: #142235;
  font-size: 30px;
  line-height: 1.18;
}
.profile-main p {
  margin: 0;
  color: #526176;
  overflow-wrap: anywhere;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #dbe8f7;
  border-radius: 6px;
  background: #f5f9fe;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}
.profile-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.profile-card-head h3,
.profile-form-intro h3 {
  margin: 0;
  color: #142235;
  font-size: 20px;
  font-weight: 800;
}
.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.profile-detail {
  min-width: 0;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fbfdff;
}
.profile-detail.wide {
  grid-column: span 2;
}
.profile-detail strong {
  display: block;
  margin: 0 0 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-detail span {
  color: #0f172a;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.profile-title {
  margin-top: 12px;
}
.profile-edit-card {
  margin-top: 16px;
  padding: 0;
}
.profile-edit-form {
  gap: 0;
}
.profile-form-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 26px;
  border-bottom: 1px solid #e2e8f0;
}
.profile-form-section.security-section {
  background: linear-gradient(90deg, rgba(21,91,181,.035), rgba(241,173,33,.035));
}
.profile-form-intro p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.5;
}
.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.profile-form-grid label {
  display: grid;
  gap: 7px;
}
.profile-form-grid label.wide {
  grid-column: span 2;
}
.profile-form-grid label > span {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}
.profile-form-grid .form-input {
  height: 44px;
  border-radius: 7px;
  background: #fff;
}
.profile-message {
  margin: 24px 26px 0;
  padding: 12px 14px;
  border: 1px solid #ffc7c2;
  border-radius: 8px;
  background: #fff1f0;
  color: #a5271d;
  font-weight: 700;
}
.profile-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 26px 26px;
}

@media screen and (max-width: 820px) {
  .profile-overview {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .profile-overview .btn {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }
  .profile-detail-grid,
  .profile-form-grid {
    grid-template-columns: 1fr;
  }
  .profile-detail.wide,
  .profile-form-grid label.wide {
    grid-column: auto;
  }
  .profile-form-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media screen and (max-width: 520px) {
  .profile-card {
    padding: 18px;
  }
  .profile-edit-card {
    padding: 0;
  }
  .profile-overview {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .profile-avatar {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }
  .profile-main h2 {
    font-size: 25px;
  }
  .profile-form-section,
  .profile-form-actions {
    padding: 18px;
  }
  .profile-message {
    margin: 18px 18px 0;
  }
  .profile-form-actions .btn {
    width: 100%;
  }
}
