:root {
  --body-font: "42dot Sans", "Public Sans", system-ui, sans-serif;
  --ui-font: var(--body-font);
  --text-font: var(--body-font);
  --title-font: var(--body-font);
  --main-width: 1200px;
  --wrap-padding: 24px;
  --grid-gutter: 26px;
  --c-main: #00789a;
  --c-main-rgb: 0, 120, 154;
  --c-bg: #f4f7f7;
  --c-box: #ffffff;
  --c-ink: #00171e;
  --c-headings: #0b1f27;
  --c-muted: #5b6970;
  --c-separator: #e6ecee;
  --c-separator2: #dbe3e6;
  --c-footer: #1f3137;
  --c-footer-ink: #f1f5f6;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.66;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

a:hover {
  color: var(--c-main);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-main);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  color: var(--c-headings);
  line-height: 1.25;
  margin: 0 0 14px;
}

p {
  margin: 0 0 14px;
}

.ts-bg-cover {
  background: linear-gradient(180deg, #e9f6f9 0%, var(--c-bg) 220px);
  position: fixed;
  inset: 0;
  z-index: -1;
}

.main-wrap {
  min-height: 100vh;
}

.wrap,
.ts-contain {
  width: min(100% - (var(--wrap-padding) * 2), var(--main-width));
  margin-inline: auto;
}

.left-aligned-layout .wrap,
.left-aligned-layout .ts-contain {
  margin-inline: 0 auto;
}

.left-aligned-layout .main.ts-contain.right-sidebar {
  width: min(100% - (var(--wrap-padding) * 2), var(--main-width));
  margin-inline: 0 auto;
}

.smart-head-row {
  background: #fff;
  border-bottom: 1px solid var(--c-separator);
}

.smart-head-bot {
  background: #fff;
  border-bottom: 0;
}

.smart-head-row .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
}

.smart-head-row .head-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
}

.logo-link {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--c-ink);
}

.logo-image-link {
  display: inline-flex;
  align-items: center;
}

.site-logo-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
}

.navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navigation .menu a {
  font-weight: 600;
  text-transform: capitalize;
}

.smart-head-bot .navigation .menu a {
  color: var(--c-ink);
}

.smart-head-bot .navigation .menu a:hover {
  color: var(--c-main);
}

.offcanvas-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-separator2);
  background: #fff;
  margin-right: 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-main);
  line-height: 1;
}

.left-aligned-layout .offcanvas-toggle {
  display: none;
}

.hamburger-icon,
.hamburger-icon .inner {
  display: block;
  width: 18px;
  position: relative;
}

.hamburger-icon {
  height: 14px;
}

.hamburger-icon .inner {
  height: 2px;
  min-height: 2px;
  background: var(--c-main);
  margin: 6px auto 0;
}

.hamburger-icon .inner::before,
.hamburger-icon .inner::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c-main);
  position: absolute;
  left: 0;
}

.hamburger-icon .inner::before { top: -6px; }
.hamburger-icon .inner::after { top: 6px; }

.main,
.main-full {
  margin-top: 18px;
}

.ts-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--grid-gutter);
  align-items: start;
}

.no-sidebar .ts-row {
  grid-template-columns: minmax(0, 1fr);
}

.archive-heading,
.post-title,
.page-header h1,
.hero-panel h1 {
  word-break: break-word;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--c-separator);
  border-top: 4px solid var(--c-main);
  padding: 24px;
  margin-bottom: 20px;
}

.hero-copy {
  color: var(--c-muted);
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--grid-gutter);
}

.block-wrap {
  margin-bottom: 28px;
}

.home-category-sections .block-wrap {
  margin-bottom: 18px;
}

.home-category-sections .block-wrap:last-child {
  margin-bottom: 0;
}

.block-head .heading {
  font-size: 24px;
  margin-bottom: 16px;
}

.loop.grid {
  display: grid;
  gap: 22px;
}

.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-1 { grid-template-columns: minmax(0, 1fr); }

.l-post {
  background: var(--c-box);
  border: 1px solid var(--c-separator);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
  border-radius: 6px;
  overflow: hidden;
}

.media-ratio {
  position: relative;
  display: block;
}

.media-ratio img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.l-post .content {
  padding: 14px 15px 16px;
}

.post-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.grid-base-post .post-title {
  font-size: 19px;
}

