:root {
  --navy: #062b74;
  --navy-deep: #001f5f;
  --blue: #1e63ad;
  --blue-soft: #dff0ff;
  --orange: #ff7700;
  --ink: #071a3d;
  --muted: #5a6a85;
  --line: #d9e5f2;
}

body {
  margin: 0;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.05), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
* { box-sizing: border-box; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 43, 116, 0.08);
  backdrop-filter: blur(10px);
}

body.admin-bar .site-header { top: 32px; }

.header-inner {
  width: min(100%, 1180px);
  height: 72px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.seizou-blog-brand { gap: 10px; }

.seizou-blog-brand .brand-logo {
  width: 225px;
  height: auto;
  flex: 0 0 auto;
}

.seizou-blog-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(6, 43, 116, 0.18);
}

.seizou-blog-brand-text {
  color: var(--navy-deep);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid #cfdceb;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
  color: #101726;
  font-size: 15px;
  font-weight: 800;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.24s;
}

.global-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  min-width: 148px;
  padding: 15px 24px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8a18 0%, var(--orange) 100%);
  box-shadow: 0 8px 18px rgba(255, 119, 0, 0.24);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.subpage-hero {
  background: linear-gradient(135deg, #fff 0%, #eff7ff 100%);
  border-bottom: 1px solid #dce7f2;
}

.subpage-hero .section-inner { padding-top: 48px; padding-bottom: 44px; }

.subpage-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0;
}

.subpage-hero p {
  margin: 14px 0 0;
  color: #16233a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.subpage-main {
  background: #f7fbff;
  padding: 46px 0 70px;
}

.content-panel {
  background: #fff;
  border: 1px solid #d7e2ee;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(6, 43, 116, 0.06);
}

.seizou-blog-post-hero .section-inner { max-width: 960px; }

.seizou-blog-hero-category,
.seizou-blog-card-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.seizou-blog-post-meta {
  margin-top: 12px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.seizou-blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 28px;
  align-items: start;
}

.seizou-blog-post-panel {
  max-width: 860px;
  margin: 0 auto;
}

.seizou-blog-featured-image,
.seizou-blog-entry-content figure {
  width: 90%;
  max-width: 500px;
  margin: 0 auto 30px;
}

.seizou-blog-featured-image img,
.seizou-blog-entry-content figure img,
.seizou-blog-entry-content img {
  width: 90%;
  max-width: 500px;
  height: auto;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(6, 43, 116, 0.12);
}

