/* @import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700"); */

:root{
  /* Backgrounds (keep warm linen) */
  --bg-main: #F5F2EC;   /* linen */
  --bg-soft: #EEE8DF;   /* warm stone */
  --bg-muted:#E6DED2;   /* deeper stone */
  --bg-card: #F8F6F2;   /* paper */

  /* Brand / accents (dusty slate blue) */
  --brand: #4F82A6;                 /* primary accent */
  --brand-strong: #3E6F92;          /* hover/active */
  --brand-soft: rgba(79,130,166,.14);
  --brand-softer: rgba(79,130,166,.08);

  /* Optional secondary accent (warm taupe for outlines / subtle UI) */
  --accent: #6C7D88;
  --accent-strong: #55656F;
  --accent-soft: rgba(124,111,100,.10);

  /* Text (warm greys) 3d4449 for h1 and h2? */
  --text-main: #262421;
  --text-soft: #6B6762;
  --text-muted: #9A948D;

  /* Borders */
  --border-light: rgba(0,0,0,0.06);
  --border-soft: rgba(0,0,0,0.035);



  /* Headings */
  --text-heading: #3d4449; /* 3a3834 warmer 3d4449 cooler*/
  --text-body: var(--text-soft);
  --text-placeholder: var(--text-muted);
  --muted: rgba(46,44,41,.65);
}


html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

p{ margin: 0 0 1rem; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  -webkit-text-size-adjust: none; }

mark {
  background-color: transparent;
  color: inherit; }

input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none; }

/* Basic */
@-ms-viewport {
  width: device-width; }

body {
  -ms-overflow-style: scrollbar; }

@media screen and (max-width: 480px) {
  html, body {
    min-width: 320px; } }

html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  background: var(--bg-main); }

  body.is-preload *, body.is-preload *:before, body.is-preload *:after, body.is-resizing *, body.is-resizing *:before, body.is-resizing *:after {
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important; }

/* Type */
body, input, select, textarea {
  color: var(--text-soft);
  font-family: "Open Sans", sans-serif;
  font-size: 13pt;
  font-weight: 400;
  line-height: 1.65; }

  @media screen and (max-width: 1680px) {
    body, input, select, textarea {
      font-size: 11pt; } }
  @media screen and (max-width: 1280px) {
    body, input, select, textarea {
      font-size: 10pt; } }
  @media screen and (max-width: 360px) {
    body, input, select, textarea {
      font-size: 9pt; } }

a {
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  border-bottom: dotted 1px;
  color: var(--brand);
  text-decoration: none; }
  a:hover {
    border-bottom-color: var(--brand);
    color: var(--brand) !important; }
    a:hover strong {
      color: inherit; }

/* MAIN text links (exclude footer section) */
#main > .inner > section:not(.mp-footerblock) :where(p, blockquote, dd, li) a:not(.button):not(.image):not(.icon):not(.logo) {
  border-bottom: 0;
  text-decoration: none;
  padding: 0.1em 0.15em;
  border-radius: 0.15em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#main > .inner > section:not(.mp-footerblock) :where(p, blockquote, dd, li) a:not(.button):not(.image):not(.icon):not(.logo):hover {
  background-color: var(--brand-soft);
  color: var(--brand-strong) !important;
}

/* Sidebar/footer “grey text blocks” (but NOT the menu) */
/* Sidebar “grey text block” */
#sidebar .welcome-text a {
  border-bottom: 0;
  text-decoration: none;
  padding: 0.1em 0.15em;
  border-radius: 0.15em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#sidebar .welcome-text a:hover {
  background-color: var(--brand-soft);
  color: var(--brand-strong) !important;
}

/* Sidebar text links (paragraph/list content), exclude the MENU */
#sidebar .inner :where(p, li, dd, blockquote) a:not(.button):not(.image):not(.icon):not(.logo) {
  border-bottom: 0;
  text-decoration: none;
  padding: 0.1em 0.15em;
  border-radius: 0.15em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#sidebar .inner :where(p, li, dd, blockquote) a:not(.button):not(.image):not(.icon):not(.logo):hover {
  background-color: var(--brand-soft);
  color: var(--brand-strong) !important;
}


/* Hard stop: never apply highlight behavior inside the sidebar menu */
#sidebar #menu a {
  padding: 0;
  border-radius: 0;
  background: transparent;
}
#sidebar #menu a:hover {
  background: transparent;
  color: var(--brand) !important; /* keep the menu hover as-is */
}

strong, b {
  color: var(--text-main);
  font-weight: 600; }

em, i {
  font-style: italic; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1em 0; }
  
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0; }

h1 {
  font-size: 3em;
  margin: 0 0 0.5em 0;
  line-height: 1.3; }

h2 {
  font-size: 1.75em; }

h3 {
  font-size: 1.25em; }

h4 {
  font-size: 1.1em; }

h5 {
  font-size: 0.9em; }

h6 {
  font-size: 0.7em; }

@media screen and (max-width: 1680px) {
  h1 {
    font-size: 2.75em; } }

@media screen and (max-width: 980px) {
  h1 {
    font-size: 2.5em; } }

@media screen and (max-width: 736px) {
  h1 {
    font-size: 1.8em;
    line-height: 1.4; }
  h2 {
    font-size: 1.5em; } }

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em; }

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em; }

/* === SIDEBAR MENU TITLE === */

#menu .menu-header.major {
  margin: 0; }

#menu .menu-title {
  color: var(--text-main);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin: 0 0 1em 0;
  font-size: 1.38889em; }

#sidebar #menu .menu-title{
  border-bottom: solid 3px var(--brand); 
  display: inline-block;
  padding: 0 0.75em 0.5em 0;
  margin: 0 0 2em 0; }

#sidebar .sidebar-title {
  color: var(--text-main);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.38889em; /* match sidebar h2 */
  display: inline-block;
  margin: 0 0 1em 0; }

#sidebar header.major > .sidebar-title {
  border-bottom: solid 3px var(--brand);
  padding: 0 0.75em 0.5em 0; }

#sidebar .sidebar-title a {
  color: #3d4449;                                                   /* same as headings */
  text-decoration: none;                                              /* remove underline */
  border-bottom: 0;   }

#sidebar .sidebar-title a:hover {
  color: var(--brand);  }

@media screen and (max-width: 736px) {
  #menu > .menu-header.major {
    padding-top: calc(var(--util-height) + 0.75em);   }
  #menu .menu-title {
    font-size: 1.5em; } }

#sidebar header.major {
  border: 0;
  margin: 0 0 1.5em 0;   /* controlled spacing */
  padding: 0;
}

/* ==== GENERAL IMPROVEMENTS ==== */

blockquote{
  margin: 0 0 1.25rem;
  padding: .85rem 1rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 8px;
  max-width: 90%; }

blockquote p{
  margin: 0;
  color: rgba(46,44,41,.85);
  font-size: 0.9em;
  font-style: italic; }

blockquote .ref{
  display: block;
  margin-top: 0;                                /* Was .5rem  */
  font-style: normal;
  color: var(--muted);
  text-align: right;
  font-size: 0.8em; }

#sidebar blockquote {
  background: var(--bg-muted);
}

#sidebar blockquote p {
  color: var(--text-soft);
}

code {
  background: #fff;
  border-radius: 0.375em;
  border: solid 1px var(--border-light);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em; }

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0 2em 0; }
  pre code {
    display: block;
    line-height: 1.75;
    padding: 1em 1.5em;
    overflow-x: auto; }

hr {
  border: 0;
  border-bottom: solid 1px var(--border-light);
  margin: 2em 0; }
  hr.major {
    margin: 3em 0; }

