/* =========================================================
   Intelligent Anesthesia — site stylesheet (original)
   Design tokens preserved from the previous theme:
   Primary #179191 · Accent #FFBF44 · Dark #1B1B1B
   Font: Open Sans
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --primary: #179191;
  --primary-dark: #0e7373;
  --primary-soft: #e0f2f2;
  --accent: #ffbf44;
  --accent-dark: #e0a21c;
  --accent-soft: #fff4dc;
  --dark: #1b1b1b;
  --text: #262626;
  --muted: #555555;
  --border: #e5e5e5;
  --bg-soft: #f7f9fb;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(27, 27, 27, 0.06);
  --shadow-md: 0 12px 32px rgba(27, 27, 27, 0.12);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #262626;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

a {
  color: #179191;
  text-decoration: none;
}

a:hover {
  color: #0e7373;
  text-decoration: underline;
}

p {
  margin: 0 0 16px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}

h1 { font-size: 34px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

ul, ol {
  padding-left: 24px;
}

sub, sup {
  line-height: 0;
  font-size: 75%;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}

table th,
table td {
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  vertical-align: top;
}

table thead th {
  background: #f9f9f9;
  font-weight: 600;
  color: #000;
}

blockquote {
  margin: 0 0 16px;
  padding: 12px 20px;
  border-left: 3px solid #179191;
  background: #f9f9f9;
  color: #666;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section {
  padding: 60px 0;
}

.section-md {
  padding: 45px 0;
}

.section-lg {
  padding: 70px 0;
}

.bg-default { background: #ffffff; }
.bg-gray-100 { background: #f9f9f9; }
.bg-gray-700 { background: #1b1b1b; }
.bg-mask { position: relative; }
.text-center { text-align: center; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.col-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.3333%; }
.col-lg-8 { width: 66.6667%; }
.col-md-6 { width: 50%; }
.col-md-7 { width: 58.3333%; }
.col-xl-3 { width: 25%; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-wheel {
  width: 42px;
  height: 42px;
  border: 4px solid #e5e5e5;
  border-top-color: #179191;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  max-height: 56px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 3px 0;
  background: #000;
  border-radius: 2px;
}

.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
  margin-left: 28px;
}

.nav-list > li > a {
  display: block;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: #262626;
}

.nav-list > li > a:hover {
  color: #179191;
  text-decoration: none;
}

.nav-list > li.active > a {
  color: #179191;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-top: 2px solid #179191;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 18px;
  color: #262626;
  font-size: 14px;
}

.dropdown a:hover {
  color: #179191;
  background: #eef8f8;
  text-decoration: none;
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-color: #1b1b1b;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.55);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

/* ---------- Homepage intro (magazine) ---------- */
.magazine {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.magazine .image-container {
  flex: 0 0 30%;
  max-width: 30%;
}

.magazine .content-container {
  flex: 1 1 auto;
}

.magazine .content-container h4 {
  color: #179191;
  margin-bottom: 4px;
}

.magazine .deepen {
  font-weight: 700;
  color: #000;
  margin: 18px 0 4px;
}

.magazine .up,
.magazine .down {
  color: #797979;
}

/* ---------- Homepage article list ---------- */
.journal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.journal-list > li {
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

.journal-list > li:last-child {
  border-bottom: 0;
}

.journal-list h6 {
  margin-bottom: 8px;
}

.journal-list h6 a {
  color: #000;
  font-weight: 600;
}

.journal-list h6 a:hover {
  color: #179191;
  text-decoration: none;
}

.journal-list p {
  color: #555;
  font-size: 14px;
}

.journal-list p.abstract {
  font-weight: 700;
  color: #000;
  margin: 10px 0 4px;
}

a.PDF {
  display: inline-block;
  margin-top: 6px;
  padding: 7px 16px;
  background: #179191;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

a.PDF:hover {
  background: #0e7373;
  color: #ffffff;
  text-decoration: none;
}

a.PDF img {
  height: 15px;
  margin-right: 6px;
}

/* ---------- Article / post content ---------- */
.post-single-wrap {
  max-width: 860px;
}

.post-single-content .title {
  color: #000;
  margin-top: 34px;
}

.post-single-content > .title:first-child {
  margin-top: 0;
}

.post-single-content .line {
  height: 2px;
  width: 60px;
  background: #179191;
  margin: 4px 0 18px;
}

.post-single-content .square {
  margin: 26px 0;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.post-single-content .square img {
  display: block;
  margin: 12px 0;
  max-width: 100%;
}

.post-single-content .square p {
  font-size: 14px;
  color: #555;
}

/* Bold field labels (Background:, Methods:, Keywords:, etc.) */
.post-single-content p > span {
  font-weight: 700;
  color: #1b1b1b;
}

/* ---------- Journal insights / misc content ---------- */
.list-xl,
.list-as {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-xl > li,
.list-as > li {
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.list-xl > li:last-child,
.list-as > li:last-child {
  border-bottom: 0;
}

.news-item {
  max-width: 720px;
}

.news-title {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  margin-bottom: 6px;
}

.news-summary p {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0;
}

.news-container .number {
  font-size: 26px;
  font-weight: 700;
  color: #179191;
}

.news-container .text {
  color: #555;
  font-size: 14px;
}

.list-as > li > b:first-child {
  font-size: 16px;
}

.list-as > li ul {
  margin: 6px 0 6px 22px;
}

.section-lined {
  border-top: 1px solid #f0f0f0;
}

/* ---------- Guide content ---------- */
.list-terms {
  max-width: 900px;
  margin: 0;
}

.list-terms dt.heading-5 {
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e5e5;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.list-terms dt.heading-6 {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
}

.list-terms dd {
  margin: 10px 0;
}

.list-terms-sequence {
  margin: 8px 0 8px 22px;
}

.list-terms-sequence li {
  margin: 6px 0;
}

.list-marked {
  margin: 8px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1b1b1b;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 44px 15px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col p {
  color: #b8b8b8;
  font-size: 14px;
}

.footer-col a {
  color: #179191;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #9b9b9b;
  font-size: 13px;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: #179191;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 900;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: #0e7373;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .magazine {
    flex-direction: column;
    gap: 20px;
  }

  .magazine .image-container {
    flex: 1 1 auto;
    max-width: 220px;
  }

  .col-lg-3 { width: 50%; }
  .col-lg-4 { width: 50%; }
  .col-lg-8 { width: 100%; }
}

@media (max-width: 767.98px) {
  .section-lg { padding: 46px 0; }
  .page-hero { padding: 60px 0; }
  .page-hero h1 { font-size: 27px; }

  .col-sm-6,
  .col-md-6,
  .col-md-7 { width: 100%; }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
  }

  .nav-list > li {
    margin-left: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-list > li > a {
    padding: 12px 18px;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding-left: 18px;
  }
}

/* =========================================================
   Enhancements — added on top of the original stylesheet
   ========================================================= */

/* ---------- Focus state (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(23, 145, 145, 0.45);
  outline-offset: 2px;
}

/* ---------- Missing layout helpers ---------- */
.position-relative { position: relative; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-black { color: #000; }
.text-white { color: #fff; }
.big { font-size: 17px; }
.heading-5 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.heading-6 {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
}

.row-30 { margin-left: -15px; margin-right: -15px; }
.row-40 { margin-left: -20px; margin-right: -20px; }
.row-50 { margin-left: -25px; margin-right: -25px; }
.row-30 > [class*="col-"] { padding-left: 15px; padding-right: 15px; }
.row-40 > [class*="col-"] { padding-left: 20px; padding-right: 20px; }
.row-50 > [class*="col-"] { padding-left: 25px; padding-right: 25px; }
.row.row-50 { margin-bottom: -20px; }
.row.row-50 > [class*="col-"] { margin-bottom: 20px; }

/* ---------- Page hero: subtle gradient + breadcrumbs ---------- */
.page-hero {
  background: linear-gradient(135deg, #0e7373 0%, #179191 55%, #2aa5a5 100%);
}

.breadcrumbs {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a {
  color: #ffbf44;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  color: #fff;
}

/* ---------- Magazine intro polish ---------- */
.magazine {
  gap: 48px;
}

.magazine .image-container img {
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(27, 27, 27, 0.18);
}

.magazine .deepen {
  position: relative;
  padding-left: 14px;
  margin-top: 22px;
}

.magazine .deepen::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
}

/* Contrast fix for faint helper text */
.magazine .up,
.magazine .down {
  color: #5c5c5c;
}

/* ---------- Homepage article list: card feel ---------- */
.journal-list {
  max-width: 980px;
}

.journal-list > li {
  position: relative;
  padding: 28px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.journal-list > li:hover {
  background: #f2f9f9;
  border-color: #d5ecec;
  box-shadow: 0 6px 22px rgba(23, 145, 145, 0.08);
}

.journal-list h6 {
  font-size: 17px;
  line-height: 1.45;
}

.journal-list h6 a {
  transition: color 0.2s ease;
}

.journal-list h6 a:hover {
  color: var(--primary);
}

/* Abstract label as a pill */
.journal-list p.abstract {
  display: inline-block;
  margin: 16px 0 8px;
  padding: 3px 14px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  color: #7a5a00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Bold field names inside abstract / keywords */
.journal-list p span {
  font-weight: 700;
  color: #1b1b1b;
}

/* PDF button polish */
a.PDF {
  margin-top: 14px;
  box-shadow: 0 4px 12px rgba(23, 145, 145, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.PDF:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(23, 145, 145, 0.35);
}

/* ---------- Aims & scope: numbered article-type cards ---------- */
.list-as {
  max-width: 880px;
}

.list-as > li > b:first-child {
  color: var(--primary);
}

.list-as .list-marked {
  counter-reset: type;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.list-as .list-marked > li {
  counter-increment: type;
  position: relative;
  padding: 16px 18px 16px 62px;
  margin: 10px 0;
  background: #fbfcfe;
  border: 1px solid #edf1f6;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.list-as .list-marked > li:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(27, 27, 27, 0.07);
}

.list-as .list-marked > li::before {
  content: counter(type, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #1b1b1b;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.list-as .list-marked > li > b {
  color: var(--primary);
}

/* ---------- Journal insights: news list polish ---------- */
.list-xl > li {
  padding: 24px 0;
}

.news-title {
  position: relative;
  padding-bottom: 10px;
  font-size: 17px;
  color: var(--primary);
}

.news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.news-summary .list-marked {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.news-summary .list-marked li {
  position: relative;
  padding-left: 18px;
  margin: 5px 0;
  color: #555;
}

.news-summary .list-marked li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.news-container .number {
  color: var(--primary);
}

/* ---------- Contacts: info cards ---------- */
.box-lined {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(27, 27, 27, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.box-lined:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(27, 27, 27, 0.12);
}

.box-lined-body {
  padding: 26px 24px;
}

.box-lined-title {
  color: var(--primary);
  margin-bottom: 10px;
}

.box-lined-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.box-lined-list li {
  padding: 4px 0;
  color: #555;
}

.link-default {
  color: var(--primary);
  text-decoration: none;
}

.link-default:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ---------- Contacts: form ---------- */
.form-wrap {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 145, 145, 0.15);
  outline: none;
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* Hide template icons that depend on an unshipped icon font */
.form-icon {
  display: none !important;
}

.button-default {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(23, 145, 145, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button-default:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(23, 145, 145, 0.35);
}

/* ---------- Contacts: social icons ---------- */
.list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Dropdown active state ---------- */
.has-dropdown.active > a {
  color: var(--primary);
}

.dropdown li.active > a {
  color: var(--primary);
  background: #eef8f8;
}

/* ---------- Footer enhancements ---------- */
.footer-grid {
  gap: 44px;
}

.footer-col h5 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.footer-brand img {
  max-height: 46px;
  width: auto;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
}

ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.footer-links li {
  margin: 8px 0;
}

ul.footer-links a {
  color: #b8b8b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

ul.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom p {
  color: #c2c2c2;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 991.98px) {
  .magazine .image-container {
    margin: 0 auto;
  }

  .journal-list h6 {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .list-as {
    max-width: 100%;
  }

  .list-as .list-marked > li {
    padding-left: 56px;
  }

  .list-as .list-marked > li::before {
    left: 14px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .journal-list > li {
    padding: 22px 14px;
  }

  .page-hero {
    background-attachment: scroll;
  }
}
