:root {
  --mr-blue: #1164ff;
  --mr-blue-dark: #0b4fc7;
  --mr-ink: #07111f;
  --mr-muted: #5b6575;
  --mr-line: #dbe4f0;
  --mr-panel: #f6f9fe;
  --mr-green: #11a36a;
  --mr-amber: #f0aa24;
  --nv-primary-accent: var(--mr-blue);
  --nv-secondary-accent: var(--mr-blue-dark);
  --nv-text-color: var(--mr-ink);
  --nv-light-bg: var(--mr-panel);
}

body.mailrush-owned-theme {
  color: var(--mr-ink);
  letter-spacing: 0;
  background: #ffffff;
}

body.mailrush-owned-theme a {
  text-underline-offset: 0.16em;
}

body.mailrush-owned-theme .wrapper {
  background: #ffffff;
}

body.mailrush-owned-theme .header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 240, 0.9);
  box-shadow: 0 10px 26px rgba(7, 17, 31, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.admin-bar body.mailrush-owned-theme .header,
body.admin-bar.mailrush-owned-theme .header {
  top: 32px;
}

body.mailrush-owned-theme .site-logo img {
  max-height: 38px;
  width: auto;
}

body.mailrush-owned-theme .nav-ul a,
body.mailrush-owned-theme .menu-item a {
  font-weight: 650;
}

body.mailrush-owned-theme .button.button-primary,
body.mailrush-owned-theme .wp-block-button.is-style-primary .wp-block-button__link,
body.mailrush-owned-theme .mr-button {
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
}

.mr-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  text-decoration: none;
}

.mr-button-primary {
  background: var(--mr-blue);
  border: 1px solid var(--mr-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 100, 255, 0.22);
}

.mr-button-primary:hover,
.mr-button-primary:focus {
  background: var(--mr-blue-dark);
  border-color: var(--mr-blue-dark);
  color: #ffffff;
}

.mr-button-secondary {
  background: #ffffff;
  border: 1px solid var(--mr-line);
  color: var(--mr-ink);
}

.mr-button-secondary:hover,
.mr-button-secondary:focus {
  border-color: var(--mr-blue);
  color: var(--mr-blue-dark);
}

