:root{
  --hr-bg:#fcf7f6;
  --hr-green:#376650;
  --hr-green-2:#4c6f54;
  --hr-orange:#e28134;
  --hr-border:rgba(55,102,80,0.14);
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--hr-bg);
  color:#141414;
}

.hr-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252,247,246,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(55,102,80,0.08);
}

.hr-header-inner{
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.hr-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
}

.hr-brand-mark{
  width:34px;
  height:34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(55,102,80,0.12);
  color: var(--hr-green);
  font-weight: 900;
}

.hr-brand-text{
  font-weight: 900;
  color: var(--hr-green);
}

.hr-main{
  padding: 26px 16px 40px;
}

.hr-container{
  width: min(980px, 100%);
  margin: 0 auto;
}

.hr-card{
  background:#fff;
  border: 1px solid rgba(55,102,80,0.12);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 22px;
}

.hr-login{
  width: min(520px, 100%);
  margin: 30px auto 0;
}

.hr-title{
  margin:0;
  font-size: 24px;
  font-weight: 900;
  color: var(--hr-green);
}

.hr-subtitle{
  margin: 6px 0 0;
  color: var(--hr-green-2);
  font-size: 14px;
}

.hr-section-title{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 900;
  color: var(--hr-green);
}

.hr-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}

.hr-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

@media (max-width: 900px){
  .hr-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .hr-grid{ grid-template-columns: 1fr; }
  .hr-card{ padding: 18px; }
}

.hr-course{
  display:block;
  border: 1px solid var(--hr-border);
  border-radius: 16px;
  overflow:hidden;
  text-decoration:none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hr-course:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.hr-thumb{
  height: 120px;
  background-size: cover;
  background-position: center;
}

.hr-thumb-fallback{
  background: linear-gradient(135deg, rgba(55,102,80,0.14), rgba(226,129,52,0.18));
  display:flex;
  align-items:center;
  justify-content:center;
}

.hr-thumb-fallback span{
  font-weight: 900;
  color: var(--hr-green);
}

.hr-course-body{
  padding: 14px 14px 16px;
}

.hr-course-title{
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.hr-progress{
  height: 10px;
  background: rgba(55,102,80,0.12);
  border-radius: 999px;
  overflow:hidden;
  margin: 12px 0 8px;
}

.hr-progress-bar{
  height: 100%;
  width: 0;
  background: var(--hr-orange);
  border-radius: 999px;
}

.hr-course-meta{
  font-size: 12px;
  color: var(--hr-green-2);
}

.hr-cta{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--hr-green);
}

.hr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
}

.hr-btn-outline{
  color: var(--hr-green);
  border-color: rgba(55,102,80,0.25);
  background: transparent;
}

.hr-empty{
  padding: 18px;
  border-radius: 14px;
  background: rgba(55,102,80,0.06);
  border: 1px dashed rgba(55,102,80,0.25);
}

.hr-empty-title{
  font-weight: 900;
  color: var(--hr-green);
  margin-bottom: 6px;
}

.hr-empty-text{
  color: var(--hr-green-2);
  font-size: 13px;
}

/* LearnDash login form tweaks */
.hr-form input[type="text"],
.hr-form input[type="password"],
.hr-form input[type="email"]{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(55,102,80,0.2);
  padding: 0 12px;
  outline:none;
  margin-top: 10px;
}

.hr-form input[type="submit"],
.hr-form button{
  width: 100%;
  height: 44px;
  margin-top: 12px;
  border-radius: 12px;
  border: none;
  background: var(--hr-green);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}

.hr-footer{
  padding: 20px 16px;
}

.hr-footer-inner{
  width: min(1100px, 100%);
  margin: 0 auto;
  color: rgba(0,0,0,0.45);
  font-size: 12px;
}