.heading-muted{
  color: #8f979d; }

.align-left {
  text-align: left; }

.align-center {
  text-align: center; }

.align-right {
  text-align: right; }

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch; }
  .row > * {
    box-sizing: border-box; }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0; }
  .row.aln-left {
    justify-content: flex-start; }
  .row.aln-center {
    justify-content: center; }
  .row.aln-right {
    justify-content: flex-end; }
  .row.aln-top {
    align-items: flex-start; }
  .row.aln-middle {
    align-items: center; }
  .row.aln-bottom {
    align-items: flex-end; }
  .row > .imp {
    order: -1; }
  .row > .col-1 {
    width: 8.33333%; }
  .row > .off-1 {
    margin-left: 8.33333%; }
  .row > .col-2 {
    width: 16.66667%; }
  .row > .off-2 {
    margin-left: 16.66667%; }
  .row > .col-3 {
    width: 25%; }
  .row > .off-3 {
    margin-left: 25%; }
  .row > .col-4 {
    width: 33.33333%; }
  .row > .off-4 {
    margin-left: 33.33333%; }
  .row > .col-5 {
    width: 41.66667%; }
  .row > .off-5 {
    margin-left: 41.66667%; }
  .row > .col-6 {
    width: 50%; }
  .row > .off-6 {
    margin-left: 50%; }
  .row > .col-7 {
    width: 58.33333%; }
  .row > .off-7 {
    margin-left: 58.33333%; }
  .row > .col-8 {
    width: 66.66667%; }
  .row > .off-8 {
    margin-left: 66.66667%; }
  .row > .col-9 {
    width: 75%; }
  .row > .off-9 {
    margin-left: 75%; }
  .row > .col-10 {
    width: 83.33333%; }
  .row > .off-10 {
    margin-left: 83.33333%; }
  .row > .col-11 {
    width: 91.66667%; }
  .row > .off-11 {
    margin-left: 91.66667%; }
  .row > .col-12 {
    width: 100%; }
  .row > .off-12 {
    margin-left: 100%; }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em; }
    .row.gtr-0 > * {
      padding: 0 0 0 0em; }
    .row.gtr-0.gtr-uniform {
      margin-top: 0em; }
      .row.gtr-0.gtr-uniform > * {
        padding-top: 0em; }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.375em; }
    .row.gtr-25 > * {
      padding: 0 0 0 0.375em; }
    .row.gtr-25.gtr-uniform {
      margin-top: -0.375em; }
      .row.gtr-25.gtr-uniform > * {
        padding-top: 0.375em; }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -0.75em; }
    .row.gtr-50 > * {
      padding: 0 0 0 0.75em; }
    .row.gtr-50.gtr-uniform {
      margin-top: -0.75em; }
      .row.gtr-50.gtr-uniform > * {
        padding-top: 0.75em; }
  .row {
    margin-top: 0;
    margin-left: -1.5em; }
    .row > * {
      padding: 0 0 0 1.5em; }
    .row.gtr-uniform {
      margin-top: -1.5em; }
      .row.gtr-uniform > * {
        padding-top: 1.5em; }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -2.25em; }
    .row.gtr-150 > * {
      padding: 0 0 0 2.25em; }
    .row.gtr-150.gtr-uniform {
      margin-top: -2.25em; }
      .row.gtr-150.gtr-uniform > * {
        padding-top: 2.25em; }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -3em; }
    .row.gtr-200 > * {
      padding: 0 0 0 3em; }
    .row.gtr-200.gtr-uniform {
      margin-top: -3em; }
      .row.gtr-200.gtr-uniform > * {
        padding-top: 3em; }
  @media screen and (max-width: 1680px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      align-items: stretch; }
      .row > * {
        box-sizing: border-box; }
      .row.gtr-uniform > * > :last-child {
        margin-bottom: 0; }
      .row.aln-left {
        justify-content: flex-start; }
      .row.aln-center {
        justify-content: center; }
      .row.aln-right {
        justify-content: flex-end; }
      .row.aln-top {
        align-items: flex-start; }
      .row.aln-middle {
        align-items: center; }
      .row.aln-bottom {
        align-items: flex-end; }
      .row > .imp-xlarge {
        order: -1; }
      .row > .col-1-xlarge {
        width: 8.33333%; }
      .row > .off-1-xlarge {
        margin-left: 8.33333%; }
      .row > .col-2-xlarge {
        width: 16.66667%; }
      .row > .off-2-xlarge {
        margin-left: 16.66667%; }
      .row > .col-3-xlarge {
        width: 25%; }
      .row > .off-3-xlarge {
        margin-left: 25%; }
      .row > .col-4-xlarge {
        width: 33.33333%; }
      .row > .off-4-xlarge {
        margin-left: 33.33333%; }
      .row > .col-5-xlarge {
        width: 41.66667%; }
      .row > .off-5-xlarge {
        margin-left: 41.66667%; }
      .row > .col-6-xlarge {
        width: 50%; }
      .row > .off-6-xlarge {
        margin-left: 50%; }
      .row > .col-7-xlarge {
        width: 58.33333%; }
      .row > .off-7-xlarge {
        margin-left: 58.33333%; }
      .row > .col-8-xlarge {
        width: 66.66667%; }
      .row > .off-8-xlarge {
        margin-left: 66.66667%; }
      .row > .col-9-xlarge {
        width: 75%; }
      .row > .off-9-xlarge {
        margin-left: 75%; }
      .row > .col-10-xlarge {
        width: 83.33333%; }
      .row > .off-10-xlarge {
        margin-left: 83.33333%; }
      .row > .col-11-xlarge {
        width: 91.66667%; }
      .row > .off-11-xlarge {
        margin-left: 91.66667%; }
      .row > .col-12-xlarge {
        width: 100%; }
      .row > .off-12-xlarge {
        margin-left: 100%; }
      .row.gtr-0 {
        margin-top: 0;
        margin-left: 0em; }
        .row.gtr-0 > * {
          padding: 0 0 0 0em; }
        .row.gtr-0.gtr-uniform {
          margin-top: 0em; }
          .row.gtr-0.gtr-uniform > * {
            padding-top: 0em; }
      .row.gtr-25 {
        margin-top: 0;
        margin-left: -0.375em; }
        .row.gtr-25 > * {
          padding: 0 0 0 0.375em; }
        .row.gtr-25.gtr-uniform {
          margin-top: -0.375em; }
          .row.gtr-25.gtr-uniform > * {
            padding-top: 0.375em; }
      .row.gtr-50 {
        margin-top: 0;
        margin-left: -0.75em; }
        .row.gtr-50 > * {
          padding: 0 0 0 0.75em; }
        .row.gtr-50.gtr-uniform {
          margin-top: -0.75em; }
          .row.gtr-50.gtr-uniform > * {
            padding-top: 0.75em; }
      .row {
        margin-top: 0;
        margin-left: -1.5em; }
        .row > * {
          padding: 0 0 0 1.5em; }
        .row.gtr-uniform {
          margin-top: -1.5em; }
          .row.gtr-uniform > * {
            padding-top: 1.5em; }
      .row.gtr-150 {
        margin-top: 0;
        margin-left: -2.25em; }
        .row.gtr-150 > * {
          padding: 0 0 0 2.25em; }
        .row.gtr-150.gtr-uniform {
          margin-top: -2.25em; }
          .row.gtr-150.gtr-uniform > * {
            padding-top: 2.25em; }
      .row.gtr-200 {
        margin-top: 0;
        margin-left: -3em; }
        .row.gtr-200 > * {
          padding: 0 0 0 3em; }
        .row.gtr-200.gtr-uniform {
          margin-top: -3em; }
          .row.gtr-200.gtr-uniform > * {
            padding-top: 3em; } }
  @media screen and (max-width: 1280px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      align-items: stretch; }
      .row > * {
        box-sizing: border-box; }
      .row.gtr-uniform > * > :last-child {
        margin-bottom: 0; }
      .row.aln-left {
        justify-content: flex-start; }
      .row.aln-center {
        justify-content: center; }
      .row.aln-right {
        justify-content: flex-end; }
      .row.aln-top {
        align-items: flex-start; }
      .row.aln-middle {
        align-items: center; }
      .row.aln-bottom {
        align-items: flex-end; }
      .row > .imp-large {
        order: -1; }
      .row > .col-1-large {
        width: 8.33333%; }
      .row > .off-1-large {
        margin-left: 8.33333%; }
      .row > .col-2-large {
        width: 16.66667%; }
      .row > .off-2-large {
        margin-left: 16.66667%; }
      .row > .col-3-large {
        width: 25%; }
      .row > .off-3-large {
        margin-left: 25%; }
      .row > .col-4-large {
        width: 33.33333%; }
      .row > .off-4-large {
        margin-left: 33.33333%; }
      .row > .col-5-large {
        width: 41.66667%; }
      .row > .off-5-large {
        margin-left: 41.66667%; }
      .row > .col-6-large {
        width: 50%; }
      .row > .off-6-large {
        margin-left: 50%; }
      .row > .col-7-large {
        width: 58.33333%; }
      .row > .off-7-large {
        margin-left: 58.33333%; }
      .row > .col-8-large {
        width: 66.66667%; }
      .row > .off-8-large {
        margin-left: 66.66667%; }
      .row > .col-9-large {
        width: 75%; }
      .row > .off-9-large {
        margin-left: 75%; }
      .row > .col-10-large {
        width: 83.33333%; }
      .row > .off-10-large {
        margin-left: 83.33333%; }
      .row > .col-11-large {
        width: 91.66667%; }
      .row > .off-11-large {
        margin-left: 91.66667%; }
      .row > .col-12-large {
        width: 100%; }
      .row > .off-12-large {
        margin-left: 100%; }
      .row.gtr-0 {
        margin-top: 0;
        margin-left: 0em; }
        .row.gtr-0 > * {
          padding: 0 0 0 0em; }
        .row.gtr-0.gtr-uniform {
          margin-top: 0em; }
          .row.gtr-0.gtr-uniform > * {
            padding-top: 0em; }
      .row.gtr-25 {
        margin-top: 0;
        margin-left: -0.375em; }
        .row.gtr-25 > * {
          padding: 0 0 0 0.375em; }
        .row.gtr-25.gtr-uniform {
          margin-top: -0.375em; }
          .row.gtr-25.gtr-uniform > * {
            padding-top: 0.375em; }
      .row.gtr-50 {
        margin-top: 0;
        margin-left: -0.75em; }
        .row.gtr-50 > * {
          padding: 0 0 0 0.75em; }
        .row.gtr-50.gtr-uniform {
          margin-top: -0.75em; }
          .row.gtr-50.gtr-uniform > * {
            padding-top: 0.75em; }
      .row {
        margin-top: 0;
        margin-left: -1.5em; }
        .row > * {
          padding: 0 0 0 1.5em; }
        .row.gtr-uniform {
          margin-top: -1.5em; }
          .row.gtr-uniform > * {
            padding-top: 1.5em; }
      .row.gtr-150 {
        margin-top: 0;
        margin-left: -2.25em; }
        .row.gtr-150 > * {
          padding: 0 0 0 2.25em; }
        .row.gtr-150.gtr-uniform {
          margin-top: -2.25em; }
          .row.gtr-150.gtr-uniform > * {
            padding-top: 2.25em; }
      .row.gtr-200 {
        margin-top: 0;
        margin-left: -3em; }
        .row.gtr-200 > * {
          padding: 0 0 0 3em; }
        .row.gtr-200.gtr-uniform {
          margin-top: -3em; }
          .row.gtr-200.gtr-uniform > * {
            padding-top: 3em; } }
  @media screen and (max-width: 980px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      align-items: stretch; }
      .row > * {
        box-sizing: border-box; }
      .row.gtr-uniform > * > :last-child {
        margin-bottom: 0; }
      .row.aln-left {
        justify-content: flex-start; }
      .row.aln-center {
        justify-content: center; }
      .row.aln-right {
        justify-content: flex-end; }
      .row.aln-top {
        align-items: flex-start; }
      .row.aln-middle {
        align-items: center; }
      .row.aln-bottom {
        align-items: flex-end; }
      .row > .imp-medium {
        order: -1; }
      .row > .col-1-medium {
        width: 8.33333%; }
      .row > .off-1-medium {
        margin-left: 8.33333%; }
      .row > .col-2-medium {
        width: 16.66667%; }
      .row > .off-2-medium {
        margin-left: 16.66667%; }
      .row > .col-3-medium {
        width: 25%; }
      .row > .off-3-medium {
        margin-left: 25%; }
      .row > .col-4-medium {
        width: 33.33333%; }
      .row > .off-4-medium {
        margin-left: 33.33333%; }
      .row > .col-5-medium {
        width: 41.66667%; }
      .row > .off-5-medium {
        margin-left: 41.66667%; }
      .row > .col-6-medium {
        width: 50%; }
      .row > .off-6-medium {
        margin-left: 50%; }
      .row > .col-7-medium {
        width: 58.33333%; }
      .row > .off-7-medium {
        margin-left: 58.33333%; }
      .row > .col-8-medium {
        width: 66.66667%; }
      .row > .off-8-medium {
        margin-left: 66.66667%; }
      .row > .col-9-medium {
        width: 75%; }
      .row > .off-9-medium {
        margin-left: 75%; }
      .row > .col-10-medium {
        width: 83.33333%; }
      .row > .off-10-medium {
        margin-left: 83.33333%; }
      .row > .col-11-medium {
        width: 91.66667%; }
      .row > .off-11-medium {
        margin-left: 91.66667%; }
      .row > .col-12-medium {
        width: 100%; }
      .row > .off-12-medium {
        margin-left: 100%; }
      .row.gtr-0 {
        margin-top: 0;
        margin-left: 0em; }
        .row.gtr-0 > * {
          padding: 0 0 0 0em; }
        .row.gtr-0.gtr-uniform {
          margin-top: 0em; }
          .row.gtr-0.gtr-uniform > * {
            padding-top: 0em; }
      .row.gtr-25 {
        margin-top: 0;
        margin-left: -0.375em; }
        .row.gtr-25 > * {
          padding: 0 0 0 0.375em; }
        .row.gtr-25.gtr-uniform {
          margin-top: -0.375em; }
          .row.gtr-25.gtr-uniform > * {
            padding-top: 0.375em; }
      .row.gtr-50 {
        margin-top: 0;
        margin-left: -0.75em; }
        .row.gtr-50 > * {
          padding: 0 0 0 0.75em; }
        .row.gtr-50.gtr-uniform {
          margin-top: -0.75em; }
          .row.gtr-50.gtr-uniform > * {
            padding-top: 0.75em; }
      .row {
        margin-top: 0;
        margin-left: -1.5em; }
        .row > * {
          padding: 0 0 0 1.5em; }
        .row.gtr-uniform {
          margin-top: -1.5em; }
          .row.gtr-uniform > * {
            padding-top: 1.5em; }
      .row.gtr-150 {
        margin-top: 0;
        margin-left: -2.25em; }
        .row.gtr-150 > * {
          padding: 0 0 0 2.25em; }
        .row.gtr-150.gtr-uniform {
          margin-top: -2.25em; }
          .row.gtr-150.gtr-uniform > * {
            padding-top: 2.25em; }
      .row.gtr-200 {
        margin-top: 0;
        margin-left: -3em; }
        .row.gtr-200 > * {
          padding: 0 0 0 3em; }
        .row.gtr-200.gtr-uniform {
          margin-top: -3em; }
          .row.gtr-200.gtr-uniform > * {
            padding-top: 3em; } }
  @media screen and (max-width: 736px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      align-items: stretch; }
      .row > * {
        box-sizing: border-box; }
      .row.gtr-uniform > * > :last-child {
        margin-bottom: 0; }
      .row.aln-left {
        justify-content: flex-start; }
      .row.aln-center {
        justify-content: center; }
      .row.aln-right {
        justify-content: flex-end; }
      .row.aln-top {
        align-items: flex-start; }
      .row.aln-middle {
        align-items: center; }
      .row.aln-bottom {
        align-items: flex-end; }
      .row > .imp-small {
        order: -1; }
      .row > .col-1-small {
        width: 8.33333%; }
      .row > .off-1-small {
        margin-left: 8.33333%; }
      .row > .col-2-small {
        width: 16.66667%; }
      .row > .off-2-small {
        margin-left: 16.66667%; }
      .row > .col-3-small {
        width: 25%; }
      .row > .off-3-small {
        margin-left: 25%; }
      .row > .col-4-small {
        width: 33.33333%; }
      .row > .off-4-small {
        margin-left: 33.33333%; }
      .row > .col-5-small {
        width: 41.66667%; }
      .row > .off-5-small {
        margin-left: 41.66667%; }
      .row > .col-6-small {
        width: 50%; }
      .row > .off-6-small {
        margin-left: 50%; }
      .row > .col-7-small {
        width: 58.33333%; }
      .row > .off-7-small {
        margin-left: 58.33333%; }
      .row > .col-8-small {
        width: 66.66667%; }
      .row > .off-8-small {
        margin-left: 66.66667%; }
      .row > .col-9-small {
        width: 75%; }
      .row > .off-9-small {
        margin-left: 75%; }
      .row > .col-10-small {
        width: 83.33333%; }
      .row > .off-10-small {
        margin-left: 83.33333%; }
      .row > .col-11-small {
        width: 91.66667%; }
      .row > .off-11-small {
        margin-left: 91.66667%; }
      .row > .col-12-small {
        width: 100%; }
      .row > .off-12-small {
        margin-left: 100%; }
      .row.gtr-0 {
        margin-top: 0;
        margin-left: 0em; }
        .row.gtr-0 > * {
          padding: 0 0 0 0em; }
        .row.gtr-0.gtr-uniform {
          margin-top: 0em; }
          .row.gtr-0.gtr-uniform > * {
            padding-top: 0em; }
      .row.gtr-25 {
        margin-top: 0;
        margin-left: -0.375em; }
        .row.gtr-25 > * {
          padding: 0 0 0 0.375em; }
        .row.gtr-25.gtr-uniform {
          margin-top: -0.375em; }
          .row.gtr-25.gtr-uniform > * {
            padding-top: 0.375em; }
      .row.gtr-50 {
        margin-top: 0;
        margin-left: -0.75em; }
        .row.gtr-50 > * {
          padding: 0 0 0 0.75em; }
        .row.gtr-50.gtr-uniform {
          margin-top: -0.75em; }
          .row.gtr-50.gtr-uniform > * {
            padding-top: 0.75em; }
      .row {
        margin-top: 0;
        margin-left: -1.5em; }
        .row > * {
          padding: 0 0 0 1.5em; }
        .row.gtr-uniform {
          margin-top: -1.5em; }
          .row.gtr-uniform > * {
            padding-top: 1.5em; }
      .row.gtr-150 {
        margin-top: 0;
        margin-left: -2.25em; }
        .row.gtr-150 > * {
          padding: 0 0 0 2.25em; }
        .row.gtr-150.gtr-uniform {
          margin-top: -2.25em; }
          .row.gtr-150.gtr-uniform > * {
            padding-top: 2.25em; }
      .row.gtr-200 {
        margin-top: 0;
        margin-left: -3em; }
        .row.gtr-200 > * {
          padding: 0 0 0 3em; }
        .row.gtr-200.gtr-uniform {
          margin-top: -3em; }
          .row.gtr-200.gtr-uniform > * {
            padding-top: 3em; } }
  @media screen and (max-width: 480px) {
    .row {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      align-items: stretch; }
      .row > * {
        box-sizing: border-box; }
      .row.gtr-uniform > * > :last-child {
        margin-bottom: 0; }
      .row.aln-left {
        justify-content: flex-start; }
      .row.aln-center {
        justify-content: center; }
      .row.aln-right {
        justify-content: flex-end; }
      .row.aln-top {
        align-items: flex-start; }
      .row.aln-middle {
        align-items: center; }
      .row.aln-bottom {
        align-items: flex-end; }
      .row > .imp-xsmall {
        order: -1; }
      .row > .col-1-xsmall {
        width: 8.33333%; }
      .row > .off-1-xsmall {
        margin-left: 8.33333%; }
      .row > .col-2-xsmall {
        width: 16.66667%; }
      .row > .off-2-xsmall {
        margin-left: 16.66667%; }
      .row > .col-3-xsmall {
        width: 25%; }
      .row > .off-3-xsmall {
        margin-left: 25%; }
      .row > .col-4-xsmall {
        width: 33.33333%; }
      .row > .off-4-xsmall {
        margin-left: 33.33333%; }
      .row > .col-5-xsmall {
        width: 41.66667%; }
      .row > .off-5-xsmall {
        margin-left: 41.66667%; }
      .row > .col-6-xsmall {
        width: 50%; }
      .row > .off-6-xsmall {
        margin-left: 50%; }
      .row > .col-7-xsmall {
        width: 58.33333%; }
      .row > .off-7-xsmall {
        margin-left: 58.33333%; }
      .row > .col-8-xsmall {
        width: 66.66667%; }
      .row > .off-8-xsmall {
        margin-left: 66.66667%; }
      .row > .col-9-xsmall {
        width: 75%; }
      .row > .off-9-xsmall {
        margin-left: 75%; }
      .row > .col-10-xsmall {
        width: 83.33333%; }
      .row > .off-10-xsmall {
        margin-left: 83.33333%; }
      .row > .col-11-xsmall {
        width: 91.66667%; }
      .row > .off-11-xsmall {
        margin-left: 91.66667%; }
      .row > .col-12-xsmall {
        width: 100%; }
      .row > .off-12-xsmall {
        margin-left: 100%; }
      .row.gtr-0 {
        margin-top: 0;
        margin-left: 0em; }
        .row.gtr-0 > * {
          padding: 0 0 0 0em; }
        .row.gtr-0.gtr-uniform {
          margin-top: 0em; }
          .row.gtr-0.gtr-uniform > * {
            padding-top: 0em; }
      .row.gtr-25 {
        margin-top: 0;
        margin-left: -0.375em; }
        .row.gtr-25 > * {
          padding: 0 0 0 0.375em; }
        .row.gtr-25.gtr-uniform {
          margin-top: -0.375em; }
          .row.gtr-25.gtr-uniform > * {
            padding-top: 0.375em; }
      .row.gtr-50 {
        margin-top: 0;
        margin-left: -0.75em; }
        .row.gtr-50 > * {
          padding: 0 0 0 0.75em; }
        .row.gtr-50.gtr-uniform {
          margin-top: -0.75em; }
          .row.gtr-50.gtr-uniform > * {
            padding-top: 0.75em; }
      .row {
        margin-top: 0;
        margin-left: -1.5em; }
        .row > * {
          padding: 0 0 0 1.5em; }
        .row.gtr-uniform {
          margin-top: -1.5em; }
          .row.gtr-uniform > * {
            padding-top: 1.5em; }
      .row.gtr-150 {
        margin-top: 0;
        margin-left: -2.25em; }
        .row.gtr-150 > * {
          padding: 0 0 0 2.25em; }
        .row.gtr-150.gtr-uniform {
          margin-top: -2.25em; }
          .row.gtr-150.gtr-uniform > * {
            padding-top: 2.25em; }
      .row.gtr-200 {
        margin-top: 0;
        margin-left: -3em; }
        .row.gtr-200 > * {
          padding: 0 0 0 3em; }
        .row.gtr-200.gtr-uniform {
          margin-top: -3em; }
          .row.gtr-200.gtr-uniform > * {
            padding-top: 3em; } }