.seizou-blog-entry-content { color: #1f2a3d; }

.seizou-blog-entry-content h2 {
  position: relative;
  margin: 52px 0 18px;
  padding: 0 0 0 18px;
  color: var(--navy-deep);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.45;
}

.seizou-blog-entry-content h2::before {
  position: absolute;
  left: 0;
  top: 0.26em;
  width: 6px;
  height: 1.35em;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.seizou-blog-entry-content h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.55;
}

.seizou-blog-entry-content p,
.seizou-blog-entry-content li,
.seizou-blog-entry-content td,
.seizou-blog-entry-content th {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.seizou-blog-entry-content p { margin: 0 0 20px; }

.seizou-blog-entry-content ul,
.seizou-blog-entry-content ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 26px;
  padding-left: 1.35em;
}

.seizou-blog-entry-content li::marker {
  color: var(--orange);
  font-weight: 950;
}

.seizou-blog-entry-content table {
  width: 100%;
  margin: 26px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.seizou-blog-entry-content th,
.seizou-blog-entry-content td {
  padding: 14px 16px;
  border-bottom: 1px solid #e4edf6;
  text-align: left;
  vertical-align: top;
}

.seizou-blog-entry-content th {
  background: #f4f8fc;
  color: var(--navy);
  font-weight: 950;
}

.seizou-blog-entry-content tr:last-child th,
.seizou-blog-entry-content tr:last-child td { border-bottom: 0; }

.seizou-blog-entry-content .point-box,
.seizou-blog-entry-content .success-box,
.seizou-blog-entry-content .warning-box,
.seizou-blog-entry-content .highlight-box {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7fbff;
}

.seizou-blog-entry-content .point-box { border-left: 6px solid var(--blue); }
.seizou-blog-entry-content .success-box { border-left: 6px solid #0fba64; background: #f1fbf5; }
.seizou-blog-entry-content .warning-box { border-left: 6px solid var(--orange); background: #fff7f0; }
.seizou-blog-entry-content .point-box p,
.seizou-blog-entry-content .success-box p,
.seizou-blog-entry-content .warning-box p,
.seizou-blog-entry-content .highlight-box p { margin: 0; }

.seizou-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.seizou-blog-tags a {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f4f8fc;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.seizou-blog-side-panel { padding: 18px; }
.seizou-blog-side-panel h2 { margin: 0 0 12px; color: var(--navy); font-size: 18px; font-weight: 950; }
.seizou-blog-side-panel .seizou-blog-category-filter { display: grid; gap: 8px; }
.seizou-blog-side-button { width: 100%; margin-top: 14px; }

.button {
  min-width: 188px;
  min-height: 56px;
  padding: 17px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.seizou-blog-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.seizou-blog-category-filter a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid #cfdceb;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 6px 14px rgba(6, 43, 116, 0.05);
}

.seizou-blog-category-filter a.is-active,
.seizou-blog-category-filter a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.seizou-blog-taxonomy-kicker {
  width: fit-content;
  margin: 0 0 10px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.4 !important;
}

.seizou-blog-taxonomy-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.seizou-blog-taxonomy-label {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 950;
}

.seizou-blog-tag-filter {
  margin-bottom: 0;
}

.seizou-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.seizou-blog-card {
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 43, 116, 0.07);
}

.seizou-blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf4ff;
}

.seizou-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s;
}

.seizou-blog-card:hover .seizou-blog-card-image img { transform: scale(1.04); }

.seizou-blog-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.seizou-blog-card h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.55;
}

.seizou-blog-card p {
  margin: 0;
  color: #24344f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.seizou-blog-read-more {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.seizou-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.seizou-blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfdceb;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.seizou-blog-pagination .current {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.seizou-blog-empty { text-align: center; }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 34px;
}

.seizou-blog-footer-copy {
  margin: 14px 0 0;
  color: #24344f;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav h2 { margin: 0 0 10px; color: var(--navy); font-size: 14px; font-weight: 950; }
.footer-nav a, .footer-nav p { margin: 0 0 7px; color: #24344f; display: block; font-size: 12px; font-weight: 750; line-height: 1.5; }
.copyright { margin: 0; padding: 0 24px 18px; color: #5e6b7d; font-size: 12px; font-weight: 700; text-align: center; }

@media (max-width: 900px) {
  .menu-toggle { margin-left: auto; display: inline-flex; }
  .global-nav {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid #d7e2ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(6, 43, 116, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    font-size: 14px;
  }
  .global-nav a { min-height: 44px; padding: 12px 6px; border-bottom: 1px solid #edf3f9; display: flex; align-items: center; }
  .header-cta { order: 4; width: 100%; min-width: 0; display: none; }
  .header-inner.is-menu-open { height: auto; padding-top: 10px; padding-bottom: 12px; flex-wrap: wrap; }
  .header-inner.is-menu-open .global-nav, .header-inner.is-menu-open .header-cta { display: flex; }
  .seizou-blog-post-layout, .seizou-blog-grid { grid-template-columns: 1fr; }
  .seizou-blog-sidebar { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body.admin-bar .site-header { top: 46px; }
  .header-inner { min-height: 64px; height: 64px; padding: 10px 8px; gap: 12px; }
  .section-inner { padding-left: 8px; padding-right: 8px; }
  .subpage-main { padding: 28px 0 44px; }
  .subpage-hero .section-inner { padding: 34px 8px 30px; }
  .content-panel { padding: 18px 14px; }
  .seizou-blog-brand-text { font-size: 19px; }
  .seizou-blog-brand-mark { width: 36px; height: 36px; font-size: 18px; }
  .seizou-blog-entry-content h2 { margin-top: 38px; font-size: 23px; }
  .seizou-blog-entry-content h3 { font-size: 18px; }
  .seizou-blog-entry-content p, .seizou-blog-entry-content li, .seizou-blog-entry-content td, .seizou-blog-entry-content th { font-size: 15px; line-height: 1.9; }
  .seizou-blog-entry-content table, .seizou-blog-entry-content tbody, .seizou-blog-entry-content tr, .seizou-blog-entry-content th, .seizou-blog-entry-content td { display: block; width: 100%; }
  .seizou-blog-entry-content th { padding-bottom: 6px; }
  .seizou-blog-entry-content td { padding-top: 8px; }
  .footer-inner { padding-left: 8px; padding-right: 8px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
}

/* Structured article readability */
.seizou-blog-post-panel {
  max-width: 940px;
}

.seizou-blog-entry-content {
  counter-reset: article-section;
}

.seizou-blog-entry-content > p,
.seizou-blog-entry-content h2,
.seizou-blog-entry-content h3,
.seizou-blog-entry-content ul,
.seizou-blog-entry-content ol,
.seizou-blog-entry-content .article-lead-card,
.seizou-blog-entry-content .article-summary-box,
.seizou-blog-entry-content .article-key-grid,
.seizou-blog-entry-content .article-table-wrap,
.seizou-blog-entry-content .article-bar-chart,
.seizou-blog-entry-content .article-check-panel,
.seizou-blog-entry-content .article-guidance-panel,
.seizou-blog-entry-content .article-final-cta {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.seizou-blog-entry-content .article-lead-card {
  margin-bottom: 28px;
  padding: 24px 26px;
  border: 1px solid #cbdff2;
  border-left: 7px solid var(--orange);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 119, 0, 0.1), rgba(255, 255, 255, 0) 48%),
    #f8fbff;
}

.seizou-blog-entry-content .article-lead-card p {
  margin-bottom: 14px;
  color: #13233f;
  font-size: 17px;
  font-weight: 800;
  line-height: 2;
}

.seizou-blog-entry-content .article-lead-card p:last-child {
  margin-bottom: 0;
}

.seizou-blog-entry-content .article-summary-box {
  margin-bottom: 22px;
  padding: 20px 22px;
  border: 1px solid #d7e5f3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 43, 116, 0.08);
}

.seizou-blog-entry-content .article-summary-box strong,
.seizou-blog-entry-content .article-check-panel strong,
.seizou-blog-entry-content .article-guidance-panel strong,
.seizou-blog-entry-content .article-final-cta strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 950;
}

.seizou-blog-entry-content .article-summary-box ul,
.seizou-blog-entry-content .article-check-panel ul {
  margin: 0;
  padding-left: 1.25em;
}

.seizou-blog-entry-content .article-summary-box li,
.seizou-blog-entry-content .article-check-panel li {
  margin: 0;
  line-height: 1.85;
}

.seizou-blog-entry-content .article-key-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 44px;
}

.seizou-blog-entry-content .article-key-grid div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid #d9e6f3;
  border-radius: 10px;
  background: #f5f9fd;
}

.seizou-blog-entry-content .article-key-grid span {
  display: block;
  margin-bottom: 8px;
  color: #64738d;
  font-size: 12px;
  font-weight: 950;
}

.seizou-blog-entry-content .article-key-grid strong {
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.6;
}

.seizou-blog-entry-content h2 {
  counter-increment: article-section;
  margin-top: 58px;
  margin-bottom: 24px;
  padding: 18px 22px 18px 58px;
  border: 1px solid #d5e3f1;
  border-radius: 10px;
  background: linear-gradient(90deg, #eef7ff, #ffffff);
  box-shadow: 0 8px 20px rgba(6, 43, 116, 0.06);
}

.seizou-blog-entry-content h2::before {
  left: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: #fff;
  content: counter(article-section);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 950;
}

.seizou-blog-entry-content h3 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2edf7;
}

.seizou-blog-entry-content h3::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.seizou-blog-entry-content p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #1d2b43;
  font-weight: 650;
  line-height: 2.05;
}

.seizou-blog-entry-content .article-table-wrap {
  margin-top: 20px;
  margin-bottom: 30px;
  overflow-x: auto;
  border: 1px solid #d6e4f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(6, 43, 116, 0.07);
}

.seizou-blog-entry-content .article-table-wrap table {
  display: table;
  min-width: 680px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.seizou-blog-entry-content .article-table-wrap thead {
  display: table-header-group;
}

.seizou-blog-entry-content .article-table-wrap tbody {
  display: table-row-group;
}

.seizou-blog-entry-content .article-table-wrap tr {
  display: table-row;
}

.seizou-blog-entry-content .article-table-wrap th,
.seizou-blog-entry-content .article-table-wrap td {
  display: table-cell;
  width: auto;
}

.seizou-blog-entry-content .article-table-wrap th {
  background: #eff6fd;
  color: var(--navy-deep);
}

.seizou-blog-entry-content .article-table-wrap tbody th {
  width: 20%;
  background: #fff8f1;
  color: #9a4800;
}

.seizou-blog-entry-content .article-bar-chart {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid #d8e5f2;
  border-radius: 10px;
  background: #f7fbff;
}

.seizou-blog-entry-content .article-bar-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.seizou-blog-entry-content .article-bar-row span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.seizou-blog-entry-content .article-bar-row strong {
  position: relative;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8f4;
}

.seizou-blog-entry-content .article-bar-row strong::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffd166);
  content: "";
}

.seizou-blog-entry-content .article-bar-row em {
  color: #394960;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.seizou-blog-entry-content .article-check-panel {
  margin-top: 22px;
  margin-bottom: 30px;
  padding: 20px 22px;
  border: 1px solid #d7e5f3;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.seizou-blog-entry-content .article-guidance-panel {
  margin-top: 28px;
  margin-bottom: 34px;
  padding: 22px 24px;
  border: 1px solid #d9e6f3;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(6, 43, 116, 0.04), rgba(255, 255, 255, 0)),
    #ffffff;
}

.seizou-blog-entry-content .article-guidance-panel p {
  margin-bottom: 12px;
  padding-left: 18px;
  border-left: 4px solid #ffb15c;
  color: #23344f;
  font-weight: 750;
  line-height: 1.9;
}

.seizou-blog-entry-content .article-guidance-panel p:last-child {
  margin-bottom: 0;
}

.seizou-blog-entry-content figure.article-infographic {
  margin-top: 34px;
  margin-bottom: 42px;
}

.seizou-blog-entry-content .article-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 52px;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: #fff;
}