.post-meta-items {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.excerpt p {
  color: var(--c-muted);
  margin-bottom: 0;
}

.breadcrumbs {
  border: 1px solid var(--c-separator);
  background: #fff;
  border-radius: 4px;
  margin-bottom: 18px;
}

.breadcrumbs .inner {
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.crumb-sep {
  color: #91a1a8;
}

.main-sidebar .widget-title {
  background: var(--c-main);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 14px;
}

.small-post {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid var(--c-separator);
  gap: 12px;
  border-radius: 0;
  box-shadow: none;
  border-inline: 0;
  border-top: 0;
  margin: 0;
  padding: 12px 14px;
}

.small-post .media img {
  aspect-ratio: 1 / 1;
}

.small-post .content {
  padding: 0;
}

.small-post .post-title {
  font-size: 15px;
  margin: 0 0 8px;
  line-height: 1.35;
}

.small-post .post-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-articles-sidebar .small-post .post-title a {
  display: block;
  -webkit-box-orient: initial;
  overflow: visible;
}

.small-post .meta-item {
  font-size: 12px;
}

.post-entry,
.page-entry,
.error-box,
.faq-section,
.related-posts {
  background: #fff;
  border: 1px solid var(--c-separator);
  border-radius: 6px;
  padding: 22px;
}

.post-entry {
  margin-bottom: 22px;
}

.the-post-meta {
  color: var(--c-muted);
  font-size: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.the-post-meta .cats a {
  color: var(--c-main);
}

.post-entry .post-title {
  float: none;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.28;
  padding-left: 0;
  margin: 0 0 16px;
}

.post-entry .post-title:before {
  display: none;
}

.entry-content h2 {
  margin-top: 24px;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.32;
}

.entry-content h3 {
  margin-top: 18px;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.36;
}

.entry-content h4 {
  margin-top: 16px;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.post-content a,
.entry-content a {
  color: #009ac4;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: .08em;
}

.post-content a:hover,
.entry-content a:hover {
  color: var(--c-main);
}

.faq-section .section-title,
.related-posts .section-title {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.32;
  margin: 0 0 16px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid var(--c-separator2);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.entry-content table th,
.entry-content table td {
  border: 1px solid var(--c-separator2);
  padding: 10px 12px;
  vertical-align: top;
}

.entry-content table th {
  background: #f4f8fa;
  color: var(--c-headings);
  font-weight: 700;
}

.entry-content table tr:nth-child(even) td {
  background: #fafcfd;
}

.faq-item {
  border-top: 1px solid var(--c-separator);
  padding-top: 14px;
  margin-top: 14px;
}

.faq-item h3 {
  font-size: 20px;
}

.main-pagination {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.page-numbers {
  border: 1px solid var(--c-separator2);
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--c-ink);
  min-width: 38px;
  text-align: center;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--c-main);
  border-color: var(--c-main);
  color: #fff;
}

.page-numbers.is-disabled {
  opacity: .4;
  pointer-events: none;
}

.ts-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-main);
  background: var(--c-main);
  color: #fff;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  font-weight: 600;
}

.ts-button:hover {
  background: #005f7a;
  border-color: #005f7a;
  color: #fff;
}

.ts-button:active {
  transform: translateY(1px);
}

.ts-button:disabled,
.ts-button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

.main-footer {
  background: var(--c-footer);
  color: var(--c-footer-ink);
  margin-top: 24px;
}

.upper-footer {
  padding: 36px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(241, 245, 246, .9);
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.lower-footer {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 12px 0 16px;
}

.copyright {
  font-size: 13px;
  color: rgba(241, 245, 246, .85);
}

.off-canvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 100;
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: min(90vw, 320px);
  height: 100%;
  z-index: 101;
  background: #0f222b;
  color: #fff;
  transform: translateX(-102%);
  transition: transform .22s ease;
}

.mobile-menu-container.is-open {
  transform: translateX(0);
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 16px 0 10px;
}

.mobile-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, .93);
  text-transform: capitalize;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.error-box p {
  max-width: 680px;
}

.error-links h2 {
  margin-bottom: 14px;
}

.error-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.error-cat-grid a {
  background: #fff;
  border: 1px solid var(--c-separator2);
  border-radius: 4px;
  padding: 7px 10px;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .ts-row,
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .main-sidebar {
    margin-top: 4px;
  }
  .navigation.navigation-small {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --wrap-padding: 14px;
  }
  .smart-head-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid var(--c-separator);
  }
  .smart-head-main .smart-head-row {
    flex: 1 1 50%;
    border-bottom: 0;
  }
  .smart-head-main .smart-head-row .inner.wrap {
    width: 100%;
    margin-inline: 0;
    padding-inline: var(--wrap-padding);
  }
  .smart-head-main .smart-head-mid .inner {
    justify-content: flex-start;
  }
  .smart-head-main .smart-head-bot .inner {
    justify-content: flex-end;
  }
  .smart-head-main .smart-head-bot .items-left {
    margin-left: auto;
  }
  .navigation.navigation-main {
    display: none;
  }
  .offcanvas-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 10px;
  }
  .smart-head-main .smart-head-bot .offcanvas-toggle {
    margin-right: 0;
  }
  .mobile-menu {
    padding: 14px 12px 18px;
  }
  .mobile-menu li + li {
    margin-top: 6px;
  }
  .mobile-menu a {
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    font-weight: 600;
  }
  .mobile-menu a:hover {
    background: rgba(255, 255, 255, .16);
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .logo-link {
    font-size: 24px;
  }
  .site-logo-image {
    max-height: 48px;
  }
  .post-entry,
  .page-entry,
  .error-box,
  .faq-section,
  .related-posts {
    padding: 16px;
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-category-sections .block-wrap {
    margin-bottom: 14px;
  }
  .main-footer {
    margin-top: 18px;
  }
  .post-entry .post-title,
  .entry-content h2,
  .faq-section .section-title,
  .related-posts .section-title {
    font-size: 26px;
  }
  .entry-content h3 {
    font-size: 22px;
  }
  .entry-content h4 {
    font-size: 19px;
  }
}