@media screen and (max-width: 736px){
  .mp-args-row.gtr-uniform > *{
    padding-top: 2.5em;   /* <-- increase this for more gap */
  }
  .mp-args-row.gtr-uniform > *:first-child{
    padding-top: 0;
  }
}

/* Section/Article */
section.special, article.special {
  text-align: center; }

header p {
  font-family: "Roboto Slab", serif;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: -0.6em;
  margin-bottom: 3em;
  text-transform: uppercase; }

header.major > :last-child {
  border-bottom: solid 3px var(--brand);
  display: inline-block;
  margin: 0 0 1.2em 0;
  padding: 0 0.75em 0.4em 0; }

header.main > :last-child {
  margin: 0 0 1em 0; }

/* Form */
form {
  margin: 0 0 2em 0; }

label {
  color: var(--text-main);
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0 0 1em 0; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #ffffff;
  border-radius: 0.375em;
  border: none;
  border: solid 1px var(--border-light);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%; }
  input[type="text"]:invalid,
  input[type="password"]:invalid,
  input[type="email"]:invalid,
  input[type="tel"]:invalid,
  input[type="search"]:invalid,
  input[type="url"]:invalid,
  select:invalid,
  textarea:invalid {
    box-shadow: none; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="search"]:focus,
  input[type="url"]:focus,
  select:focus,
  textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand); }

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='var(--border-light)' /%3E%3C/svg%3E");
  background-size: 1.25em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  height: 2.75em;
  padding-right: 2.75em;
  text-overflow: ellipsis; }
  select option {
    color: var(--text-main);
    background: #ffffff; }
  select:focus::-ms-value {
    background-color: transparent; }
  select::-ms-expand {
    display: none; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select {
  height: 2.75em; }

textarea {
  padding: 0.75em 1em; }

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1; }
  input[type="checkbox"] + label,
  input[type="radio"] + label {
    text-decoration: none;
    color: var(--text-soft);
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative; }
    input[type="checkbox"] + label:before,
    input[type="radio"] + label:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      text-transform: none !important;
      font-family: 'Font Awesome 5 Free';
      font-weight: 900; }
    input[type="checkbox"] + label:before,
    input[type="radio"] + label:before {
      background: #ffffff;
      border-radius: 0.375em;
      border: solid 1px var(--border-light);
      content: '';
      display: inline-block;
      font-size: 0.8em;
      height: 2.0625em;
      left: 0;
      line-height: 2.0625em;
      position: absolute;
      text-align: center;
      top: 0;
      width: 2.0625em; }
  input[type="checkbox"]:checked + label:before,
  input[type="radio"]:checked + label:before {
    background: var(--text-main);
    border-color: var(--text-main);
    color: #ffffff;
    content: '\f00c'; }
  input[type="checkbox"]:focus + label:before,
  input[type="radio"]:focus + label:before {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand); }

input[type="checkbox"] + label:before {
  border-radius: 0.375em; }

input[type="radio"] + label:before {
  border-radius: 100%; }

::-webkit-input-placeholder {
  color: var(--text-muted) !important;
  opacity: 1.0; }

:-moz-placeholder {
  color: var(--text-muted) !important;
  opacity: 1.0; }

::-moz-placeholder {
  color: var(--text-muted) !important;
  opacity: 1.0; }

:-ms-input-placeholder {
  color: var(--text-muted) !important;
  opacity: 1.0; }

/* Box */
.box {
  border-radius: 0.375em;
  border: solid 1px var(--border-light);
  margin-bottom: 2em;
  padding: 1.5em; }
  .box > :last-child,
  .box > :last-child > :last-child,
  .box > :last-child > :last-child > :last-child {
    margin-bottom: 0; }
  .box.alt {
    border: 0;
    border-radius: 0;
    padding: 0; }

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative; }
  .icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 400; }
  .icon > .label {
    display: none; }
  .icon:before {
    line-height: inherit; }
  .icon.solid:before {
    font-weight: 900; }
  .icon.brands:before {
    font-family: 'Font Awesome 5 Brands'; }
    

/* Image */
.image {
  border-radius: 0.375em;
  border: 0;
  display: inline-block;
  position: relative; }
  .image img {
    border-radius: 0.375em;
    display: block; }
  .image.left, .image.right {
    max-width: 40%; }
    .image.left img, .image.right img {
      width: 100%; }
  .image.left {
    float: left;
    padding: 0 1.5em 1em 0;
    top: 0.25em; }
  .image.right {
    float: right;
    padding: 0 0 1em 1.5em;
    top: 0.25em; }
  .image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%; }
    .image.fit img {
      width: 100%; }
  .image.main {
    display: block;
    margin: 0 0 3em 0;
    width: 100%; }
    .image.main img {
      width: 100%; }

a.image {
  overflow: hidden; }
  a.image img {
    -moz-transition: -moz-transform 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease;
    -ms-transition: -ms-transform 0.2s ease;
    transition: transform 0.2s ease; }
  a.image:hover img {
    -moz-transform: scale(1.075);
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075); }

/* List */
ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em; }
  ol li {
    padding-left: 0.25em; }

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em; }
  ul li {
    padding-left: 0.5em; }
  ul.alt {
    list-style: none;
    padding-left: 0; }
    ul.alt li {
      border-top: solid 1px var(--border-light);
      padding: 0.5em 0; }
      ul.alt li:first-child {
        border-top: 0;
        padding-top: 0;
        margin-bottom: 0.6em; }

ul li + li {
  margin-top: 0.6em;
}

ul.actions li + li {
  margin-top: 0;
}

/* Mobile steps list styling */
@media screen and (max-width: 736px){

  .mp-steps__list {
    font-size: 0.8rem;      /* bigger text */
    line-height: 1.65;
    padding-left: 1.2em;     /* clean ordered list indent */
  }

  .mp-steps__list li {
    margin-bottom: 0.75em;   /* space between rows */
  }

  .mp-steps__list li:last-child {
    margin-bottom: 0;
  }

  .mp-steps__list .icon {
    margin-left: 0.4em;      /* small spacing before icon */
    font-size: 0.95em;
  }
}


dl {
  margin: 0 0 2em 0; }
  dl dt {
    display: block;
    font-weight: 600;
    margin: 0 0 1em 0; }
  dl dd {
    margin-left: 2em; }

/* Actions */
ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0; }
  ul.actions li {
    padding: 0 0 0 1em;
    vertical-align: middle; }
  ul.actions.special {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    margin-left: 0; }
    ul.actions.special li:first-child {
      padding-left: 0; }
  ul.actions.stacked {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0; }
    ul.actions.stacked li {
      padding: 1.3em 0 0 0; }
      ul.actions.stacked li:first-child {
        padding-top: 0; }
  ul.actions.fit {
    width: calc(100% + 1em); }
    ul.actions.fit li {
      -moz-flex-grow: 1;
      -webkit-flex-grow: 1;
      -ms-flex-grow: 1;
      flex-grow: 1;
      -moz-flex-shrink: 1;
      -webkit-flex-shrink: 1;
      -ms-flex-shrink: 1;
      flex-shrink: 1;
      width: 100%; }
      ul.actions.fit li > * {
        width: 100%; }
    ul.actions.fit.stacked {
      width: 100%; }

/* ICONS */
ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-flex;
  align-items: center;  }

ul.icons li:last-child {
  padding-right: 0; }

ul.icons li .icon:before {
  font-size: 1.3em; }

  ul.icons li.lang a {
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 1em;
  text-decoration: none;
  color:var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 4px 2px;  }

ul.icons li.lang a::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.0em;
  background-size: cover;
  background-position: center;
  border-radius: 2px; }

ul.icons li.lang a[lang="hu"]::before {
  background-image: url("/images/hu.svg");  }

ul.icons li.lang a[lang="en"]::before {
  background-image: url("/images/en.svg");  }

ul.icons li.lang a:hover {
  text-decoration: underline; }

ul.icons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px; }

ul.icons .icon-text {
  font-weight: 700;
  font-size: .9em;
  letter-spacing: .02em;
  white-space: nowrap;
  color:var(--text-soft);  }

ul.icons a:hover .icon-text {
  color: var(--brand); }

ul.icons a.icon::before {
  width: 1.25em;
  text-align: center; }

ul.icons a,
ul.icons a:hover,
ul.icons a:focus,
ul.icons a:active {
  border-bottom: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;  }

/* Contact */
ul.contact {
  list-style: none;
  padding: 0; }
  ul.contact li {
    text-decoration: none;
    border-top: solid 1px var(--border-light);
    margin: 1.5em 0 0 0;
    padding: 1.5em 0 0 3em;
    position: relative; }
    ul.contact li:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      text-transform: none !important;
      font-family: 'Font Awesome 5 Free';
      font-weight: 400; }
    ul.contact li:before {
      color: var(--brand);
      display: inline-block;
      font-size: 1.5em;
      height: 1.125em;
      left: 0;
      line-height: 1.125em;
      position: absolute;
      text-align: center;
      top: 1em;
      width: 1.5em; }
    ul.contact li:first-child {
      border-top: 0;
      margin-top: 0;
      padding-top: 0; }
      ul.contact li:first-child:before {
        top: 0; }
    ul.contact li a {
      color: inherit; }

/* Pagination */
ul.pagination {
  cursor: default;
  list-style: none;
  padding-left: 0; }
  ul.pagination li {
    display: inline-block;
    padding-left: 0;
    vertical-align: middle; }
    ul.pagination li > .page {
      -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      border-bottom: 0;
      border-radius: 0.375em;
      display: inline-block;
      font-size: 0.8em;
      font-weight: 600;
      height: 2em;
      line-height: 2em;
      margin: 0 0.125em;
      min-width: 2em;
      padding: 0 0.5em;
      text-align: center; }
      ul.pagination li > .page.active {
        background-color: var(--brand);
        color: #ffffff !important; }
        ul.pagination li > .page.active:hover {
          background-color: var(--brand); }
        ul.pagination li > .page.active:active {
          background-color: var(--brand); }
    ul.pagination li:first-child {
      padding-right: 0.75em; }
    ul.pagination li:last-child {
      padding-left: 0.75em; }
  @media screen and (max-width: 480px) {
    ul.pagination li:nth-child(n+2):nth-last-child(n+2) {
      display: none; }
    ul.pagination li:first-child {
      padding-right: 0; } }

/* ==== TABLE ==== */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto; }

table {
  margin: 0 0 2em 0;
  width: 100%; }
  table tbody tr {
    border: solid 1px var(--border-light);
    border-left: 0;
    border-right: 0; }
    table tbody tr:nth-child(2n + 1) {
      background-color: rgba(230, 235, 237, 0.25); }
  table td {
    padding: 0.75em 0.75em; }
  table th {
    color: var(--text-main);
    font-size: 0.9em;
    font-weight: 600;
    padding: 0 0.75em 0.75em 0.75em;
    text-align: left; }
  table thead {
    border-bottom: solid 2px var(--border-light); }
  table tfoot {
    border-top: solid 2px var(--border-light); }
  table.alt {
    border-collapse: separate; }
    table.alt tbody tr td {
      border: solid 1px var(--border-light);
      border-left-width: 0;
      border-top-width: 0; }
      table.alt tbody tr td:first-child {
        border-left-width: 1px; }
    table.alt tbody tr:first-child td {
      border-top-width: 1px; }
    table.alt thead {
      border-bottom: 0; }
    table.alt tfoot {
      border-top: 0; }

/* ==== BUTTON ==== */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 0.375em;
  border: 0;
  box-shadow: inset 0 0 0 2px var(--brand);
  color: var(--brand) !important;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto Slab", serif;
  font-size: 0.8em;
  font-weight: 700;
  height: 3.5em;
  letter-spacing: 0.075em;
  line-height: 3.5em;
  padding: 0 2.25em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap; }
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  button:hover,
  .button:hover {
    background-color: var(--brand-softer); }
  input[type="submit"]:active,
  input[type="reset"]:active,
  input[type="button"]:active,
  button:active,
  .button:active {
    background-color: var(--brand-soft); }
  input[type="submit"].icon:before,
  input[type="reset"].icon:before,
  input[type="button"].icon:before,
  button.icon:before,
  .button.icon:before {
    margin-right: 0.5em; }
  input[type="submit"].fit,
  input[type="reset"].fit,
  input[type="button"].fit,
  button.fit,
  .button.fit {
    width: 100%; }
  input[type="submit"].small,
  input[type="reset"].small,
  input[type="button"].small,
  button.small,
  .button.small {
    font-size: 0.6em; }
  input[type="submit"].large,
  input[type="reset"].large,
  input[type="button"].large,
  button.large,
  .button.large {
    font-size: 1em;
    height: 3.65em;
    line-height: 3.65em; }
  input[type="submit"].primary,
  input[type="reset"].primary,
  input[type="button"].primary,
  button.primary,
  .button.primary {
    background-color: var(--brand);
    box-shadow: none;
    color: #ffffff !important; }
    input[type="submit"].primary:hover,
    input[type="reset"].primary:hover,
    input[type="button"].primary:hover,
    button.primary:hover,
    .button.primary:hover {
      background-color: var(--brand-strong); }
    input[type="submit"].primary:active,
    input[type="reset"].primary:active,
    input[type="button"].primary:active,
    button.primary:active,
    .button.primary:active {
      background-color: var(--brand-strong); }
  input[type="submit"].disabled, input[type="submit"]:disabled,
  input[type="reset"].disabled,
  input[type="reset"]:disabled,
  input[type="button"].disabled,
  input[type="button"]:disabled,
  button.disabled,
  button:disabled,
  .button.disabled,
  .button:disabled {
    pointer-events: none;
    opacity: 0.25; }

/* ==== Mini Posts ==== */
.mini-posts article {
  border-top: solid 1px var(--border-light);
  margin-top: 2em;
  padding-top: 2em; }
  .mini-posts article .image {
    display: block;
    margin: 0 0 1.5em 0; }
    .mini-posts article .image img {
      display: block;
      width: 100%; }
  .mini-posts article:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0; }

    /* Make the Welcome text look like normal sidebar text (not link-green) */
