/* Header adjustments */
.site-header .site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header .site-branding .custom-logo {
  width: 65px !important;
  max-width: 65px !important;
  height: auto;
}

.site-header .site-header-row-container-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .site-header .site-branding .custom-logo {
    width: 50px !important;
    max-width: 50px !important;
  }

  .site-header .site-header-row-container-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Courses landing layout */
.enyf-section.enyf-intro {
  margin: 2.5rem 0;
}

.enyf-catalog .enyf-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.enyf-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.enyf-card__image,
.enyf-card__media {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.enyf-card__body {
  padding: 1.25rem;
  flex: 1 1 auto;
}

.enyf-card__title {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}

.enyf-card__cta,
.enyf-card__cta--primary {
  display: inline-block;
  margin-top: auto;
  text-decoration: none;
  color: #fff!important;
  background: var(--global-palette1, #6b7f59);
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.enyf-card__cta:hover,
.enyf-card__cta--primary:hover {
  background: var(--global-palette2, #3f4734);
  transform: translateY(-1px);
}

.enyf-empty {
  margin: 2rem 0;
  color: #666;
  text-align: center;
}

.enyf-empty-state__text {
  color: #5C4F43;
}
