/*
 * MediRoyal Blog — Hero masthead (top bar, left content, search).
 * Scoped under body.log-blog-page. Featured card split into
 * log-blog-hero-featured.css to respect the 200-line file limit.
 */

.log-blog-page .bl2-hero-masthead {
  background: linear-gradient(158deg, var(--plum-950) 0%, var(--plum-800) 58%, var(--plum-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 88px 56px;
}

.log-blog-page .bl2-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 238, 192, 0.06);
  pointer-events: none;
}

.log-blog-page .bl2-hero-top-bar {
  max-width: 1220px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.log-blog-page .bl2-journal-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(94, 238, 192, 0.12);
  border: 1px solid rgba(94, 238, 192, 0.3);
  color: var(--sage-400);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.log-blog-page .bl2-hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.log-blog-page .bl2-hero-meta-chip {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.log-blog-page .bl2-hero-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.log-blog-page .bl2-hero-left h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
}

.log-blog-page .bl2-hero-left h1 em {
  font-style: italic;
  color: var(--sage-400);
}

.log-blog-page .bl2-hero-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 32px;
}

.log-blog-page .bl2-search-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin-bottom: 28px;
  transition: box-shadow 0.3s;
}

.log-blog-page .bl2-search-bar:focus-within {
  box-shadow: 0 0 0 3px rgba(94, 238, 192, 0.4), var(--shadow-lg);
}

.log-blog-page .bl2-search-bar .bl2-icon {
  width: 17px;
  height: 17px;
  color: var(--plum-700);
  flex-shrink: 0;
}

.log-blog-page .bl2-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--ink-900);
  padding: 9px 0;
  font-family: var(--body);
}

.log-blog-page .bl2-search-bar input::placeholder {
  color: var(--gray-400);
}

.log-blog-page .bl2-search-bar button {
  background: var(--plum-700);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: background 0.25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--body);
}

.log-blog-page .bl2-search-bar button:hover {
  background: var(--plum-800);
}

.log-blog-page .bl2-search-bar button:disabled,
.log-blog-page .bl2-search-bar input:disabled {
  opacity: 0.6;
  cursor: default;
}

.log-blog-page .bl2-trust-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.log-blog-page .bl2-t-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  transition: all 0.25s;
}

.log-blog-page .bl2-t-chip:hover {
  background: rgba(94, 238, 192, 0.12);
  border-color: rgba(94, 238, 192, 0.3);
}

.log-blog-page .bl2-t-chip .icon {
  width: 12px;
  height: 12px;
  color: var(--sage-400);
  flex-shrink: 0;
}

