@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --mp26-brand: #8b0000;
  --mp26-brand-dark: #6b0000;
  --mp26-brand-soft: #fff0f0;
  --mp26-bg: #ffffff;
  --mp26-bg-soft: #f8f8f6;
  --mp26-text: #1f1f1f;
  --mp26-text-muted: #646464;
  --mp26-border: #ddd6d0;
  --mp26-radius: 12px;
  --mp26-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --mp26-font-body: 'Mukta', 'Noto Sans', Arial, sans-serif;
  --mp26-font-ui: 'Noto Sans', 'Mukta', Arial, sans-serif;
}

body {
  font-family: var(--mp26-font-body);
  background: var(--mp26-bg);
  color: var(--mp26-text);
}

a {
  color: var(--mp26-brand);
}

a:hover,
a:focus {
  color: #b30000;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
}

.mp26-topbar {
  background: var(--mp26-brand-dark);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--mp26-font-ui);
  font-size: 0.82rem;
  padding: 0.35rem 0;
}

.mp26-topbar a {
  color: #fff;
  text-decoration: none;
}

.mp26-topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.mp26-header {
  background: var(--mp26-brand);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.mp26-brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.mp26-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.mp26-brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.mp26-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mp26-brand-name {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.mp26-brand-slogan {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-family: var(--mp26-font-ui);
}

.mp26-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.mp26-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.mp26-nav-shell {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
}

.mp26-nav {
  flex: 1 1 auto;
}

.mp26-nav .menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp26-nav .menu > li > a {
  display: block;
  padding: 0.6rem 0.95rem;
  color: #fff;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  font-family: var(--mp26-font-ui);
  font-size: 0.95rem;
}

.mp26-nav .menu > li > a:hover,
.mp26-nav .menu > li.active-trail > a {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.mp26-nav .menu .menu {
  display: block;
  margin-top: 0.35rem;
}

.mp26-nav .menu .menu a {
  display: block;
  padding: 0.4rem 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mp26-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 280px;
}

.mp26-search .form-control {
  border: 0;
  min-width: 0;
}

.mp26-upper-banner,
.mp26-highlighted {
  padding: 1rem 0;
  background: var(--mp26-bg-soft);
  border-bottom: 1px solid #ece7e2;
}

.mp26-header-region {
  padding: 1rem 0;
  background: #fff;
  border-bottom: 1px solid #ece7e2;
}

.mp26-content > * + * {
  margin-top: 1rem;
}

.mp26-sidebar .block,
.mp26-sidebar nav[role='navigation'],
.mp26-sidebar > .region > * {
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--mp26-border);
  border-radius: var(--mp26-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mp26-block-title,
.mp26-sidebar .block > h2,
.mp26-sidebar nav[role='navigation'] > h2 {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--mp26-brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mp26-font-ui);
}

.mp26-block-content,
.mp26-sidebar .block > :not(h2),
.mp26-sidebar nav[role='navigation'] > :not(h2) {
  padding: 1rem;
}

.mp26-sidebar .menu,
.mp26-sidebar .nav.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 1rem;
}

.mp26-sidebar .menu li,
.mp26-sidebar .nav.navbar-nav li {
  margin-bottom: 0.4rem;
}

.mp26-sidebar .menu a,
.mp26-sidebar .nav.navbar-nav a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--mp26-text);
  text-decoration: none;
}

.mp26-sidebar .menu a:hover,
.mp26-sidebar .nav.navbar-nav a:hover {
  background: var(--mp26-brand-soft);
  color: var(--mp26-brand);
}

.mp26-node-full {
  background: #fff;
}

.mp26-node-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee6e1;
}

.mp26-node-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
}

.mp26-node-meta {
  color: var(--mp26-text-muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  align-items: center;
}

.mp26-sep {
  display: inline-block;
  margin: 0 0.4rem;
}

.mp26-node-tabs {
  margin: 0 0 1.25rem;
}

.mp26-node-tabs .nav-tabs {
  border-bottom: 1px solid #eadfda;
  gap: 0.35rem;
}

.mp26-node-tabs .nav-tabs .nav-link {
  border: 1px solid #d8c3bc;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #fff7f7;
  color: var(--mp26-brand);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
}

.mp26-node-tabs .nav-tabs .nav-link.active,
.mp26-node-tabs .nav-tabs .nav-link:hover,
.mp26-node-tabs .nav-tabs .nav-link:focus {
  background: var(--mp26-brand);
  border-color: var(--mp26-brand);
  color: #fff;
}

.mp26-node-body {
  line-height: 1.9;
  font-size: 1.08rem;
}

.mp26-node-body > * + * {
  margin-top: 1rem;
}

.mp26-node-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.mp26-node-divider {
  margin: 2rem 0 1.25rem;
  border: 0;
  border-top: 2px solid #eadfda;
}

.mp26-node-stats {
  margin-bottom: 1.75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #fff9f8 0%, #fff 100%);
  border: 1px solid #e8d7d1;
  border-radius: 12px;
}

.mp26-node-stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.mp26-node-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 999px;
  color: var(--mp26-text);
  font-size: 0.95rem;
}

.mp26-node-stat-label {
  color: var(--mp26-text-muted);
}

.mp26-node-stat-bookmark .flag,
.mp26-node-stat-bookmark .js-flag-message {
  margin: 0;
}

.mp26-comments {
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.mp26-comments .comment-form,
.mp26-comments .comment,
.mp26-comments .indented {
  margin-top: 1rem;
}

.mp26-comments .comment-form {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #d6c3bc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mp26-comments textarea,
.mp26-comments textarea.form-control {
  border: 2px solid #9a7d75;
  border-radius: 10px;
  min-height: 160px;
  box-shadow: none;
}

.mp26-comments textarea:focus,
.mp26-comments textarea.form-control:focus {
  border-color: var(--mp26-brand);
  box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.12);
}

.mp26-comments .comment {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #c8b0a8;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.mp26-teaser-card {
  border: 1px solid var(--mp26-border);
  border-radius: var(--mp26-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.mp26-teaser-title {
  margin-bottom: 0.5rem;
}

.mp26-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.25rem;
  background: var(--mp26-brand-dark);
  color: rgba(255, 255, 255, 0.88);
}

.mp26-footer a {
  color: #fff;
}

.mp26-footer .block,
.mp26-footer nav {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mp26-footer .block__title,
.mp26-footer h2 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
}

.mp26-footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 1199.98px) {
  .mp26-nav-shell {
    padding-bottom: 1rem;
  }

  .mp26-nav .menu {
    flex-direction: column;
    gap: 0.25rem;
  }

  .mp26-nav .menu > li > a {
    border-radius: 8px;
  }

  .mp26-search {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .mp26-brand-name {
    font-size: 1.6rem;
  }

  .mp26-topbar-text {
    width: 100%;
  }
}