#sidebar .welcome-text,
#sidebar .welcome-text p {
  color: var(--text-muted);             /* back to normal text color */
}

/* ==== FEATURES ==== */
.features {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin: 0 0 2em -1.8em;
  width: calc(100% + 1.8em);
}

.features article {
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;

  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;

  margin: 0 0 3em 1.8em;
  position: relative;
  width: calc(50% - 1.8em);
}

.features article:nth-child(2n - 1) {
  margin-right: 0.9em;
}

.features article:nth-child(2n) {
  margin-left: 0.9em;
}

.features article:nth-last-child(1),
.features article:nth-last-child(2) {
  margin-bottom: 0;
}

/* === ICON COLUMN (NARROWER) === */
.features article .icon {
  flex: 0 0 3.9em;
  width: 3.9em;
  height: 3.9em;
  line-height: 3.9em;

  margin: 0.1em 0.65em 0 0;   /* less left spacing + closer text */
  text-align: center;

  display: block;
  position: relative;
  align-self: flex-start;
}

.features article .icon:before {
  color: var(--brand);
  font-size: 1.22rem;
  position: relative;
  top: 0.01em;
}

.features article .icon:after {
  transform: rotate(45deg);

  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;

  width: 2.6em;
  height: 2.6em;
  margin: -1.3em 0 0 -1.3em;

  border-radius: 0.32rem;
  border: solid 2px var(--accent-soft);
  background: var(--accent-soft);
  pointer-events: none;
}

.features article .content {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 0.6em;       /* more breathing room on the right */
}

/* Align diamond center with title baseline (optical) */
.features article .content h3 {
  margin-top: 0;
  line-height: 1.15;
}

.features article .content > :last-child {
  margin-bottom: 0;
}

section.adomanyozas .features article .feature-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
  margin: 0 0 0.9em 0;
}

/* Keep title text naturally aligned */
section.adomanyozas .features article .feature-title a {
  flex: 1;
  border-bottom: 0;
}

/* Icon sits on the right */
section.adomanyozas .features article .feature-title .icon {
  order: 2;
  flex: 0 0 3.6em;
  width: 3.6em;
  height: 3.6em;
  line-height: 3.6em;
  margin: 0;
  position: relative;
  text-align: center;
}

/* Diamond sizing */
section.adomanyozas .features article .feature-title .icon:after {
  width: 2.45em;
  height: 2.45em;
  margin: -1.225em 0 0 -1.225em;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media screen and (max-width: 980px) {
  .features {
    margin: 0 0 2em 0;
    width: 100%;
  }

  .features article {
    margin: 0 0 3em 0;
    width: 100%;
  }

  .features article:nth-child(2n - 1),
  .features article:nth-child(2n) {
    margin-left: 0;
    margin-right: 0;
  }

  .features article:nth-last-child(1),
  .features article:nth-last-child(2) {
    margin-bottom: 3em;
  }

  .features article:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .features article {
    flex-direction: column;
    align-items: flex-start;
  }

  .features article .icon {
    width: 5em;
    height: 5em;
    line-height: 5em;
    margin: 0 0 1em 0;
  }

  .features article .icon:before {
    font-size: 1.4rem;
  }

  .features article .icon:after {
    width: 4em;
    height: 4em;
    margin: -2em 0 0 -2em;
  }
}

.features article .content .feature-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin: 0 0 .9rem 0;
}

/* ==== POSTS ==== */
.posts {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 2em -6em;
  width: calc(100% + 6em); }
  .posts article {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    margin: 0 0 6em 6em;
    position: relative;
    width: calc(33.33333% - 6em); }
    .posts article:before {
      background: var(--border-light);
      content: '';
      display: block;
      height: calc(100% + 6em);
      left: -3em;
      position: absolute;
      top: 0;
      width: 1px; }
    .posts article:after {
      background: var(--border-light);
      bottom: -3em;
      content: '';
      display: block;
      height: 1px;
      position: absolute;
      right: 0;
      width: calc(100% + 6em); }
    .posts article > :last-child {
      margin-bottom: 0; }
    .posts article .image {
      display: block;
      margin: 0 0 2em 0; }
      .posts article .image img {
        display: block;
        width: 100%; }
  @media screen and (min-width: 1681px) {
    .posts article:nth-child(3n + 1):before {
      display: none; }
    .posts article:nth-child(3n + 1):after {
      width: 100%; }
    .posts article:nth-last-child(1), .posts article:nth-last-child(2), .posts article:nth-last-child(3) {
      margin-bottom: 0; }
      .posts article:nth-last-child(1):before, .posts article:nth-last-child(2):before, .posts article:nth-last-child(3):before {
        height: 100%; }
      .posts article:nth-last-child(1):after, .posts article:nth-last-child(2):after, .posts article:nth-last-child(3):after {
        display: none; } }
  @media screen and (max-width: 1680px) {
    .posts article {
      width: calc(50% - 6em); }
      .posts article:nth-last-child(3) {
        margin-bottom: 6em; } }
  @media screen and (min-width: 481px) and (max-width: 1680px) {
    .posts article:nth-child(2n + 1):before {
      display: none; }
    .posts article:nth-child(2n + 1):after {
      width: 100%; }
    .posts article:nth-last-child(1), .posts article:nth-last-child(2) {
      margin-bottom: 0; }
      .posts article:nth-last-child(1):before, .posts article:nth-last-child(2):before {
        height: 100%; }
      .posts article:nth-last-child(1):after, .posts article:nth-last-child(2):after {
        display: none; } }
  @media screen and (max-width: 736px) {
    .posts {
      margin: 0 0 2em -4.5em;
      width: calc(100% + 4.5em); }
      .posts article {
        margin: 0 0 4.5em 4.5em;
        width: calc(50% - 4.5em); }
        .posts article:before {
          height: calc(100% + 4.5em);
          left: -2.25em; }
        .posts article:after {
          bottom: -2.25em;
          width: calc(100% + 4.5em); }
        .posts article:nth-last-child(3) {
          margin-bottom: 4.5em; } }
  @media screen and (max-width: 480px) {
    .posts {
      margin: 0 0 2em 0;
      width: 100%; }
      .posts article {
        margin: 0 0 4.5em 0;
        width: 100%; }
        .posts article:before {
          display: none; }
        .posts article:after {
          width: 100%; }
        .posts article:last-child {
          margin-bottom: 0; }
          .posts article:last-child:after {
            display: none; } }

/* ==== WRAPPER ==== */
#wrapper {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  min-height: 100vh; }

/* ==== MAIN ==== */
#main {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%; }
  #main > .inner {
    padding: 0 6em 0.1em 6em ;
    margin: 0 auto;
    max-width: 110em; }

    /* PULL BANNER UP - NO PADDING */

  #main > .inner > section {
    padding: 5em 0 3em 0;
    border-top: solid 2px var(--border-light);   }

  #main > .inner > section:first-of-type{
    border-top: 0;
    padding-top: 0;   }

 @media screen and (max-width: 1680px) {
  #main > .inner { padding: 0 5em 0.1em 5em; }
  #main > .inner > section { padding:  4.5em 0 2.75em 0; }
  #main > .inner > section:first-of-type { padding-top: 0; }}

@media screen and (max-width: 1280px) {
  #main > .inner { padding: 0 4em 0.1em 4em; }
  #main > .inner > section { padding: 3.75em 0 2.25em 0; }
  #main > .inner > section:first-of-type { padding-top: 0; }}

@media screen and (max-width: 736px) {
  #main > .inner { padding: 0 2em 0.1em 2em; }
  #main > .inner > section { padding: 3em 0 1.25em 0; }
  #main > .inner > section:first-of-type { padding-top: 0; }}


/* ==== SIDEBAR ==== */
#search form {
  text-decoration: none;
  position: relative; }
  #search form:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; }
  #search form:before {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    color: var(--text-soft);
    content: '\f002';
    cursor: default;
    display: block;
    font-size: 1.5em;
    height: 2em;
    line-height: 2em;
    opacity: 0.325;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 2em; }
  #search form input[type="text"] {
    padding-right: 2.75em; }

#sidebar {
  -moz-flex-grow: 0;
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  -moz-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
  -webkit-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
  -ms-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
  transition: margin-left 0.5s ease, box-shadow 0.5s ease;
  background-color: var(--bg-soft);
  font-size: 0.9em;
  position: relative;
  width: 26em; }
  #sidebar h2 {
    font-size: 1.38889em; }
  #sidebar > .inner {
    padding: 2.22222em 2.22222em 2.44444em 2.22222em ;
    position: relative;
    width: 26em; }
    #sidebar > .inner > * {
      border-bottom: solid 2px var(--border-light);
      margin: 0 0 3.5em 0;
      padding: 0 0 3.5em 0; }
      #sidebar > .inner > * > :last-child {
        margin-bottom: 0; }
      #sidebar > .inner > *:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0; }
    #sidebar > .inner > .alt {
      background-color: #eff1f2;
      border-bottom: 0;
      margin: -2.22222em 0 4.44444em -2.22222em;
      padding: 2.22222em;
      width: calc(100% + 4.44444em); }
  #sidebar .toggle {
    text-decoration: none;
    -moz-transition: left 0.5s ease;
    -webkit-transition: left 0.5s ease;
    -ms-transition: left 0.5s ease;
    transition: left 0.5s ease;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    border: 0;
    display: block;
    height: 7.5em;
    left: 26em;
    line-height: 7.5em;
    outline: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    text-indent: -15em;
    white-space: nowrap;
    top: 0;
    width: 6em;
    z-index: 10000; }
    #sidebar .toggle:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      text-transform: none !important;
      font-family: 'Font Awesome 5 Free';
      font-weight: 900; }
    #sidebar .toggle:before {
      content: '\f0c9';
      font-size: 2rem;
      height: inherit;
      left: 0;
      line-height: inherit;
      position: absolute;
      text-indent: 0;
      top: 0;
      width: inherit; }
  #sidebar.inactive {
    margin-left: -26em; }
  @media screen and (max-width: 1680px) {
    #sidebar {
      width: 24em; }
      #sidebar > .inner {
        padding: 1.66667em 1.66667em 1.33333em 1.66667em ;
        width: 24em; }
        #sidebar > .inner > .alt {
          margin: -1.66667em 0 3.33333em -1.66667em;
          padding: 1.66667em;
          width: calc(100% + 3.33333em); }
      #sidebar .toggle {
        height: 6.25em;
        left: 24em;
        line-height: 6.25em;
        text-indent: 5em;
        width: 5em; }
        #sidebar .toggle:before {
          font-size: 1.5rem; }
      #sidebar.inactive {
        margin-left: -24em; } }
  @media screen and (max-width: 1280px) {
    #sidebar {
      box-shadow: 0 0 5em 0 rgba(0, 0, 0, 0.175);
      height: 100%;
      left: 0;
      position: fixed;
      top: 0;
      z-index: 10000; }
      #sidebar.inactive {
        box-shadow: none; }
      #sidebar > .inner {
        -webkit-overflow-scrolling: touch;
        height: 100%;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        top: 0; }
        #sidebar > .inner:after {
          content: '';
          display: block;
          height: 4em;
          width: 100%; }
      #sidebar .toggle {
        text-indent: 6em;
        width: 6em; 
        background: rgba(222, 225, 226, 0.75);   /* <-- add */
        border-radius: 0.375em; }
        #sidebar .toggle:before {
          font-size: 1.5rem;
          margin-left: -0.4375em; }
      body.is-preload #sidebar {
        display: none; } }
        /* xxxx */
  @media screen and (max-width: 736px) {
    #sidebar .toggle {
      text-indent: 7.25em;
      width: 7.25em;
      background: rgba(222, 225, 226, 0.75);
      border-radius: 0.375em; }
    #sidebar .toggle:before{                 /* Hamburger icon: full-size overlay + centered */
      position: absolute !important;
      inset: 0 !important;                   /* top/right/bottom/left: 0 */
      width: 100% !important;
      height: 100% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      transform: none !important;           /* kill the old translate */
      margin: 0 !important;                 /* kill old nudges */
      line-height: 1 !important; }           /* stable centering */
    #sidebar .toggle:after{
      content: none !important; } }

/* ==== HEADER ==== */
#header {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  border-bottom: solid 5px var(--brand);
  padding: 2em 0 1.5em 0;   /* 1.5em 0 1em 0; - this is too narrow */
  position: relative;
  align-items: center; }

  #header > * {
    margin-bottom: 0; }

  #header .logo {
    border-bottom: 0;
    color: inherit;
    font-family: "Roboto Slab", serif;
    font-size: 1.35em;
    display: inline-flex;
    align-items: center;
    gap: .35em;
    flex: 1;
    margin-top: 2px;
    position: relative; top: 2px;  } 

  #header .logo-tagline {
    font-size: .85em;
    font-weight: 400;
    color: var(--text-soft);
    position: relative;
    padding-left: 0.75em;
    position: relative; top: 2px; }

#header .logo-tagline::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-muted);             /* softer than text */
  font-weight: 400;
}

#header .logo strong {
  position: relative;
  top: 1px;   /* try 1px if 2px feels too much */
}
/* xxx */
  #header .icons {
    text-align: right;
    margin-left: auto;
    padding-left: 0;
    flex: 0 0 auto;}

  @media screen and (max-width: 1680px) {
    #header {
      padding-top: 5em; }  }

#header .header-logo{
  flex: 0 0 auto;
  margin-right: 1rem;                                /* space between logo and text */
  line-height: 0;
  text-align: left; }                                /* avoid right-align weirdness */

#header .header-logo img {
  height: 60px;        /* adjust */
  width: auto;
  display: block; }

.header-logo a {
  text-decoration: none;
  border-bottom: none;  }