.seizou-blog-entry-content .article-final-cta h2 {
  grid-column: 1;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.45;
}

.seizou-blog-entry-content .article-final-cta h2::before {
  content: none;
}

.seizou-blog-entry-content .article-final-cta p {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.8;
}

.seizou-blog-entry-content .article-final-cta strong {
  color: #fff;
}

.seizou-blog-entry-content .article-final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.seizou-blog-entry-content .article-final-cta-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: end;
}

.seizou-blog-entry-content .article-final-cta-actions br {
  display: none;
}

.seizou-blog-entry-content .article-final-cta-link {
  justify-self: end;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .seizou-blog-entry-content .article-key-grid,
  .seizou-blog-entry-content .article-final-cta {
    grid-template-columns: 1fr;
  }

  .seizou-blog-entry-content h2 {
    padding: 16px 16px 16px 52px;
    font-size: 22px;
  }

  .seizou-blog-entry-content h2::before {
    left: 16px;
  }

  .seizou-blog-entry-content .article-final-cta h2 {
    padding: 0;
    font-size: 21px;
  }

  .seizou-blog-entry-content .article-bar-row {
    grid-template-columns: 92px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .seizou-blog-entry-content .article-final-cta-actions {
    grid-column: 1;
    grid-row: auto;
    justify-items: stretch;
  }

  .seizou-blog-entry-content .article-final-cta-button {
    width: 100%;
  }

  .seizou-blog-entry-content .article-final-cta-link {
    justify-self: start;
  }
}