.mr-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mr-eyebrow {
  color: var(--mr-green);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mr-blog-intro {
  align-items: stretch;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #f3f8f6 100%);
  border: 1px solid var(--mr-line);
  border-radius: 8px;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  margin: 24px 0 34px;
  padding: 32px;
}

.mr-blog-intro h1,
.mr-blog-intro h2 {
  color: var(--mr-ink);
  font-size: 38px;
  line-height: 1.12;
  margin: 0;
  max-width: 780px;
}

.mr-blog-intro p {
  color: var(--mr-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 14px 0 22px;
  max-width: 720px;
}

.mr-blog-intro__proof {
  border-left: 1px solid var(--mr-line);
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
}

.mr-blog-intro__proof li {
  background: #ffffff;
  border: 1px solid rgba(219, 228, 240, 0.86);
  border-radius: 8px;
  padding: 14px;
}

.mr-blog-intro__proof strong,
.mr-blog-intro__proof span {
  display: block;
}

.mr-blog-intro__proof strong {
  color: var(--mr-ink);
  font-size: 15px;
  margin-bottom: 3px;
}

.mr-blog-intro__proof span {
  color: var(--mr-muted);
  font-size: 13px;
  line-height: 1.45;
}

body.mailrush-owned-theme.mailrush-blog-index .archive-container {
  max-width: min(1240px, calc(100% - 48px));
  padding-top: 12px;
}

body.mailrush-owned-theme.mailrush-blog-index .posts-wrapper {
  --gridspacing: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}

body.mailrush-owned-theme.mailrush-blog-index .posts-wrapper > article {
  width: 33.3333%;
}

body.mailrush-owned-theme.mailrush-blog-index .layout-grid .content,
body.mailrush-owned-theme.mailrush-blog-index .layout-default .default-post,
body.mailrush-owned-theme.mailrush-blog-index .layout-alternative .alternative-post {
  background: #ffffff;
  border: 1px solid rgba(219, 228, 240, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.05);
  height: 100%;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.mailrush-owned-theme.mailrush-blog-index .layout-grid .content:hover,
body.mailrush-owned-theme.mailrush-blog-index .layout-default .default-post:hover,
body.mailrush-owned-theme.mailrush-blog-index .layout-alternative .alternative-post:hover {
  border-color: rgba(17, 100, 255, 0.45);
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.09);
  transform: translateY(-2px);
}

body.mailrush-owned-theme .nv-post-thumbnail-wrap {
  aspect-ratio: 16 / 10;
  background: #eaf2ff;
  margin: 0;
  overflow: hidden;
}

body.mailrush-owned-theme .nv-post-thumbnail-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.mailrush-owned-theme.mailrush-blog-index article:not(.has-post-thumbnail) .content::before {
  aspect-ratio: 16 / 10;
  background: #eaf2ff url("../img/logo.png") center / 142px auto no-repeat;
  border-bottom: 1px solid rgba(219, 228, 240, 0.92);
  content: "";
  display: block;
  flex: 0 0 auto;
}

body.mailrush-owned-theme.mailrush-blog-index .layout-grid .content > :not(.nv-post-thumbnail-wrap) {
  padding-left: 20px;
  padding-right: 20px;
}

body.mailrush-owned-theme.mailrush-blog-index .layout-grid .content > .blog-entry-title {
  margin-top: 18px;
}

body.mailrush-owned-theme.mailrush-blog-index .layout-grid .content > .excerpt-wrap {
  padding-bottom: 20px;
}

body.mailrush-owned-theme .blog-entry-title {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

body.mailrush-owned-theme .blog-entry-title a {
  color: var(--mr-ink);
  text-decoration: none;
}

body.mailrush-owned-theme .blog-entry-title a:hover,
body.mailrush-owned-theme .blog-entry-title a:focus {
  color: var(--mr-blue-dark);
}

body.mailrush-owned-theme .nv-meta-list {
  color: #687386;
  font-size: 12px;
}

body.mailrush-owned-theme .excerpt-wrap {
  color: var(--mr-muted);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.65;
}

.read-more-wrapper {
  margin-top: auto;
  padding-top: 14px;
}

.mr-read-guide {
  color: var(--mr-blue-dark);
  display: inline-flex;
  font-weight: 800;
  text-decoration: none;
}

.mr-read-guide:hover,
.mr-read-guide:focus {
  color: var(--mr-blue);
}

.mr-loop-cta {
  align-items: center;
  background: #07111f;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  gap: 20px;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin: 4px 0;
  padding: 24px;
}

.mr-loop-cta h2 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 7px;
}

.mr-loop-cta p {
  color: #d4deeb;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.mr-loop-cta .mr-eyebrow {
  color: var(--mr-amber);
}

body.mailrush-owned-theme.single-post .neve-main > .container {
  max-width: min(1040px, calc(100% - 48px));
}

body.mailrush-owned-theme.single-post .nv-single-post-wrap {
  margin-left: auto;
  margin-right: auto;
}

body.mailrush-owned-theme.single-post .entry-header {
  margin: 34px auto 18px;
  max-width: 820px;
  text-align: left;
}

body.mailrush-owned-theme.single-post h1.entry-title {
  color: var(--mr-ink);
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 12px;
}

body.mailrush-owned-theme.single-post .entry-header .nv-meta-list {
  justify-content: flex-start;
}

body.mailrush-owned-theme.single-post .nv-thumb-wrap {
  aspect-ratio: 16 / 9;
  background: #eaf2ff;
  border-radius: 8px;
  margin: 0 auto 34px;
  max-width: 1040px;
  overflow: hidden;
}

body.mailrush-owned-theme.single-post .nv-thumb-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.mailrush-owned-theme.single-post .entry-content {
  color: #1e293b;
  margin: 0 auto;
  max-width: 760px;
}

body.mailrush-owned-theme.single-post .entry-content p,
body.mailrush-owned-theme.single-post .entry-content li {
  font-size: 18px;
  line-height: 1.78;
}

body.mailrush-owned-theme.single-post .entry-content p {
  margin: 0 0 22px;
}

body.mailrush-owned-theme.single-post .entry-content ul,
body.mailrush-owned-theme.single-post .entry-content ol {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

body.mailrush-owned-theme.single-post .entry-content li + li {
  margin-top: 8px;
}

body.mailrush-owned-theme.single-post .entry-content h2,
body.mailrush-owned-theme.single-post .entry-content h3 {
  color: var(--mr-ink);
  line-height: 1.22;
  margin: 36px 0 14px;
}

body.mailrush-owned-theme.single-post .entry-content h2 {
  font-size: 28px;
}

body.mailrush-owned-theme.single-post .entry-content h3 {
  font-size: 23px;
}

body.mailrush-owned-theme.single-post .entry-content blockquote {
  border-left: 4px solid var(--mr-blue);
  color: var(--mr-muted);
  margin: 28px 0;
  padding: 2px 0 2px 18px;
}

.mr-article-cta {
  align-items: center;
  background: #f6f9fe;
  border: 1px solid var(--mr-line);
  border-radius: 8px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 38px auto;
  max-width: 760px;
  padding: 26px;
}

.mr-article-cta h2 {
  color: var(--mr-ink);
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.mr-article-cta p {
  color: var(--mr-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

body.mailrush-owned-theme.single-post.mailrush-has-article-sidebar .neve-main > .container {
  max-width: min(1200px, calc(100% - 48px));
}

body.mailrush-owned-theme.single-post.mailrush-has-article-sidebar .single-post-container > .row {
  align-items: flex-start;
}

body.mailrush-owned-theme.single-post.mailrush-has-article-sidebar .nv-single-post-wrap {
  flex: 1 1 calc(100% - 352px);
  margin-left: 0;
  margin-right: 0;
  max-width: calc(100% - 352px);
}

.mr-article-sidebar {
  flex: 0 0 328px;
  margin-bottom: 60px;
  max-width: 328px;
  padding: 42px 15px 0 28px;
}

.mr-article-sidebar__inner {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 92px;
}

body.admin-bar .mr-article-sidebar__inner {
  top: 124px;
}

.mr-sidebar-widget {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(197, 210, 229, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.07);
  color: var(--mr-ink);
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mr-sidebar-widget::before {
  background: linear-gradient(90deg, var(--mr-blue) 0%, var(--mr-green) 100%);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mr-sidebar-widget:hover {
  border-color: rgba(17, 100, 255, 0.34);
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.1);
  transform: translateY(-2px);
}

.mr-sidebar-widget--primary {
  background: linear-gradient(145deg, #07111f 0%, #10213a 70%, #0b4fc7 150%);
  border-color: #07111f;
  box-shadow: 0 20px 42px rgba(7, 17, 31, 0.2);
  color: #ffffff;
}

.mr-sidebar-widget--primary::before {
  background: linear-gradient(90deg, var(--mr-amber) 0%, var(--mr-green) 100%);
}

.mr-sidebar-widget__title {
  color: var(--mr-ink);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.mr-sidebar-widget--primary .mr-sidebar-widget__title {
  color: #ffffff;
}

.mr-sidebar-widget p {
  color: var(--mr-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.mr-sidebar-widget--primary p {
  color: #d4deeb;
}

.mr-sidebar-kicker {
  align-items: center;
  color: var(--mr-green);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.mr-sidebar-kicker::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

.mr-sidebar-widget--primary .mr-sidebar-kicker {
  color: var(--mr-amber);
}

.mr-sidebar-feature-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.mr-sidebar-feature-list li {
  background: #ffffff;
  border: 1px solid rgba(219, 228, 240, 0.82);
  border-radius: 6px;
  color: #243247;
  font-size: 14px;
  line-height: 1.45;
  padding: 9px 10px 9px 30px;
  position: relative;
}

.mr-sidebar-feature-list li::before {
  background: var(--mr-green);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  top: 15px;
  width: 8px;
}

.mr-sidebar-widget--primary .mr-sidebar-feature-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.mr-sidebar-widget--primary .mr-sidebar-feature-list li::before {
  background: var(--mr-amber);
}

.mr-sidebar-button {
  font-size: 14px;
  margin-top: 16px;
  width: 100%;
}

.mr-sidebar-note {
  font-size: 12px !important;
  margin-top: 10px !important;
  opacity: 0.76;
  text-align: center;
}

.mr-sidebar-text-link {
  align-items: center;
  color: var(--mr-blue-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 6px;
  margin-top: 14px;
  text-decoration: none;
}

.mr-sidebar-text-link::after {
  content: "->";
  font-size: 13px;
  line-height: 1;
}

.mr-sidebar-text-link:hover,
.mr-sidebar-text-link:focus {
  color: var(--mr-blue);
}

.mr-sidebar-metric {
  align-items: baseline;
  background: #f6f9fe;
  border: 1px solid var(--mr-line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  margin: 14px 0;
  padding: 14px;
}

.mr-sidebar-metric strong {
  color: var(--mr-blue-dark);
  font-size: 32px;
  line-height: 1;
}

.mr-sidebar-metric span {
  color: var(--mr-muted);
  font-size: 13px;
  line-height: 1.4;
}

body.mailrush-owned-theme .site-footer {
  background: #07111f;
  color: #d4deeb;
}

body.mailrush-owned-theme .site-footer a {
  color: #ffffff;
}

body.mailrush-owned-theme .builder-item.cr p {
  margin: 0;
}

@media (max-width: 960px) {
  .admin-bar body.mailrush-owned-theme .header,
  body.admin-bar.mailrush-owned-theme .header {
    top: 0;
  }

  body.mailrush-owned-theme.mailrush-blog-index .archive-container,
  body.mailrush-owned-theme.single-post .neve-main > .container {
    max-width: calc(100% - 36px);
  }

  body.mailrush-owned-theme.single-post.mailrush-has-article-sidebar .nv-single-post-wrap,
  .mr-article-sidebar {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mr-article-sidebar {
    padding: 0 15px 44px;
  }

  .mr-article-sidebar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .mr-sidebar-widget--primary {
    grid-column: 1 / -1;
  }

  body.mailrush-owned-theme.mailrush-blog-index .posts-wrapper > article {
    width: 50%;
  }

  .mr-blog-intro {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .mr-blog-intro h1,
  .mr-blog-intro h2 {
    font-size: 32px;
  }

  .mr-blog-intro__proof {
    border-left: 0;
    border-top: 1px solid var(--mr-line);
    grid-template-columns: 1fr;
    padding: 22px 0 0;
  }

  .mr-loop-cta,
  .mr-article-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  body.mailrush-owned-theme.single-post .entry-header,
  body.mailrush-owned-theme.single-post .entry-content,
  .mr-article-cta {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  body.mailrush-owned-theme.mailrush-blog-index .archive-container,
  body.mailrush-owned-theme.single-post .neve-main > .container {
    max-width: calc(100% - 28px);
  }

  body.mailrush-owned-theme.mailrush-blog-index .posts-wrapper {
    --gridspacing: 22px;
  }

  body.mailrush-owned-theme.mailrush-blog-index .posts-wrapper > article {
    width: 100%;
  }

  .mr-blog-intro {
    margin: 22px 0 26px;
    padding: 20px;
  }

  .mr-article-sidebar {
    padding-bottom: 34px;
  }

  .mr-article-sidebar__inner {
    grid-template-columns: 1fr;
  }

  .mr-sidebar-widget {
    padding: 18px;
  }

  .mr-blog-intro h1,
  .mr-blog-intro h2 {
    font-size: 28px;
  }

  body.mailrush-owned-theme.single-post h1.entry-title {
    font-size: 32px;
  }

  body.mailrush-owned-theme.single-post .entry-content p,
  body.mailrush-owned-theme.single-post .entry-content li {
    font-size: 16px;
  }

  .mr-action-row,
  .mr-button {
    width: 100%;
  }
}