/* Mobile: shrink header logo */
@media screen and (max-width: 736px) {
  #header .header-logo img {
    height: 40px;   /* try 36–44px */
  }

  /* optional: tighten header so it doesn't get too tall */
  #header {
    padding: 4.5em 0 0.75em 0;  } }

/* ==== Banner ==== */
#banner {
  padding: 6em 0 4em 0 ;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex; }
  #banner h1 {
    margin-top: -0.125em; }
  #banner .content {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    width: 50%; }
  #banner .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    display: block;
    margin: 0 0 2em 4em;
    width: 50%; }
    #banner .image img {
      height: 100%;
      -moz-object-fit: cover;
      -webkit-object-fit: cover;
      -ms-object-fit: cover;
      object-fit: cover;
      -moz-object-position: center;
      -webkit-object-position: center;
      -ms-object-position: center;
      object-position: center;
      width: 100%; }
  @media screen and (orientation: portrait) {
    #banner {
      -moz-flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
      #banner h1 br {
        display: none; }
      #banner .content {
        -moz-flex-grow: 0;
        -webkit-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
        -moz-flex-shrink: 0;
        -webkit-flex-shrink: 0;
        -ms-flex-shrink: 0;
        flex-shrink: 0;
        width: 100%; }
      #banner .image {
        -moz-flex-grow: 0;
        -webkit-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
        -moz-flex-shrink: 0;
        -webkit-flex-shrink: 0;
        -ms-flex-shrink: 0;
        flex-shrink: 0;
        margin: 0 0 4em 0;
        height: 25em;
        max-height: 50vh;
        min-height: 18em;
        width: 100%; } }
  @media screen and (orientation: portrait) and (max-width: 480px) {
    #banner .image {
      max-height: 35vh; } }

/* ==== HERO background ==== */

#banner.mp-hero{
  position: relative;
  overflow: hidden;
  padding: 2em 0 4em 0;                                 /* same vertical rhythm as original banner */
  --hero-bg: none;                                      /* default: mobile loads nothing */
}

#banner.mp-hero::before { /* background */
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);                    /* <-- key line */
  background-size: cover;
  background-position: 65% center;                      /* ← key change */
  background-repeat: no-repeat;
  z-index: 0;
}

#banner.mp-hero::after{                                 /* white overlay */
  content:""; 
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.1);                 /* adjust transparency from 0 to 0.75-0.82 */
  z-index: 1;
}

#banner.mp-hero .mp-hero__inner{                        /* This is the "inner" alignment container */
  position: relative;
  z-index: 2;
  padding: 0 !important;
  max-width: none !important;
  margin: 0 !important;          
}

#banner.mp-hero .content{ width: 100% !important; max-width: 44em; }

#banner.mp-hero .mp-hero__content{
  padding-left: 2.5em;
  padding-top: 4.5em;                                   /* global top breathing space */
  padding-bottom: 1.5em;  }

#banner.mp-hero.has-breadcrumbs .mp-hero__content{
  padding-top: 0.75em;  }                                /* small gap from green line to breadcrumb */

#banner.mp-hero.has-breadcrumbs .mp-breadcrumbs{         /* Space between breadcrumb and H1 (robust: doesn't depend on adjacency) */
  margin: 0 0 2.75em 0;                                       /* big gap breadcrumb -> H1 */
  padding: 0;   }


#banner.mp-hero.has-breadcrumbs h1{                      /* Ensure H1 doesn't add extra top margin weirdness */
  margin-top: 0; } 

@media screen and (max-width: 1680px){                   /* Match template breakpoints exactly */
  #banner.mp-hero .mp-hero__inner{ padding: 0 5em; }
  #banner.mp-hero{ padding: 5em 0 3em 0; }  }
@media screen and (max-width: 1280px){
  #banner.mp-hero .mp-hero__inner{ padding: 0 4em; }
  #banner.mp-hero{ padding: 4em 0 2em 0; }  }
@media screen and (max-width: 736px){
  #banner.mp-hero .mp-hero__inner{ padding: 0 2em; }
  #banner.mp-hero{ padding: 3em 0 1em 0; }
  #banner.mp-hero .mp-hero__content{ padding-left: 0 !important; padding-right: 0 !important; } }

@media screen and (min-width: 1280px) and (max-width: 1380px) {
  #banner.mp-hero::before {
    background-position: 60% center;  } }

.mp-hero__content h3 {
  margin-top: 2.4em;                                                      /* space above section headings */
  margin-bottom: 0.6em; }                                                 /* keep text close */  

.mp-hero__content .actions {
  margin-top: 2.75em; }

@media screen and (max-width: 736px) {
  #banner.mp-hero::after {
    background-image: none !important;   }  }

#banner.mp-hero .image {
  display: block; }

@media screen and (min-width: 737px) {
  #banner.mp-hero .image {
    display: none;  } }

@media screen and (max-width: 480px){
  .actions{
    flex-wrap: wrap;  }
  .actions li{
    width: 100%;
    margin-bottom: 1em; }
  .actions li > *{
    width: 100%;
    text-align: center;  }  }

@media screen and (max-width: 736px) {
  #banner.mp-hero .image {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 629;                                             
    max-height: none;
    min-height: 0;
    background: #fff;   
    overflow: hidden;   
    line-height: 0;        }

  #banner.mp-hero .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;                                                    /* no cropping */
    object-position: right center;                                          /* keep cake on right */
    display: block;
    background: #fff;  } }

@media screen and (min-width: 737px) and (max-width: 925px) {
  #banner.mp-hero::before {
    background-position: 52% center;  } }


/* ==== MENU ==== */
#menu ul {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--text-main);
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  text-transform: uppercase; }
  #menu ul a, #menu ul span {
    border-bottom: 0;
    color: inherit;
    cursor: pointer;
    display: block;
    font-size: 0.9em;
    padding: 0.625em 0; }
    #menu ul a:hover, #menu ul span:hover {
      color: var(--brand); }
    #menu ul a.opener, #menu ul span.opener {
      -moz-transition: color 0.2s ease-in-out;
      -webkit-transition: color 0.2s ease-in-out;
      -ms-transition: color 0.2s ease-in-out;
      transition: color 0.2s ease-in-out;
      text-decoration: none;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
      position: relative; }
      #menu ul a.opener:before, #menu ul span.opener:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        text-transform: none !important;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900; }
      #menu ul a.opener:before, #menu ul span.opener:before {
        -moz-transition: color 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
        -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        -ms-transition: color 0.2s ease-in-out, -ms-transform 0.2s ease-in-out;
        transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
        color: var(--text-muted);
        content: '\f078';
        position: absolute;
        right: 0; }
      #menu ul a.opener:hover:before, #menu ul span.opener:hover:before {
        color: var(--brand); }
      #menu ul a.opener.active + ul, #menu ul span.opener.active + ul {
        display: block; }
      #menu ul a.opener.active:before, #menu ul span.opener.active:before {
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg); }

#menu > ul > li {
  border-top: solid 1px var(--border-light);
  margin: 0.5em 0 0 0;
  padding: 0.5em 0 0 0; }
  #menu > ul > li > ul {
    color: var(--text-muted);
    display: none;
    margin: 0.5em 0 1.5em 0;
    padding-left: 1em; }
    #menu > ul > li > ul a, #menu > ul > li > ul span {
      font-size: 0.8em; }
    #menu > ul > li > ul > li {
      margin: 0.125em 0 0 0;
      padding: 0.125em 0 0 0; }
  #menu > ul > li:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0; }

@media screen and (min-width: 981px) {
  #menu ul a.is-current {
    color: var(--brand);
    color: var(--brand);
    font-weight: 700;
    background: var(--brand-soft);
    border-radius: 0.25em;  }
    #menu .opener.is-current-section {
    color: var(--brand);
    font-weight: 700;  }
}

/* ==== Media block container ==== */
.media-block {
  width: 100%;
  background-image: var(--media-bg, url("/images/media-bg.jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5em 0;
  color: #fff;
}

/* Dark overlay */
.media-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Inner content wrapper */
.media-block-inner{
  margin: -1.5em auto 0 auto;
  max-width: 1200px;
  padding: 0 2em;

  /* CRITICAL: place content above the overlay */
  position: relative;
  z-index: 1;
}

/* Title */
.media-block-inner h2 {
  color: #fff;
  margin-bottom: 0.5em;
}

/* Text */
.media-block-inner p {
  max-width: 640px;
  margin-bottom: 1.5em;
  color: rgba(255, 255, 255, 0.9);
}

/* Button spacing */
.media-block-inner .button {
  margin-bottom: 2.5em;
}

/* Logos strip */
.media-logos {
  display: block;
  background: transparent;
  padding: 0;
  padding-top: 1em;
  border-radius: 4px;
  border-bottom: none;
}

/* Logos image */
.media-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100px;
  margin-top: 1.25em;          /* ensures it's underneath */
  border: 0;
  background: transparent;     /* removes the white card */
  padding: 0;                  /* removes white “border” effect */
  border-radius: 0;
  text-decoration: none;
}

/* Smaller image + right padding inside colorful media block */
.media-block .media-block-img {
  max-width: 520px;      /* control image size */
  margin-left: auto;     /* push toward right */
  padding-right: 6rem;   /* space from right edge */
}

.media-block .media-block-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;   /* keeps the soft card look */
  display: block;
}

/* Raise title + align content to top */
.media-block .media-block-inner {
  padding-top: 0;
  margin-top: 0;
}

.media-block h2 {
  margin-top: 0;
}

@media screen and (max-width: 736px){
  .media-logos{
    display: block;
    width: 100%;
  }
  .media-logos img{
    width: 100%;               /* fill available width */
    height: auto;              /* keep aspect ratio */
    max-width: 100%;
  }
  .media-block {
    padding: 3.5em 0;
  }
  .media-block-inner h2 {
    font-size: 2em;
  }
}

.media-block-inner .button,
.media-logos {
  display: block;              /* forces new line */
  width: fit-content;          /* keep button not full width */
}

/* No underline on hover */
.media-logos:hover {
  border-bottom: none;
}

/* =========================
   SLIDER (single card)
   image on top, text below
   ========================= */

.quote-slider{
  position: relative;
  background: var(--bg-soft);
  padding: 2.4em 4.25em;                 /* reserves space for arrows */
  overflow: hidden;                       /* prevents next slide peeking */
}

/* horizontal track */
.quote-slider .track{
  display: flex;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  width: 100%;
}

.quote-slider .track::-webkit-scrollbar{
  display: none;
}

/* each slide fills the card */
.quote-slider .slide{
  flex: 0 0 100%;
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em;
}

/* avatar on top */
.quote-slider .avatar{
  width: 120px;                           /* adjust as needed (e.g. 110–150) */
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.quote-slider .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text area spans full width (minus card padding) */
.quote-slider .text{
  width: 100%;
  padding: 0 0.25em;
}

.quote-slider blockquote{
  margin: 0 0 1em 0;                      /* bottom only */
  font-style: italic;
  color: rgba(127,136,143,.9);
  border-left: 0;
  padding: 0;
  font-size: 1.05em;
  line-height: 1.6;
}

.quote-slider .who strong{
  display: block;
  color: var(--text-main);
  font-size: 1em;
}

.quote-slider .who span{
  display: block;
  color: var(--text-muted);
  font-size: 0.9em;
  line-height: 1.25;
  margin-top: 0.15em;
}

/* nav arrows (buttons) */
.quote-slider .nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;

  padding: 0 !important;                  /* prevents oval/pill */
  min-width: 0 !important;                /* overrides template buttons */
  line-height: 1 !important;

  border-radius: 50%;
  background: var(--brand);
  color: #fff !important;
  border: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
}

.quote-slider .prev{ left: 10px; }
.quote-slider .next{ right: 10px; }

.quote-slider .nav:hover{
  filter: brightness(0.95);
}

/* mobile tweaks */
@media (max-width: 736px){
  .quote-slider{
    padding: 2.5em 3.75em;                /* still leaves room for arrows */
  }

  .quote-slider .nav{
    width: 48px;
    height: 48px;
  }

  .quote-slider .prev{ left: 8px; }
  .quote-slider .next{ right: 8px; }

  .quote-slider .avatar{
    width: 120px;                         /* keep consistent; change if you want */
  }
}

/* ==== SLIDER (compare variant) vertically centered slides ==== */

.quote-slider--compare .track{
  align-items: stretch;            /* allow slides to take full track height */
}

.quote-slider--compare .slide{
  display: flex;
  align-items: center;             /* vertical centering */
  justify-content: center;         /* horizontal centering of the grid block */
  min-height: 260px;               /* keeps a stable card height across slides */
  gap: 0;                          /* not using the default quote gap */
}

/* Make the compare grid behave consistently */
.quote-slider--compare .compare-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  text-align: center;
}

/* Optional: reduce weird “jump” from default heading margins */
.quote-slider--compare .compare-title{
  margin: 0 0 0.75em 0; }

/* Optional: remove the black focus ring you saw (or style it) */
.quote-slider--compare .nav:focus{
  outline: none; }

.quote-slider--compare .nav:focus-visible{
  outline: 2px solid rgba(0,0,0,0.35);
  outline-offset: 3px; }

@media (max-width: 736px){
  .quote-slider--compare .slide{
    min-height: 220px;   }
  .quote-slider--compare .compare-grid{
    gap: 2em;   } }

.quote-slider--compare{
  background: transparent;
  padding: 0; }

.quote-slider--compare .compare-card{
  background: #f4f4f4; }

.quote-slider--compare .compare-mark{
  font-size: 2.5em;                                       /* noticeably bigger */
  line-height: 1;
  margin: 0 0 1.1em 0; }

.quote-slider--compare .compare-mark--ok{ color: var(--brand); }    /* ✓ and ✕ colors */
.quote-slider--compare .compare-mark--no{ color: #d33; }

.quote-slider--compare .compare-lead{
  font-size: 1.1em;                                       /* slightly larger than body */
  font-weight: 800;                                       /* strong emphasis */
  color: var(--text-main);                                /* theme heading color */
  margin: 0 0 0.6em 0;
  letter-spacing: -0.01em; }                              /* subtle refinement */


.quote-slider--compare .compare-sub{
  font-size: 0.95em;
  line-height: 1.65;
  color: var(--text-soft);                                 /* theme muted */
  margin: 0; }

/* Arrow buttons */
.quote-slider--compare .nav{
  background: var(--brand);
  color: #fff !important;
  border: 0; }

.quote-slider--compare .nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1 !important; }

/* =========================
   BENEFITS PANEL
   ========================= */

.benefits-panel{
  background: #f4f4f4;
  padding: 3em 1.6em;
  border-radius: 0;
}

.benefits-panel .benefits-list li {
  line-height: 1.9;   /* more breathing space inside multi-line items */
}

@media (max-width: 736px){
  .benefits-panel{
    padding: 1.75em 1.5em;
  }
}

/* Extra horizontal breathing room on stacked (mobile) layout */
@media (max-width: 980px){
  .quote-slider,
  .benefits-panel{
    padding-left: 5.25em;
    padding-right: 5.25em;
  }
}

/* ==== Checklist ==== */
.benefits-list{
  list-style: none;
  margin: 0;
  padding: 0; }

.benefits-list li{
  position: relative;
  padding-left: 2.1em;                                                      /* space for the icon */
  margin: 0 0 0.75em 0;
  line-height: 1.6;
  color: rgba(127,136,143,.95);
  font-size: 1em; }


.benefits-list li::before{                                                  /* Green check icon (FontAwesome) */
  content: "\f00c";                                                         /* check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--brand);
  opacity: 0.8;
  font-size: 1.1em; }

.benefits-list-grey {
	background-color: #f2f3f5;
	padding: 1.5em;
	border-radius: 0.5em; }

@media screen and (max-width: 981px) {
	.benefits-list-grey {
		margin-bottom: 1.5em; 	} }

@media screen and (max-width: 736px) {
  .benefits-panel{
    padding: 1.75em 1.5em;  } }     /* top/bottom | left/right */

/* FIX THE TWO GREY BKGD COLUMNS */
@media screen and (min-width: 981px) {                                      /* Equal-height cards (slider + benefits) on desktop */
  .mp-args-row > .col-6 {                                                   /* make each column a flex column */
    display: flex;
    flex-direction: column;  }
  .mp-args-row > .col-6 > .quote-slider,                                    /* optional: keep headers natural height, push card to fill */
  .mp-args-row > .col-6 > .benefits-panel {
    flex: 1 1 auto;                                                         /* fill remaining height */
    min-height: 0;   }                                                      /* prevents overflow weirdness */
  .quote-slider,                                                            /* make sure both “cards” can actually become full height */
  .benefits-panel {
    height: 100%; } 
    .row.mp-args-row {
    margin-left: 0 !important;      /* kill template negative gutter */
    column-gap: 2.5em;              /* space between columns */
  }  
    .row.mp-args-row > [class*="col-"] {
    padding-left: 0 !important;     /* kill template gutter padding */
    width: calc(50% - 1.25em);      /* keep 2 columns with the gap (gap/2) */
  }   }

/* ==== Question List ==== */
.question-list{
  list-style: none;
  margin: 0;
  padding: 0; }

.question-list li{
  position: relative;
  padding-left: 2.1em;                 /* space for the icon */
  margin: 0 0 0.75em 0;
  line-height: 1.6;
  color: rgba(127,136,143,.95);
  font-size: 1em; }

.question-list li::before{             /* Green question mark icon (FontAwesome) */
  content: "\f059";                    /* question-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--brand);
  font-size: 1.1em; }

/* ==== NOPE LIST ==== */
.nope-list{
  list-style: none;
  margin: 0;
  padding: 0; }

.nope-list li{
  position: relative;
  padding-left: 2.1em;           /* space for icon */
  margin: 0 0 0.75em 0;
  line-height: 1.6;
  color: rgba(127,136,143,.95);
  font-size: 1em; }

.nope-list li::before{
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.01em;      /* was 0.15em */
  color: #d64545;
  font-size: 1.1em; }


/* ==== FOOTER ==== */
#footer .copyright {
  color: var(--text);
  font-size: 0.9em; }

#footer .copyright a {
  color: var(--text); }

#footer .copyright .cookie-settings-link {
  color: var(--brand);
  text-decoration: none;
  margin-left: 0.4em;
  white-space: nowrap; }

#footer .copyright .cookie-settings-link:hover,
#footer .copyright .cookie-settings-link:focus {
  text-decoration: underline;
  text-decoration-color: var(--brand-soft); }

.mp-footerblock{
  background: var(--bg-muted);          
  color: var(--text);             
  padding: 2.25em 0;             
  border-top: 0 !important;
  box-shadow: none !important;
  margin-bottom: 5em; }

/* Layout grid */
.mp-footergrid{
  max-width: 110em;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5em;
  padding: 2.25em 2em;  }

.mp-footerblock::before,          /* If your theme adds a hairline via pseudo-elements */
.mp-footerblock::after{
  content: none !important;
  display: none !important; }

#footer{                            /* Footer links for Adatvédelem, jogi nyilatkozat, impresszum, sütikezelés*/
  text-align: left; }

#footer .footer-links{  
  margin: 0.5em 0 0;
  font-size: 0.85em;                 /* slightly smaller */
  color: var(--text);                 /* lighter grey, matches copyright */
  line-height: 1.4;
  white-space: nowrap;             /* keep on one line when space allows */
  overflow: hidden; }

#footer .footer-links a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 0; }

#footer .footer-links a:hover{
  color: var(--brand-strong); }

#footer .footer-links .sep{
  margin: 0 -0.2em;
  color: #aaa;  }

#footer .footer-links--external{
  font-size: 0.8em;
  margin-top: 0.25em; }

/* ==== Titles ==== */
.mp-title{
  color: var(--text);               /* higher contrast than body text */
  margin: 0 0 1em 0;
  font-size: 1.2em;
  letter-spacing: 0.01em; }

.mp-footerblock .mp-title{
  display: inline-block;
  position: relative;
  padding-bottom: 1.6em;  }

.mp-footerblock .mp-title::after{
  content: "";
  position: absolute;
  left: -0.2em;          /* extend to the left */
  bottom: 1em;
  width: calc(100% + 1.2em);  /* extend past text */
  height: 3px;
  background: var(--brand);  }

.mp-footerblock .mp-col .mp-title:not(:first-child){
  margin-top: 2em;  }

/* ==== Map ==== */

 .mp-map{ height: 250px !important; }

.mp-map iframe{                   
  width: 100%;
  height: 100% !important;
  border: 0;
  border-radius: 0.375em;
  position: relative;
 }

.mp-col,                          /* Column text consistency */
.mp-reviews,
.mp-legal,
.mp-contact{
  color: var(--text);               /* ensure all columns follow the dark footer scheme */
  font-size: .95em;                /* contacts now matches middle column */
  line-height: 1.6; }

.mp-rating{                         /* Reviews */
  color: #ff8a3d;                 /* slightly brighter for dark background */
  border-bottom: 0;
  text-decoration: none;  }

.mp-stars{
  width: 90px;
  height: auto;
  margin-left: .4em;
  position: relative;
  top: 2px; }
.mp-dot{
  margin: 0 .6em;
  opacity: .55;   }               /* slightly softer on dark bg */

.mp-link-accent{
  color: var(--brand-strong);               /* accent green that reads well on charcoal */
  border-bottom: 0; }

.mp-subtitle{                     /* Legal block */
  margin: 1.5em 0 .75em;
  color:  var(--text);  }             /* subtitle emphasis */

.mp-contact{                      /* Contacts */
  list-style: none;
  padding: 0;
  margin: 0;  }

.mp-contact li{
  margin: 0 0 .9em 0;
  position: relative;
  padding-left: 2.2em;  }

.mp-contact li::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  color: var(--brand-strong); }

.mp-item-person::before {
	content: "\f007";              /* Font Awesome user icon */
	font-family: "Font Awesome 5 Free";
	font-weight: 900; }

.mp-item-phone::before{
  content: "\f095"; }               /* phone */

.mp-item-email::before{
  content: "\f0e0";   }            /* envelope */

.mp-item-address::before{
  content: "\f3c5";  }             /* map-marker-alt */

.mp-item-hours::before{
  content: "\f017"; }               /* clock */

.mp-item-house::before{
  content: "\f015"; }               /* clock */

 /* ==== Add church SVG ==== */ 
.mp-item-address {
  position: relative;
  padding-left: 2em;  }

.mp-item-address::before {
  content: "";
  position: absolute;
  left: -0.3em !important;         
  top: -0.15em !important;
  width: 1.6em;
  height: 1.6em;
  background-color: currentColor;

  -webkit-mask: url("/images/church.svg") no-repeat center / contain;
  mask: url("/images/church.svg") no-repeat center / contain; }

.mp-label{
  color: var(--text-main);               /* strong label contrast */
  font-weight: 700;
  letter-spacing: 0.02em; }

.mp-value{
  color: var(--text-soft) }

.mp-note{
  margin-top: .35em;
  font-size: 1em;
  color: #cfd3d6; }              /* slightly muted note */

/* Footer links: readable hover highlight on dark background */
.mp-footerblock a{
  color: var(--brand-strong);
  border-bottom: 0;                 /* no underline in footer */
  text-decoration: none;
  background: transparent;
  padding: 0.12em 0.2em;            /* give the highlight breathing room */
  border-radius: 0.2em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mp-footerblock a:hover{
  color: var(--text) !important;
  background-color: var(--brand-soft);
}

.mp-footerblock a:focus-visible,
.mp-footerblock a:active{
  background-color: var(--brand-softer);
  color: #ffffff !important;
}

.mp-footerblock a:hover,
.mp-footerblock a:focus-visible,
.mp-footerblock a:active {
  background-color: var(--brand-soft);
  color: var(--brand) !important;
}

/* Kill ugly mobile tap highlight that can look “black/grey” */
.mp-footerblock a {
  -webkit-tap-highlight-color: transparent;
}

#main > .inner > section.mp-footerblock{
  padding: 0.25em 0 !important;     
  border-top: 0 !important;        
  margin-bottom: 3.5em;        
  margin-top: 5em;  }

.mp-footerblock ul.green-bullet-list {
  margin-bottom: 0;
}

.mp-footerblock ul.green-bullet-list li {
  margin: 0.35em 0;  
  line-height: 1.4;   
}

/* ==== Social icons ==== */
.mp-social{
  display: flex;
  gap: 1em;
  margin-top: 1em; }

.mp-social .icon{
  border-bottom: 0; }

.mp-social .icon:before{
  font-size: 1.25em;
  color: #e6e7e8;   }            /* visible on dark footer */

.mp-social .icon:hover:before{
  color: var(--brand-strong); }

/* responsive */
@media (max-width: 980px){
  .mp-footergrid{
    grid-template-columns: 1fr;   }
  .mp-map iframe{
    height: 220px;    } }

/* ==== VIDEO BAND ==== */

.mp-video-band{
  position: relative;
  padding: 2.75em 0 2.25em 0;
  background-image: var(--band-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.8rem;
  overflow: hidden;
}

/* Dark overlay */
.mp-video-band::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(16,39,57,0.75),
    rgba(16,39,57,0.55)
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events:none;
}

.is-hidden { display:none !important; }

/* =========================================================
   GRID
   ========================================================= */

.mp-video-band__inner{
  position: relative;
  max-width: 110em;
  margin: 0 auto;
  padding: 0 5.5em;

  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  grid-template-areas:
    "header header"
    "left   right";
  gap: 3.5em;
  align-items: start;
}

.mp-video-band__header{ grid-area: header; margin: 0 0 0.75em 0; }
.mp-video-band__left{ grid-area: left; }
.mp-video-band__right{ grid-area: right; }

/* =========================================================
   HEADINGS + TEXT
   ========================================================= */

.mp-video-band h1,
.mp-video-band h2,
.mp-video-band h3,
.mp-video-band h4,
.mp-video-band h5,
.mp-video-band h6{
  color: #ffffff;
}

.mp-video-band__intro{
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5em;
  max-width: 38em;
}

/* =========================================================
   VIDEO FRAME
   ========================================================= */

.mp-video{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 0.6em;
  overflow: hidden;
  box-shadow: 0 1.25em 2.5em rgba(0,0,0,0.25);
  background: #000; /* var(--bg-soft); */
}

.mp-video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   INLINE TEXT LINKS (override MAIN link hover rule)
   ========================================================= */

#main > .inner > section.mp-band-section .mp-video-band 
:where(p, blockquote, dd, li) 
a:not(.button):not(.image):not(.icon):not(.logo){

  color: rgba(190,225,245,0.95) !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  background: transparent !important;

  padding: 0.08em 0.25em;
  border-radius: 0.25em;

  transition: background-color .2s ease, color .2s ease;
}

#main > .inner > section.mp-band-section .mp-video-band 
:where(p, blockquote, dd, li) 
a:not(.button):not(.image):not(.icon):not(.logo):hover,
#main > .inner > section.mp-band-section .mp-video-band 
:where(p, blockquote, dd, li) 
a:not(.button):not(.image):not(.icon):not(.logo):focus{

  background: rgba(195,210,222,0.78) !important;
  color: rgb(16,39,57) !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.mp-video-band .button{
  border-bottom: 0 !important;
  text-decoration: none !important;
}

/* Secondary button (blue-ish) */
.mp-video-band .button:not(.primary){
  color: rgba(160,205,235,0.95) !important;
  background: rgba(70,120,155,0.20);
  box-shadow: inset 0 0 0 2px rgba(120,170,205,0.65) !important;
}

.mp-video-band .button:not(.primary):hover{
  color: #ffffff !important;
  background: rgba(90,150,190,0.35);
  box-shadow: inset 0 0 0 2px rgba(170,210,235,0.85) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px){
  .mp-video-band__inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "right"
      "left";
    gap: 2em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}

@media (max-width: 736px){
  .mp-video-band{ padding: 2.25em 0; }
}

@media (max-width: 480px){
  .mp-video-band__inner{
    padding-left: 2em;
    padding-right: 2em;
  }
}

/* =========================================================
   REMOVE EDITORIAL DIVIDER
   ========================================================= */

#main > .inner > section.mp-band-section{
  border-top: 0;
}

#main > .inner > section.mp-band-section + section{
  border-top: 0;
}

/* Reduce space between H2 and intro text (video band only) */
.mp-video-band .major{
  margin-bottom: 0.25em;   /* was larger from Editorial */
}

.mp-video-band .major h2{
  margin-bottom: 0.15em;  /* tighten heading spacing */
}

/* STICKY HEADER */
@media screen and (max-width: 736px) {

  :root{
    --util-top: 0.75em;
    --util-height: 3.5em;
    --util-side: 1em;
  }

  html, body { height: 100%; }
  body { position: relative; }

  /* Create space so the fixed bar doesn't overlap the logo/text */
  #header{
    padding-top: calc(var(--util-top) + var(--util-height) + 1em);
  }

  /* ===== BACKGROUND SLAB MOVED TO BODY (iOS SAFE) ===== */
  body::before{
    content: "";
    position: fixed;

    /* overshoot above viewport */
    top: calc(-200px - env(safe-area-inset-top));
    left: 0;
    right: 0;

    /* extend down to cover safe-area + utility bar */
    height: calc(
      200px +
      env(safe-area-inset-top) +
      var(--util-top) +
      var(--util-height)
    );

    background: var(--bg-soft);
    border-bottom: 1px solid rgba(0,0,0,.08);
    z-index: 9000;
    pointer-events: none;

    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    will-change: transform;
  }

  /* FIXED utility bar */
  #header .icons{
    position: fixed !important;
    top: calc(var(--util-top) / 2) !important;
    right: var(--util-side);
    left: var(--util-side);
    height: var(--util-height);

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
    gap: 0.9em;

    margin: 0 !important;
    padding: 0 0.9em !important;

    z-index: 9010;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    /* promote layer without affecting layout */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  /* Hamburger */
  #sidebar .toggle{
    position: fixed !important;
    left: var(--util-side);
    top: calc((var(--util-top) + var(--util-height)) / 2 + 3px) !important;

    height: var(--util-height);
    width: var(--util-height);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10001;

    /* keep your centering transform AND add layer promotion */
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
  }

  #header .icons a.fa-envelope{
    position: relative;
    top: 4px;
  }
}

@media screen and (max-width: 736px) {
  #menu > header.major {
    padding-top: calc(var(--util-height) + 0.75em);
  }
}

/* STOP SIDEBAR CUT IN HALF WHILE DRAGGING */
@media screen and (min-width: 1281px) {
  #main {
    width: auto !important;                                     /* kill the 100% that causes overflow */
    flex: 1 1 0% !important;                                    /* let flexbox size it correctly */
    min-width: 0 !important; }                                  /* allow it to shrink instead of overflow */
  #sidebar {
    flex: 0 0 26em !important; }}                               /* hard fix the sidebar width in the flex row */


/* RESPONSIVE FIXES */
@media screen and (min-width: 737px) and (max-width: 1280px) {
  #sidebar .toggle {
    position: fixed;                                            /* keep it stable in the header area */
    left: 0.6em;                                                /* away from the logo */
    top: 2.3em;
    width: 3.25em;                                              /* smaller button */
    height: 3.25em;
    line-height: 3.25em;
    background: rgba(223, 223, 224, 0.95);                    /* visible background */
    border-radius: 0.375em;
    box-shadow: 0 0.25em 0.75em rgba(0,0,0,0.12);
    z-index: 10001;
    text-indent: 10em;    }                                     /* keep label hidden */ 
   #sidebar .toggle:before{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;                                                   /* kill template offset */
    font-size: 1.25rem;  }
    #sidebar > .inner{
    padding-top: 7.5em; }   }                                    /* pushes the whole sidebar content down */ 

@media screen and (min-width: 1281px) and (max-width: 1680px) {
  #sidebar .toggle {
    left: 26.3em;
    top: 0.8em;  }  }

@media screen and (min-width: 737px) and (max-width: 1680px) {  /* Remove top whitespace above main content (737–1680 only) */
  #main > .inner {
    padding-top: 1.4em; } 
  #header {
    padding-top: 0;
    margin-top: 0;  } }

@media screen and (max-width: 980px) {                          /* Hide logo tagline on very small screens */
  .logo-tagline {
    display: none;  } }

/* ==== HOVER STYLING ==== */

.features article .icon:after{                                  
  background-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease; }

.features article:hover .icon:after{
  background-color: var(--brand-soft);                 /* same family as button hover */
  border-color: var(--brand);  }


.mp-checklist li{                                               /* Smooth checklist line hover effects */
  transition: color 0.2s ease, transform 0.2s ease; }

.mp-checklist li::before{
  transition: color 0.2s ease, transform 0.2s ease; }

.mp-checklist li:hover{
  color: #ffffff; }

.mp-checklist li:hover::before{
  color: var(--brand-strong);
  transform: translateX(2px); }

 /* ==== HIDE FORM TEXT ==== */
  
.visually-hidden {                                                /* Accessible, visually-hidden text (keeps it available to screen readers) */
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

/* ==== SUBTLE HERO LINKS ==== */

.mp-hero__content p a {                                           /* Subtle inline links inside the hero text only */
  color: var(--brand);                                               /* subtle grey */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  border-bottom: 0; }                                              /* if your theme adds borders */

.mp-hero__content p a:hover,
.mp-hero__content p a:focus {
  color: var(--brand-strong); }

/* =========================================================
   KLARO – GLOBAL COOKIE NOTICE (#klaro-cookie-notice)
   ========================================================= */

/* Base: make sure it's fixed and above everything */
#klaro-cookie-notice{
  position: fixed !important;
  z-index: 9999 !important;
  box-sizing: border-box !important;
}

/* The inner body should not introduce weird widths */
#klaro-cookie-notice .cn-body{
  box-sizing: border-box !important;
}

/* ---------- Desktop: bottom-right card ---------- */
@media screen and (min-width: 737px){
  #klaro-cookie-notice{
    right: 24px !important;
    bottom: 24px !important;
    left: auto !important;
    top: auto !important;

    width: min(520px, calc(100vw - 48px)) !important;
    max-width: 520px !important;

    margin: 0 !important;
  }

  #klaro-cookie-notice .cn-body{
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ---------- Mobile: full-width bottom sheet ---------- */
@media screen and (max-width: 736px){
  #klaro-cookie-notice{
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 !important;

    border-radius: 0 !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom)) !important;
  }

  #klaro-cookie-notice .cn-body{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Layout: stack "Beállítások" then buttons */
  #klaro-cookie-notice .cn-ok{
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Buttons: vertical, full width */
  #klaro-cookie-notice .cn-buttons{
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  #klaro-cookie-notice .cn-buttons .cm-btn{
    width: 100% !important;
    height: 44px !important;
  }

  /* Optional: keep "Beállítások" aligned left */
  #klaro-cookie-notice .cn-learn-more{
    align-self: flex-start !important;
  }
}
/* =========================================
   KLARO – COMPACT, CENTERED, CLEAN
   ========================================= */

#klaro-cookie-notice .cn-body{
  background: #eceff1 !important;
  box-shadow: 0 5px 14px rgba(0,0,0,0.07) !important;
  padding: 12px 12px !important;   /* tighter */
  text-align: center !important;
}

/* Make the whole lower section centered */
#klaro-cookie-notice .cn-ok{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;   /* THIS fixes left alignment */
  gap: 0px !important;              /* tighter spacing */
}

/* Smaller top paragraph */
#klaro-cookie-notice p{
  margin: 0 0 6px 0 !important;
  font-size: 0.85rem !important;    /* smaller */
  line-height: 1.45 !important;     /* tighter */
  color: var(--text-main) !important;
}

/* "Beállítások" centered and tighter */
#klaro-cookie-notice .cn-learn-more{
  display: inline-block !important;
  margin: 4px auto 6px auto !important;  /* auto left/right centers */
  text-align: center !important;
}

/* Buttons stacked and compact */
#klaro-cookie-notice .cn-buttons{
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100% !important;
}

/* Slimmer buttons */
#klaro-cookie-notice .cn-buttons .cm-btn{
  width: 100% !important;
  height: 40px !important;          /* more compact */
  border-radius: 8px !important;
  font-size: 0.85rem !important;
}

/* Decline button */
#klaro-cookie-notice .cn-decline{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  color: #555 !important;
}

/* Accept button */
#klaro-cookie-notice .cm-btn-success{
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}
/* =========================================================
   KLARO SETTINGS MODAL (cm-modal cm-klaro) – MOBILE CLEAN
   ========================================================= */

/* Hide Klaro toggle switch visuals (pills) */
.cm-modal.cm-klaro .cm-switch{
  display: none !important;
}

@media screen and (max-width: 736px){

  /* ---------- Modal structure: keep inside viewport + scroll body ---------- */
  .cm-modal.cm-klaro{
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  .cm-modal.cm-klaro .cm-body{
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    max-height: 100% !important;

    /* bring content closer to the left / reduce wrapping */
    padding-left: 12px !important;
    padding-right: 12px !important;

    box-sizing: border-box !important;
  }

  .cm-modal.cm-klaro .cm-footer{
    flex-shrink: 0 !important;
    padding: 12px 14px !important;          /* compact footer */
    box-sizing: border-box !important;
  }

  /* ---------- Footer buttons: stacked + compact ---------- */
  .cm-modal.cm-klaro .cm-footer .cm-footer-buttons{
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .cm-modal.cm-klaro .cm-footer .cm-footer-buttons .cm-btn{
    width: 100% !important;
    height: 34px !important;
    padding: 0 10px !important;
    font-size: 0.82rem !important;
    line-height: 1 !important;
    border-radius: 10px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .cm-modal.cm-klaro .cm-footer .cm-powered-by{
    margin-top: 6px !important;
    font-size: 0.7rem !important;
  }

  /* ---------- PURPOSE rows: grid alignment (checkbox | content) ---------- */
  .cm-modal.cm-klaro .cm-purpose{
    display: grid !important;
    grid-template-columns: 18px 1fr !important;   /* tighter checkbox column */
    column-gap: 8px !important;                   /* tighter gap */
    row-gap: 6px !important;
    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  /* checkbox (purpose) */
  .cm-modal.cm-klaro .cm-purpose > .cm-list-input{
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 2px 0 0 0 !important;

    width: 18px !important;
    height: 18px !important;
    opacity: 1 !important;

    accent-color: var(--brand) !important;
    box-sizing: border-box !important;
  }

  /* title label (purpose) */
  .cm-modal.cm-klaro .cm-purpose > .cm-list-label{
    grid-column: 2 !important;
    grid-row: 1 !important;

    display: block !important;  /* avoid old flex layout expecting a switch */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* description (purpose) */
  .cm-modal.cm-klaro .cm-purpose > [id$="-description"]{
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* services block (caret + expanded list) aligns to content column */
  .cm-modal.cm-klaro .cm-purpose .cm-services{
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cm-modal.cm-klaro .cm-purpose .cm-services .cm-caret{
    margin: 0 !important;
    padding: 0 !important;
  }

  .cm-modal.cm-klaro .cm-purpose .cm-services .cm-caret a{
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cm-modal.cm-klaro .cm-purpose .cm-services .cm-content{
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .cm-modal.cm-klaro .cm-purpose .cm-services .cm-content > .cm-service{
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ---------- SERVICE rows: grid alignment (checkbox | content) ---------- */
  .cm-modal.cm-klaro .cm-service > div{
    display: grid !important;
    grid-template-columns: 18px 1fr !important;
    column-gap: 8px !important;
    row-gap: 4px !important;
    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .cm-modal.cm-klaro .cm-service .cm-list-input{
    margin: 2px 0 0 0 !important;
    width: 18px !important;
    height: 18px !important;
    opacity: 1 !important;

    accent-color: var(--brand) !important;
    box-sizing: border-box !important;
  }

  .cm-modal.cm-klaro .cm-service .cm-list-label{
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .cm-modal.cm-klaro .cm-service [id$="-description"]{
    margin: 0 !important;
    padding: 0 !important;
  }

  /* tighten body paragraph spacing */
  .cm-modal.cm-klaro .cm-body p{
    margin: 6px 0 !important;
  }

  /* tighten the "Cél:" lines */
  .cm-modal.cm-klaro .cm-service p.purposes{
    margin: 4px 0 0 0 !important;
  }
}

/* Klaro contextual consent overlay (e.g., YouTube / Maps placeholders) */
.klaro .context-notice {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  padding: 0.9em;
  background: rgba(0,0,0,0.55);
  border-radius: 0.5em;
  text-align: center;
  z-index: 2;
}

.klaro .context-notice p {
  margin: 0;
  max-width: 24em;
  line-height: 1.25;
}

.klaro .context-notice button {
  white-space: nowrap;
}

 /* ==== GREY BACKGROUND FOR BLOCK ==== */
.grey-block {
  background-color: #f4f4f4;
  padding: 2.5em;
  border-left: 4px solid var(--brand);
  height: 100%; }


.add-space-above {                                   /* ==== Utility: Add space above ==== */
  margin-top: 2em; }

.add-more-space-above {                               /* ==== Utility: Add space above ==== */
  margin-top: 4em; }

/* ==== BIG GREEN BULLET LIST ==== */
.green-bullet-list {
  list-style: none;
  margin: -0.2em 0 0 0;   /* top right bottom left */
  padding: 0; }

.green-bullet-list li {
  position: relative;
  padding-left: 1.6em;                                /* space for bullet */
  margin: 0 0 0.45em 0;
  line-height: 1.8em;
  color:var(--text-soft);
  font-size: 1em; }

.green-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--brand);                                   /* your brand green */
  font-size: 1.6em;                                   /* bigger than normal bullet */
  line-height: 1; }

.green-bullet-list--compact li {
  margin: 0.25em 0;
  line-height: 1.8em;
  margin-bottom: 0.4em
}

/* Remove extra space after last item */
.green-bullet-list--compact li:last-child {
  margin-bottom: 0.6em; }

#sidebar .green-bullet-list li {
  color: var(--text-muted);
}

#sidebar .green-bullet-list li strong {
  color: var(--text-soft);
}

/* ==== BLUE BULLET LIST ==== */
.info-list{
  margin: 1.2rem 0 0 0;
}

.info-list > div{
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .25rem .6rem;
  padding: .55rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.info-list > div:first-child{
  border-top: 0;
  padding-top: 0;
}

.info-list dt{
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.info-list dd{
  margin: 0;
  color: var(--text-soft);
}

.info-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.info-list > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.info-list dt {
  font-weight: 700;
  white-space: nowrap;
}

.info-list dd {
  margin: 0;
  color: var(--text-soft);
}

.info-list .info-row-soft {
  align-items: end;   /* instead of baseline */
}

/* Soft row: allow long dt to wrap (desktop still OK) */
.info-list .info-row-soft dt {
  font-weight: 400;       /* as you wanted: not bold */
  white-space: normal;
  color: var(--text-soft); 
}

/* MOBILE: stack long row (prevents overflow / cutoff) */
@media (max-width: 736px) {
  .info-list .info-row-soft {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
    align-items: start;
  }

  .info-list .info-row-soft dd {
    text-align: left;
  }
}

/* =========================
   FAQ (Solid State row/col version)
   ========================= */

/* Make each column stack cards with spacing */
.faq .row > [class*="col-"]{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

/* Card (CLOSED STATE DEFAULT) */
.faq-item{
  position: relative;
  background: rgba(230,235,237,0.35);   /* light grey when closed */
  border: 1px solid rgba(210,215,217,0.75);
  border-radius: 0.5rem;
  padding: 0.25rem 1rem;
  overflow: hidden;
  transition: background 160ms ease, border-color 160ms ease;
}

/* Hover (closed state) */
.faq-item:hover{
  background: rgba(230,235,237,0.55);
}

/* Left accent bar */
.faq-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 160ms ease;
}

/* Button row */
.faq-item .faq-q{
  all: unset;
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;

  display: flex;
  align-items: flex-start;
  gap: 0.85rem;

  padding: 0.9rem 0;
}

/* Focus state */
.faq-item .faq-q:focus-visible{
  outline: 2px solid rgba(109,176,74,0.35);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

/* Question text */
.faq-item .faq-q-text{
  flex: 1 1 0;
  min-width: 0;

  font-family: inherit;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-main);

  overflow-wrap: anywhere;
}

/* Icon box */
.faq-item .faq-icon{
  margin-left: auto;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;

  display: block;
  box-sizing: border-box;

  border: 1px solid rgba(210,215,217,0.75);
  border-radius: 6px;
  position: relative;
  background: #fff;
}

/* Chevron (DOWN default) */
.faq-item .faq-icon::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);

  transform: translate(-50%, -55%) rotate(45deg);
  transition: transform 160ms ease;
}

/* Answer */
.faq-item .faq-a{
  padding: 0 0 1rem 0;
  color: var(--text-soft);
}
.faq-item .faq-a p{
  margin: 0;
}

.faq-item .faq-a p + p {
	margin-top: 0.75em;
}

/* =========================
   OPEN STATE
   ========================= */

.faq-item.is-open{
  background: rgba(109,176,74,0.08);   /* soft light green */
  border-color: rgba(109,176,74,0.35);
}

.faq-item.is-open::before{
  background: var(--brand);
}

.faq-item.is-open .faq-icon::before{
  transform: translate(-50%, -45%) rotate(-135deg);
}

.faq-item.is-open .faq-q{
  padding-bottom: 0.6rem;
}

/* ==== HERO BREADCRUMBS ==== */

.mp-hero__content .mp-breadcrumbs{
  font-size: 0.85rem;
  line-height: 1.2;
  margin: 0;                /* remove bottom margin */
  padding-top: 0.75em;      /* small space from green line */
  color: var(--text-soft); }

.mp-hero__content .mp-breadcrumbs a{
  color: inherit;
  text-decoration: none;
  border-bottom: 0; }

.mp-hero__content .mp-breadcrumbs a:hover{
  text-decoration: underline; }

.mp-hero__content .mp-breadcrumbs .sep{
  margin: 0 0.35rem;
  opacity: 0.6; }

/* ==== MP PROCESS STEPS ==== */

.mp-process{
  background: #f4f4f4;
  padding: 3.5em 3em;
}

.mp-process__grid{
  margin-left: 0 !important;
}

.mp-process__grid > [class*="col-"]{
  padding-left: 0 !important;
}

.mp-process__item{
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 1.25em;
  margin-bottom: 2.5em;
}

.mp-process__item:last-child{
  margin-bottom: 0;
}

.mp-process__icon{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 30px;
  color: var(--brand);
  line-height: 1;
}

.mp-process__content h3{
  margin-bottom: 0.5em;
}

.mp-process__content p{
  margin-bottom: 0.75em;
}

.mp-process__inner{
  padding: 0 6em;
}

@media screen and (max-width: 1680px){ .mp-process__inner{ padding: 0 5em; } }
@media screen and (max-width: 1280px){ .mp-process__inner{ padding: 0 4em; } }
@media screen and (max-width: 736px) { .mp-process__inner{ padding: 0 2em; } }

/* ==== GREY COLUMNS, FIXED HEIGHT ==== */

.mp-pricing-row{                                          /* Equal-height columns for the pricing row */
  align-items: stretch; }                                 /* key: make columns same height */

.mp-pricing-row > [class*="col-"]{                        /* Make each column a flex column so inner card can stretch */
  display: flex;
  flex-direction: column; }

.mp-pricing-row .mp-col-grey{                              /* Make the grey card fill the available height */
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 auto; }

.mp-col-grey{
  background-color: var(--brand-soft);
  border-radius: 0.75em;
  padding: 2em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--text-soft); }

.mp-col-grey .benefits-list li{
  margin-bottom: 0.75em; }

.mp-col-grey .benefits-list li:last-child{
  margin-bottom: 0; }

.mp-col-grey:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08); }

.mp-col-grey__footer{
  margin-top: auto;                                       /* KEY: push to bottom */
  position: relative;
  border-top: 0;
  padding-top: 1.2em; }

.mp-col-grey__footer::before{
  content:"";
  display:block;
  margin-bottom: 0.9em;                                   /* space ABOVE the line */
  border-top: 1px solid rgba(0,0,0,0.06); }              /* the grey line */

.mp-col-grey__footer > :last-child{
  margin-bottom: 0; }

.price-note{
  margin-top: auto; }

.mp-col-grey dl { margin: 0; }
.mp-col-grey dt { margin: 1em 0 0.25em 0; }
.mp-col-grey dt:first-child { margin-top: 0; }
.mp-col-grey dd { margin-left: 0; margin-bottom: 0.25em; }

@media screen and (max-width: 736px){
  .mp-col-grey{
    min-height: unset;
    height: auto;   }
  .mp-col-grey__footer{
    margin-top: 1.5em;
    padding-top: 1.2em;     } }                                /* instead of auto on mobile */

.mp-col-exp p {
  margin-bottom: 1em;
  line-height: 1.65; }

.mp-col-exp strong {                                           /* Make institution names stronger */
  font-weight: 700; }

.mp-col-exp p + p {
  margin-top: 1.5em;
}


/* CONTACT PAGE DATA */

.mp-info-card{                                                 /* Card interior rhythm closer to the old design */
  padding: 2.25em;
}

.mp-info-card a{
  border-bottom: 0 !important;                                 /* kill dotted underline */
  text-decoration: none !important;                            /* also kill any UA underline */
  color: inherit;  }                                           /* default: behave like text */


.mp-info-card a:hover,
.mp-info-card a:focus{
  color: var(--brand) !important;
  background-color: rgba(109,176,74,0.12);
  border-radius: 0.2em;
  padding: 0.08em 0.18em; }


.mp-info-item{                                                  /* Remove the grid layout */
  display: block; }

.mp-info-item + .mp-info-item{
  margin-top: 2.2em; }

/* Heading with inline icon */
.mp-info-text h3{
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 0.6em 0;
  font-size: 1.25em; }

/* Inline icon should be just the glyph */
.mp-info-icon{
  background: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateY(1px); }

.mp-info-icon:before{
  color: var(--brand) !important;
  font-size: 1.05rem;
  line-height: 1; }

.mp-info-text h3{                                              /* Tighten headings and value spacing */
  margin: 0 0 0.55em 0;
  font-size: 1.25em;
  align-items: baseline; }

.mp-info-text p{
  margin: 0; }

.mp-info-note{
  color: rgba(127,136,143,.85);
  font-size: 0.95em; }

.mp-hours{                                                    /* Hours with dotted leader like the old one */
  margin-top: 0.2em;
}

.mp-hours-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75em;
  align-items: baseline;
  margin: 0.35em 0; }

.mp-hours-row .dots{
  border-bottom: 2px dotted rgba(127,136,143,.35);
  transform: translateY(-2px); }

.mp-info-card .mp-info-item + .mp-info-item{
  margin-top: 1.8em;                                         /* space above second block */
  padding-top: 1.6em;                                        /* space between text and line */
  border-top: 1px solid rgba(0,0,0,0.08);                  /* thin subtle divider */
}

.mp-kv{
  font-size: inherit;
  line-height: 1.4;  }                                        /* tighter than global body */


.mp-kv > div{
  margin-bottom: 0.55em;   }                                 /* controlled spacing between rows */


.mp-kv > div:last-child{
  margin-bottom: 0; }

.mp-kv strong{
  font-weight: 600; }


/* Keep cards comfortable on mobile */
@media (max-width: 736px){
  .mp-info-card{ padding: 1.75em; }
  .mp-info-item{ grid-template-columns: 40px 1fr; }
  .mp-info-icon{ width: 40px; height: 40px; }
  .mp-pricing-row > [class*="col-"]{ margin-bottom: 1.75em;   }
  .mp-pricing-row > [class*="col-"]:last-child{ margin-bottom: 0;  } }

@media screen and (max-width: 981px){
  .mp-pricing-row .benefits-list-grey,
  .mp-pricing-row .mp-col-grey{
    margin-bottom: 1.5em;   }

  .mp-pricing-row > [class*="col-"]:last-child .benefits-list-grey,
  .mp-pricing-row > [class*="col-"]:last-child .mp-col-grey{
    margin-bottom: 0;   } }

/* ==== LAW LIST – CLEAN (NO HTML CHANGES) ==== */
.law-list{
  counter-reset: law-counter;
  list-style: none;
  margin: 0 0 2em 0;
  padding-left: 2em; }                   /* overall block indent */

.law-list > li{                         /* each (1), (2), (3) item */
  counter-increment: law-counter;
  position: relative;
  margin: 0;                            /* keep lines tight inside the item */
  line-height: 1.5;
  padding-left: 2.2em; }                 /* text starts after marker column */

/* space ONLY above new numbers */
.law-list > li + li{
  margin-top: 1.2em; }

/* (1), (2), (3) marker */
.law-list > li::before{
  content: "(" counter(law-counter) ")";
  position: absolute;
  left: 0;
  top: 0;                               /* align to first line */
  width: 2em;                           /* fixed marker column */
  text-align: left;

  color: var(--brand);
  font-weight: 600;
  line-height: 1.5; }                    /* match li line-height */

/* ==== SUBLIST ==== */
.law-sublist{
  counter-reset: law-subcounter;
  list-style: none;
  margin: 0.5em 0 0 0;                 /* small gap under (1) line */
  padding-left: 2em;  }                 /* indent subpoints further RIGHT */

/* a), b) item */
.law-sublist > li{
  counter-increment: law-subcounter;
  position: relative;
  margin: 0;                            /* keep a) and b) tight */
  line-height: 1.5;
  padding-left: 2em;  }                  /* text starts after a) column */

/* extra spacing BETWEEN a) and b) */
.law-sublist > li + li{
	margin-top: 0.45em;  }           /* increase/decrease to taste */

/* a), b) marker */
.law-sublist > li::before{
  content: counter(law-subcounter, lower-alpha) ")";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8em;
  text-align: left;
  color: var(--brand);
  font-weight: 600;
  line-height: 1.5;}

.law-sublist > li.no-number{
  counter-increment: none;                            /* do NOT advance a), b), c) */
  padding-left: 0; }                                  /* align text with sublist content (no marker column) */

.law-sublist > li.no-number::before{
  content: none; }                                   /* hide a), b) marker */
  
.law-list > li.no-number{
  counter-increment: none;                           /* do NOT advance (1), (2), (3) */
  padding-left: 2.2em; }                             /* remove marker column spacing */

.law-list > li.no-number::before{
  content: none; }                                   /* hide (1) marker */

.font-grey {
  color: var(--text-soft); }                                /* Changes any font color to grey */

span[id] {
	scroll-margin-top: 10rem; }                        /* Fix internal deep link scrolling issue */

/* CONTACT FORM DESIGN */

#contact-form .message.success,
#contact-form .message.success p,
#contact-form .message.success strong {
  color: var(--brand); }

#contact-form .message {                            /* Contact form message spacing */
  margin-top: 2.5em;
  font-weight: 600;
  font-size: 1.05em; }

#contact-form .message.success {
  margin-top: 2.5em;
  line-height: 1.6;
  color: var(--brand); }

#contact-form .message.success .success-main {
  font-weight: 600; }

#contact-form .message.error {
  color: #c0392b; /* strong but elegant red */ }

#contact-form .message.success p {
  margin: 0 0 0.6em 0; }

/*  iOS issue with sticky header fix */
.cf-turnstile-nudge{
  position: fixed !important;
  right: 0 !important;
  bottom: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* FINAL – put at very end */
ul.contact li.icon-svg{ position: relative !important; }

ul.contact li.icon-svg .icon-custom{
  position: absolute !important;
  left: -4px !important;     /* your “move right” */
  top: 0.4em !important;    /* align with first text line */
  color: var(--brand) !important;
}

/* Make custom church icon larger */
ul.contact li.icon-svg .icon-custom{
  width: 3em !important;
  height: 3em !important;
}

ul.contact li.icon-svg .icon-custom svg{
  width: 3em !important;
  height: 3em !important;
}

/* Ecumenical prayer week */
#imahet .quote{
  font-style: italic;
  opacity: .85;
  margin-top: .75rem;
}
#imahet .quote span{ font-style: normal; opacity: .8; }

.events-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.event-card{
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
}

.event-meta{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}

.event-date{
  font-weight: 700;
  letter-spacing: .02em;
}

.event-time{
  font-weight: 800;
  color: var(--brand);
}

.event-title{
  margin: .25rem 0 .55rem 0;
  font-size: 1.05em;
}

.event-line{
  margin: .15rem 0;
  opacity: .9;
}

.event-card .tag{
  display: inline-block;
  margin-left: .35rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: rgba(108,125,136,.14);
  color: var(--text-main);
  font-size: .85em;
}

/* Responsive */
@media (max-width: 900px){
  .events-grid{ grid-template-columns: 1fr; }
  .event-card{ padding: 1rem; }
}

/* Quote */
.imahet-quote{
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 .5rem 0;
  max-width: 820px;
  opacity: .85;
}

.imahet-quote span{
  font-style: normal;
  opacity: .7;
  margin-left: .5rem;
}

/* Invitation – ALL CAPS but refined */
.imahet-invite{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--brand);
  margin: 0 0 1.4rem 0; 
}

h3 + .imahet-invite {
  margin-top: -0.9rem;   /* pulls meta closer to heading */
}

.imahet-hero{
  display:block;
  margin: 0 0 1.25rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  background: #0f2438; /* fallback to your blue tone */
}

.imahet-hero img{
  display:block;
  width: 100%;
  height: clamp(180px, 26vw, 320px);
  object-fit: cover;
}


.mini-posts .green-bullet-list{
  line-height: 1.35;
  margin-bottom: .5rem;
}

.mini-posts .green-bullet-list li{
  margin-bottom: .25rem;
}

header.major + .green-bullet-list{
  margin-top: -1rem;
}

.contact .icon-custom{                                                     /* Church SVG */
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.75em;
  background: currentColor;

  -webkit-mask: url("/images/church.svg") no-repeat center / contain;
  mask: url("/images/church.svg") no-repeat center / contain;
}

/* END */

/* ===== Adományozás – soft card background ===== */

section .features article {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  box-sizing: border-box;

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);

  transition:
    box-shadow 220ms ease,
    transform 200ms ease,
    border-color 200ms ease;
}

section .features article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.09);
}

/* Justify text on desktop, WITHOUT hyphenation/word-breaking */
@media (min-width: 981px){
  section.adomanyozas .features article .content p{
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;

    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
  }
}