:root {
  --primary-color: #001b44;
  --accent-color: #d76c31; /* 採用情報のオレンジ色に変更 */
  --text-color: #333333;
  --text-muted: #666666;
  --bg-color: #ffffff;
  --section-bg: #f5f7fa;
  --card-bg: #ffffff;
  --header-bg: #ffffff;
  --footer-bg: #001b44;
  --footer-text: #ffffff;
  --transition-speed: 0.3s;
  --container-width: 1220px; /* 参照サイトに合わせる */
}

html {
    scroll-behavior: smooth;
}

.consulting-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    margin-top: 30px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background-color .25s ease, color .25s ease;
}

.consulting-hero__cta:hover {
    background: #fff;
    color: #0f3d68;
}

.consulting-topics {
    padding: 82px 0 88px;
    background: #f7f5f0;
}

.consulting-topics__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 34px;
}

.consulting-topics__heading h2 {
    margin-top: 7px;
    color: #153651;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(28px, 3.2vw, 43px);
    line-height: 1.45;
    letter-spacing: .025em;
}

.consulting-topics__heading > p {
    color: #52606b;
    font-size: 14px;
    line-height: 1.9;
}

.consulting-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid #d8d5cd;
    border-left: 1px solid #d8d5cd;
}

.consulting-topic-grid a {
    min-height: 158px;
    padding: 20px 18px;
    border-right: 1px solid #d8d5cd;
    border-bottom: 1px solid #d8d5cd;
    background: rgba(255, 255, 255, .72);
    display: flex;
    flex-direction: column;
    transition: background-color .2s ease, transform .2s ease;
}

.consulting-topic-grid a:hover {
    position: relative;
    z-index: 1;
    background: #fff;
    transform: translateY(-3px);
}

.consulting-topic-grid span {
    color: #bd6b3d;
    font-family: Georgia, serif;
    font-size: 12px;
}

.consulting-topic-grid strong {
    margin-top: auto;
    color: #143b5a;
    font-size: 16px;
    line-height: 1.45;
}

.consulting-topic-grid small {
    margin-top: 5px;
    color: #7a8389;
    font-size: 11px;
}

@media only screen and (max-width: 960px) {
    .consulting-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 680px) {
    .consulting-topics {
        padding: 58px 0 64px;
    }

    .consulting-topics__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .consulting-topic-grid a {
        min-height: 138px;
        padding: 16px 14px;
    }
}

/* --- Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px; /* ヘッダーがfixedなのでその分下げる */
}

a {
  text-decoration: none;
  color: inherit;
}

.container,
.wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
#header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

#header .wrap {
  padding-top: 24px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#header .siteTitle {
  width: 189px;
}

#header .siteTitle img {
  width: 100%;
  height: auto;
}

/* gNav */
#gNav {
  font-size: 14px;
  line-height: 1;
}

#gNav ul {
  display: flex;
  align-items: center;
  list-style: none;
}

#gNav li {
  margin-left: 35px;
}

#gNav li:first-child {
  margin-left: 0;
}

#gNav a {
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

#gNav a:hover,
#gNav a.active {
  border-bottom-color: #4c4c4c;
}

#gNav a.active {
  pointer-events: none;
}

#gNav a.recruit {
  width: 160px;
  margin-left: 30px;
  background: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
  padding: 15px 0;
  text-align: center;
  border-radius: 0;
  font-weight: bold;
}

#gNav a.recruit:hover {
  opacity: 0.8;
  border-bottom-color: transparent;
}

/* Mobile Menu Toggle */
#bt-gNav,
label[for="bt-gNav"] {
  display: none;
}

/* --- Responsive --- */
@media only screen and (max-width: 1024px) {
  #gNav li {
    margin-left: 20px;
  }
  #gNav a.recruit {
    width: 140px;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 1100px) {
  body {
    padding-top: 60px;
  }
  #header {
    height: 60px;
  }
  #header .wrap {
    padding: 10px 20px;
  }
  #header .siteTitle {
    width: 140px;
  }

  label[for="bt-gNav"] {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 10000;
    cursor: pointer;
  }

  label[for="bt-gNav"] span,
  label[for="bt-gNav"]::before,
  label[for="bt-gNav"]::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
  }

  label[for="bt-gNav"] span {
    top: 14px;
  }
  label[for="bt-gNav"]::before {
    top: 6px;
  }
  label[for="bt-gNav"]::after {
    top: 22px;
  }

  #bt-gNav:checked + #header label[for="bt-gNav"] span {
    opacity: 0;
  }
  #bt-gNav:checked + #header label[for="bt-gNav"]::before {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
  }
  #bt-gNav:checked + #header label[for="bt-gNav"]::after {
    top: 14px;
    transform: translateX(-50%) rotate(-45deg);
  }

  #gNav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    z-index: 9998;
  }

  #bt-gNav:checked + #header #gNav {
    height: calc(100vh - 60px);
  }

  #gNav ul {
    flex-direction: column;
    padding: 40px 20px;
  }

  #gNav li {
    margin: 0 0 20px 0;
    width: 100%;
    text-align: center;
  }

  #gNav a.recruit {
    margin: 20px auto 0;
  }
}

/* --- Footer --- */
#footer {
  border-top: 1px solid #d2d2d2;
  padding: 75px 0 20px;
  background-color: #fff;
  color: var(--text-color);
  margin-top: 60px;
}

#footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#footer .col01 {
  width: 350px;
}

#footer .logo {
  width: 189px;
}

#footer .logo img {
  width: 100%;
  height: auto;
}

#footer .data {
  margin: 25px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer-instagram {
  display: none;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer-instagram a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  color: var(--primary-color);
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed),
    color var(--transition-speed);
}

.site-footer-instagram a:hover,
.site-footer-instagram a:focus-visible {
  background: #f4f8fb;
  border-color: rgba(80, 210, 255, 0.72);
  color: var(--primary-color);
  outline: none;
}

#footer .fNav ul {
  display: flex;
  font-size: 12px;
  line-height: 1;
  list-style: none;
  justify-content: flex-end;
}

#footer .fNav li {
  margin-left: 15px;
}

#footer .fNav a {
  display: block;
  border-bottom: 1px solid transparent;
  padding: 12px 0;
  transition: 0.3s;
}

#footer .fNav a:hover,
#footer .fNav a.active {
  border-bottom-color: #808080;
}

#footer .copyright {
  margin: 20px 0 0;
  font-size: 10px;
  line-height: 1;
  text-align: right;
  color: #999;
}

/* --- Responsive --- */
@media only screen and (max-width: 768px) {
  #footer {
    padding: 50px 0 20px;
  }
  #footer .wrap {
    display: block;
  }
  #footer .col01 {
    width: auto;
    margin-bottom: 30px;
  }
  #footer .logo {
    width: 140px;
  }
  #footer .fNav {
    display: none; /* 参照サイトに合わせてモバイルでは非表示 */
  }
  .site-footer-instagram {
    display: block;
  }
  #footer .copyright {
    text-align: center;
    margin-top: 30px;
  }
}

/* --- Tech Blog Page --- */
.techblog-page {
  background: #f6f8fb;
  font-family:
    "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
}

.techblog-page #footer {
  margin-top: 0;
}

.techblog-masthead {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image:
    radial-gradient(circle at 86% 26%, rgba(199, 113, 67, .35) 0 8%, transparent 8.5%),
    radial-gradient(circle at 78% 65%, rgba(92, 157, 146, .22) 0 17%, transparent 17.5%),
    linear-gradient(120deg, #0a2740 0%, #173f59 58%, #214f63 100%);
  background-position: center center;
  background-size: cover;
}

.techblog-masthead__inner {
  padding: 48px 20px 54px;
}

.techblog-eyebrow {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.techblog-masthead .techblog-eyebrow {
  color: #ffb27a;
}

.techblog-masthead h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.28;
}

.techblog-masthead__inner > p:not(.techblog-eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 2;
}

.techblog-content {
  padding: 58px 0 86px;
}

.techblog-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(250px, 1fr);
  grid-template-areas:
    "main sidebar"
    "pagination .";
  gap: 26px 34px;
  align-items: start;
}

.techblog-main {
  grid-area: main;
  min-width: 0;
}

.techblog-section-head {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.techblog-section-head h2 {
  color: var(--primary-color);
  font-size: 1.9rem;
  line-height: 1.4;
}

.techblog-result {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: right;
}

.techblog-post-list {
  display: grid;
  gap: 18px;
}

.techblog-post {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 190px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  transition:
    border-color var(--transition-speed),
    box-shadow var(--transition-speed),
    transform var(--transition-speed);
}

.techblog-post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(255, 255, 255, 0.72),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(80, 210, 255, 0.18),
      rgba(12, 143, 140, 0.12) 48%,
      rgba(215, 108, 49, 0.18)
    );
  background-size:
    100% 100%,
    220% 220%;
  background-position:
    center,
    0% 50%;
  opacity: 0;
  transition:
    opacity var(--transition-speed),
    background-position 0.6s ease;
}

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

.techblog-post[hidden],
.techblog-empty[hidden] {
  display: none !important;
}

.techblog-post:hover,
.techblog-post:focus-within {
  border-color: rgba(80, 210, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(80, 210, 255, 0.24),
    0 0 24px rgba(80, 210, 255, 0.32),
    0 18px 40px rgba(0, 27, 68, 0.12);
  transform: translateY(-2px);
}

.techblog-post:hover::before,
.techblog-post:focus-within::before {
  background-position:
    center,
    100% 50%;
  opacity: 1;
}

.techblog-post__thumb {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background-image:
    linear-gradient(rgba(0, 27, 68, 0.08), rgba(0, 27, 68, 0.28)),
    url("assets/images/hero-connectivity.png");
  background-size: cover;
}

.techblog-post__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 27, 68, 0.42),
    rgba(12, 143, 140, 0.28)
  );
}

.techblog-post__thumb--network {
  background-position: center left;
}

.techblog-post__thumb--cloud {
  background-position: center center;
}

.techblog-post__thumb--monitoring {
  background-position: center right;
}

.techblog-post__thumb--wifi {
  background-position: top center;
}

.techblog-post__thumb--security {
  background-position: bottom center;
}

.techblog-post__thumb--helpdesk {
  background-position: bottom right;
}

.techblog-post__thumb--markdown {
  background-position: center;
}

.techblog-post__thumb--markdown::after {
  background: linear-gradient(
    135deg,
    rgba(0, 27, 68, 0.24),
    rgba(12, 143, 140, 0.1)
  );
}

.techblog-post__body {
  position: relative;
  z-index: 1;
  padding: 25px 28px 24px;
}

.techblog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
  color: #6a7482;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.techblog-post__meta time {
  color: var(--accent-color);
}

.techblog-post h3 {
  margin-bottom: 11px;
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1.55;
}

.techblog-post p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.9;
}

.techblog-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.techblog-post__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  background: #eef4f4;
  color: #0c6f6e;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background-color var(--transition-speed),
    box-shadow var(--transition-speed),
    color var(--transition-speed),
    text-shadow var(--transition-speed);
}

.techblog-post:hover .techblog-post__tags span,
.techblog-post:focus-within .techblog-post__tags span {
  background: #0c6f6e;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(80, 210, 255, 0.28),
    0 0 18px rgba(80, 210, 255, 0.5);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
}

.techblog-empty {
  margin-top: 18px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
}

.techblog-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 124px;
  display: grid;
  gap: 18px;
}

.techblog-layout.has-pagination .techblog-sidebar {
  margin-bottom: 66px;
}

.techblog-side-panel {
  padding: 23px 22px;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
}

.techblog-profile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.techblog-profile::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -16px;
  z-index: 0;
  width: 150px;
  height: 150px;
  background: url("assets/images/tsunagu-mark.png") center / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.techblog-profile > * {
  position: relative;
  z-index: 1;
}

.techblog-side-panel h2 {
  margin-bottom: 16px;
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.techblog-profile h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.techblog-profile p:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.techblog-instagram-panel {
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #7c3aed, #e1306c 52%, #f97316) border-box;
  box-shadow: 0 14px 34px rgba(0, 27, 68, 0.07);
}

.techblog-instagram-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.techblog-instagram-panel__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #e1306c 52%, #f97316);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(225, 48, 108, 0.22);
}

.techblog-instagram-panel__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.techblog-instagram-panel__text {
  margin: -4px 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.techblog-instagram-panel__button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: linear-gradient(135deg, #7c3aed, #e1306c 52%, #f97316);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  transition:
    box-shadow var(--transition-speed),
    opacity var(--transition-speed),
    transform var(--transition-speed);
}

.techblog-instagram-panel__button:hover,
.techblog-instagram-panel__button:focus-visible {
  box-shadow: 0 10px 24px rgba(225, 48, 108, 0.24);
  opacity: 0.95;
  outline: none;
  transform: translateY(-1px);
}

.techblog-contact-cta {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  overflow: hidden;
  border: 1px solid rgba(215, 108, 49, 0.68);
  border-radius: 8px;
  background: linear-gradient(135deg, #ff7a21 0%, var(--accent-color) 58%, #ff4f19 100%);
  box-shadow: 0 10px 22px rgba(215, 108, 49, 0.2);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition:
    box-shadow var(--transition-speed),
    opacity var(--transition-speed),
    transform var(--transition-speed);
}

.techblog-contact-cta:hover,
.techblog-contact-cta:focus-visible {
  box-shadow: 0 13px 26px rgba(215, 108, 49, 0.26);
  color: #ffffff;
  opacity: 0.96;
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.techblog-contact-cta__icon,
.techblog-contact-cta__arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #ff5b1f;
}

.techblog-contact-cta__icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(119, 50, 12, 0.15);
}

.techblog-contact-cta__text {
  flex: 1 1 auto;
  min-width: 0;
  color: #ffffff;
  overflow-wrap: anywhere;
  text-align: left;
}

.techblog-contact-cta__arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  color: #ffffff;
  transition: transform var(--transition-speed);
}

.techblog-contact-cta:hover .techblog-contact-cta__arrow,
.techblog-contact-cta:focus-visible .techblog-contact-cta__arrow {
  transform: translateX(2px);
}

.techblog-contact-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.techblog-search {
  width: 100%;
}

.techblog-search__input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  background: #f8fbfd;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  color: var(--primary-color);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed),
    box-shadow var(--transition-speed);
}

.techblog-search__input::placeholder {
  color: #8b97a5;
  font-weight: 500;
}

.techblog-search__input:focus {
  background: #ffffff;
  border-color: rgba(80, 210, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(80, 210, 255, 0.18);
  outline: none;
}

.techblog-search__input::-webkit-search-cancel-button {
  cursor: pointer;
}

.techblog-filter-list {
  display: grid;
  gap: 4px;
}

.techblog-filter-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 4px 0 12px;
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  color: var(--text-color);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed),
    color var(--transition-speed);
}

.techblog-filter-list button[hidden] {
  display: none !important;
}

.techblog-filter-list button:hover,
.techblog-filter-list button.is-active {
  background: #f4f8fb;
  border-left-color: var(--accent-color);
  color: var(--primary-color);
}

.techblog-filter-list button:disabled {
  cursor: default;
  opacity: 0.72;
}

.techblog-filter-list span {
  min-width: 28px;
  color: #7c8794;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.techblog-filter-more {
  justify-content: center !important;
  min-height: 38px !important;
  margin-top: 8px;
  padding: 0 12px !important;
  background: #f8fbfd !important;
  border: 1px solid #d9e3ee !important;
  border-radius: 6px;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.techblog-filter-more:hover,
.techblog-filter-more:focus-visible {
  background: #eef7fb !important;
  border-color: rgba(80, 210, 255, 0.72) !important;
  outline: none;
}

.techblog-pagination {
  grid-area: pagination;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.techblog-pagination[hidden] {
  display: none !important;
}

.techblog-pagination__button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 13px;
  background: #ffffff;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  color: var(--primary-color);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed),
    box-shadow var(--transition-speed),
    color var(--transition-speed),
    transform var(--transition-speed);
}

.techblog-pagination__button:hover,
.techblog-pagination__button:focus-visible {
  background: #f4f8fb;
  border-color: rgba(80, 210, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(80, 210, 255, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.techblog-pagination__button--active,
.techblog-pagination__button--active:hover,
.techblog-pagination__button--active:focus-visible {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
  color: #ffffff;
  transform: none;
}

.techblog-pagination__button--disabled,
.techblog-pagination__button--disabled:hover,
.techblog-pagination__button--disabled:focus-visible {
  background: #f8fbfd;
  border-color: #dfe6ee;
  box-shadow: none;
  color: #8b97a5;
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.techblog-pagination__ellipsis {
  display: inline-flex;
  min-width: 24px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: #7c8794;
  font-size: 0.88rem;
  font-weight: 700;
}

.techblog-movie-section {
  margin: 34px auto 0;
}

.techblog-movie-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.techblog-movie-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 27, 68, 0.08);
}

.techblog-movie-card__body {
  min-width: 0;
  margin-bottom: 18px;
}

.techblog-movie-card__body .techblog-eyebrow {
  margin-bottom: 8px;
}

.techblog-movie-card h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.32rem;
  line-height: 1.45;
}

.techblog-movie-card p:last-child {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.techblog-movie-card__video {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c1c2e;
  border-radius: 6px;
}

.techblog-movie-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 1024px) {
  .techblog-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    grid-template-areas:
      "main sidebar"
      "pagination .";
    gap: 24px;
  }

  .techblog-layout.has-pagination .techblog-sidebar {
    margin-bottom: 64px;
  }

  .techblog-post {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .techblog-post__body {
    padding: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .techblog-masthead {
    min-height: 270px;
    background-position: center right 36%;
  }

  .techblog-masthead__inner {
    padding: 42px 20px;
  }

  .techblog-masthead h2 {
    font-size: 2rem;
  }

  .techblog-content {
    padding: 42px 0 60px;
  }

  .techblog-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "pagination"
      "sidebar";
  }

  .techblog-layout.has-pagination .techblog-sidebar {
    margin-bottom: 0;
  }

  .techblog-movie-section {
    margin-top: 28px;
  }

  .techblog-movie-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .techblog-movie-card {
    padding: 18px;
  }

  .techblog-movie-card h2 {
    font-size: 1.18rem;
  }

  .techblog-section-head {
    display: block;
  }

  .techblog-result {
    margin-top: 8px;
    text-align: left;
  }

  .techblog-post {
    grid-template-columns: 1fr;
  }

  .techblog-post__thumb {
    min-height: 156px;
  }

  .techblog-post__body {
    padding: 22px 20px 24px;
  }

  .techblog-post h3 {
    font-size: 1.12rem;
  }

  .techblog-sidebar {
    position: static;
  }
}

.techblog-post {
  cursor: pointer;
}

.techblog-post:focus-within,
.techblog-post:hover {
  transform: translateY(-2px);
}

.related-articles[hidden] {
  display: none !important;
}

.article-date-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: -8px 0 30px;
}

.article-date-meta__item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  background: #f4f8fb;
  border: 1px solid #dfe6ee;
  border-radius: 999px;
  color: #536071;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-date-meta__item span {
  margin-right: 8px;
  color: #7c8794;
}

.article-date-meta__item time {
  color: var(--primary-color);
}

.article-copy-tools-mount:empty {
  display: none;
}

.article-copy-tools-mount {
  margin: -20px 0 34px;
}

.article-copy-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  margin: 0;
}

.article-copy-tools__button {
  min-height: 36px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  color: var(--primary-color);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed),
    box-shadow var(--transition-speed),
    color var(--transition-speed);
}

.article-copy-tools__button:hover,
.article-copy-tools__button:focus-visible {
  background: #f4f8fb;
  border-color: rgba(80, 210, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(80, 210, 255, 0.16);
  outline: none;
}

.article-copy-tools__button:disabled {
  cursor: default;
  opacity: 0.72;
}

.article-copy-tools__status {
  color: #536071;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-thumbnail {
  margin: 18px 0 0;
  overflow: hidden;
  background: #f4f8fb;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
}

.article-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-bottom-cta {
  padding: 0 24px 34px;
  background: #ffffff;
}

.article-bottom-cta__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.article-bottom-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.article-bottom-cta__card {
  display: grid;
  position: relative;
  min-width: 0;
  min-height: 184px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #d6e0eb;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 27, 68, 0.08);
}

.article-bottom-cta__card--contact {
  border-color: rgba(215, 108, 49, 0.28);
  box-shadow: 0 18px 42px rgba(215, 108, 49, 0.12);
}

.article-bottom-cta__card--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 108, 49, 0.08), rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.article-bottom-cta__card--instagram {
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(225, 48, 108, 0.56) 52%, rgba(249, 115, 22, 0.55)) border-box;
}

.article-bottom-cta__content,
.article-bottom-cta__visual {
  position: relative;
  z-index: 1;
}

.article-bottom-cta__content {
  min-width: 0;
}

.article-bottom-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-color);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-bottom-cta__card--instagram .article-bottom-cta__eyebrow {
  color: #b93282;
}

.article-bottom-cta__title {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 1.28rem;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-bottom-cta__text {
  margin: 0 0 22px;
  color: #536071;
  font-size: 0.94rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.article-bottom-cta__button {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition:
    box-shadow var(--transition-speed),
    opacity var(--transition-speed),
    transform var(--transition-speed);
}

.article-bottom-cta__button:hover,
.article-bottom-cta__button:focus-visible {
  color: #ffffff;
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.article-bottom-cta__button span {
  line-height: 1;
  transition: transform var(--transition-speed);
}

.article-bottom-cta__button:hover span,
.article-bottom-cta__button:focus-visible span {
  transform: translateX(2px);
}

.article-bottom-cta__button--contact {
  background: linear-gradient(135deg, var(--accent-color), #e88946);
  border-color: rgba(215, 108, 49, 0.72);
  box-shadow: 0 12px 24px rgba(215, 108, 49, 0.22);
}

.article-bottom-cta__button--contact:hover,
.article-bottom-cta__button--contact:focus-visible {
  box-shadow: 0 16px 30px rgba(215, 108, 49, 0.28);
}

.article-bottom-cta__button--instagram {
  background: linear-gradient(135deg, #7c3aed, #e1306c 52%, #f97316);
  box-shadow: 0 12px 24px rgba(225, 48, 108, 0.2);
}

.article-bottom-cta__button--instagram:hover,
.article-bottom-cta__button--instagram:focus-visible {
  box-shadow: 0 16px 30px rgba(225, 48, 108, 0.25);
}

.article-bottom-cta__visual {
  align-self: end;
  justify-self: end;
}

.article-bottom-cta__visual--contact {
  width: 176px;
  height: 118px;
}

.article-contact-visual__screen {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 16px;
  width: 124px;
  height: 78px;
  border: 7px solid #0f2540;
  border-bottom-width: 14px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, #f8fbfd, #e8f0f8);
  box-shadow: 0 14px 24px rgba(0, 27, 68, 0.14);
}

.article-contact-visual__screen::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -25px;
  left: 18px;
  height: 8px;
  border-radius: 999px;
  background: #0f2540;
}

.article-contact-visual__screen span {
  position: absolute;
  bottom: 12px;
  width: 13px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #9fd7f1, #6b94c3);
}

.article-contact-visual__screen span:nth-child(1) {
  left: 28px;
  height: 28px;
}

.article-contact-visual__screen span:nth-child(2) {
  left: 50px;
  height: 42px;
}

.article-contact-visual__screen span:nth-child(3) {
  left: 72px;
  height: 24px;
}

.article-contact-visual__chat {
  display: block;
  position: absolute;
  top: 36px;
  left: 6px;
  width: 46px;
  height: 30px;
  border-radius: 8px;
  background: #7592b7;
  box-shadow: 0 10px 20px rgba(0, 27, 68, 0.12);
}

.article-contact-visual__chat::before,
.article-contact-visual__chat::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

.article-contact-visual__chat::before {
  left: 13px;
  box-shadow: 10px 0 0 #ffffff;
}

.article-contact-visual__chat::after {
  right: 7px;
}

.article-contact-visual__box {
  display: block;
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 34px;
  height: 30px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 45%),
    #c99b68;
  box-shadow: 0 10px 18px rgba(0, 27, 68, 0.14);
}

.article-bottom-cta__visual--instagram {
  display: grid;
  width: 104px;
  min-height: 112px;
  place-items: center;
}

.article-instagram-visual__mark {
  display: block;
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 23px;
  background: linear-gradient(135deg, #7c3aed, #e1306c 52%, #f97316);
  box-shadow: 0 16px 28px rgba(225, 48, 108, 0.24);
}

.article-instagram-visual__mark::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 7px solid #ffffff;
  border-radius: 18px;
}

.article-instagram-visual__mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 7px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.article-instagram-visual__mark span::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.related-articles {
  padding: 0 24px 96px;
  background: #ffffff;
}

.related-articles__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.related-articles__eyebrow {
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.related-articles h2 {
  margin-bottom: 24px;
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1.4;
}

.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-article-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  transition:
    border-color var(--transition-speed),
    box-shadow var(--transition-speed),
    transform var(--transition-speed);
}

.related-article-card:hover,
.related-article-card:focus-visible {
  border-color: rgba(80, 210, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(80, 210, 255, 0.18),
    0 18px 40px rgba(0, 27, 68, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

.related-article-card:focus-visible {
  outline: none;
}

.related-article-card__thumb {
  aspect-ratio: 16 / 9;
  background-color: #eef4f4;
  background-position: center;
  background-size: cover;
}

.related-article-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.related-article-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.related-article-card p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.related-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.related-article-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  background: #eef4f4;
  color: #0c6f6e;
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.related-article-card__more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent-color);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

@media only screen and (max-width: 1024px) {
  .article-bottom-cta__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-bottom-cta__visual {
    display: none;
  }

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

@media only screen and (max-width: 768px) {
  .related-articles {
    padding: 0 20px 72px;
  }

  .related-articles h2 {
    font-size: 1.45rem;
  }

  .article-date-meta {
    margin: -4px 0 24px;
  }

  .article-copy-tools-mount {
    margin: -12px 0 28px;
  }

  .article-copy-tools__button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .article-copy-tools__status {
    min-height: 1.4em;
  }

  .article-bottom-cta {
    padding: 0 20px 28px;
  }

  .article-bottom-cta__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-bottom-cta__card {
    min-height: auto;
    padding: 20px;
  }

  .article-bottom-cta__title {
    font-size: 1.08rem;
  }

  .article-bottom-cta__text {
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .article-bottom-cta__button {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
  }

  .related-articles__grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 420px) {
  .article-bottom-cta__card {
    padding: 18px;
  }
}

/* Final contrast and empty-state overrides. */
.techblog-page .techblog-sidebar .techblog-profile {
  border-top: 4px solid #d4865f !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  background: #173b57 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(22, 33, 43, .16) !important;
}

.techblog-page .techblog-sidebar .techblog-profile .techblog-eyebrow {
  color: #f2a178 !important;
}

.techblog-page .techblog-sidebar .techblog-profile h2 {
  color: #ffffff !important;
}

.techblog-page .techblog-sidebar .techblog-profile p:last-child {
  color: #e6edf2 !important;
}

.techblog-page .techblog-post-list > .techblog-empty {
  display: grid;
  min-height: 220px;
  margin: 0;
  padding: 36px 28px;
  place-items: center;
  border-top: 2px solid var(--consulting-ink);
  border-bottom: 1px solid var(--consulting-line);
  background: rgba(255, 253, 249, .72);
  color: #4b5963;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .techblog-page .techblog-post-list > .techblog-empty {
    min-height: 180px;
    padding: 30px 20px;
    font-size: 16px;
  }
}

/* Editor's note: high-contrast paper card for comfortable reading. */
.techblog-page .techblog-profile {
  position: relative;
  padding: 32px 28px 34px;
  border-top: 4px solid var(--consulting-navy);
  border-right: 1px solid var(--consulting-line);
  border-bottom: 1px solid var(--consulting-line);
  border-left: 1px solid var(--consulting-line);
  background: var(--consulting-white);
  color: var(--consulting-ink);
  box-shadow: 0 16px 36px rgba(22, 33, 43, .08);
}

.techblog-page .techblog-profile .techblog-eyebrow {
  color: #9f5532;
  font-size: 11px;
  letter-spacing: .18em;
}

.techblog-page .techblog-profile h2 {
  color: var(--consulting-ink);
}

.techblog-page .techblog-profile p:last-child {
  color: #44535e;
}

@media only screen and (max-width: 768px) {
  .techblog-page .techblog-profile {
    padding: 28px 22px 30px;
  }

  .techblog-page .techblog-profile .techblog-eyebrow {
    font-size: 12px;
  }

  .techblog-page .techblog-profile h2 {
    font-size: 24px;
  }

  .techblog-page .techblog-profile p:last-child {
    color: #3f4e59;
    font-size: 16px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .techblog-page .techblog-masthead::before,
  .techblog-page .techblog-masthead::after {
    display: none;
  }

  .techblog-page .consulting-hero {
    gap: 46px;
    padding-bottom: 0;
  }

  .techblog-page .consulting-hero__framework {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    padding: 46px 20px 56px;
    background: var(--consulting-navy);
  }

  .techblog-page .consulting-hero__framework strong {
    color: #fff;
  }

  .techblog-page .consulting-hero__framework small {
    color: rgba(255, 255, 255, .78);
  }
}

/* --- Article Page Layout Switcher --- */

.article-page.layout-docs .layout {
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) 260px;
}

.article-page.layout-docs article > header {
  display: none;
}

.article-page.layout-docs .markdown-card {
  margin-top: 40px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.article-page.layout-docs .toc {
  display: block;
}

/* Hero Image Layout：Markdown本文側に効かせる */
.article-page.layout-hero {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 360px);
}

.article-page.layout-hero .layout {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) 240px;
}

.article-page.layout-hero article > header {
  display: none;
}

.article-page.layout-hero .markdown-card {
  margin-top: 40px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.article-page.layout-hero .markdown-body h1:first-child {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.article-page.layout-hero .markdown-body img:first-of-type {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  margin: 0 0 48px;
  border-radius: 28px;
}

/* Minimal Reading Layout */
.article-page.layout-minimal .layout {
  max-width: 820px;
  display: block;
}

.article-page.layout-minimal article > header {
  display: none;
}

.article-page.layout-minimal .toc {
  display: none;
}

.article-page.layout-minimal .markdown-card {
  margin-top: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.article-page.layout-minimal .markdown-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-page.layout-minimal .markdown-body h1:first-child {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.article-page.layout-minimal .markdown-body p {
  font-size: 1.04rem;
  line-height: 2.05;
}

@media only screen and (max-width: 900px) {
  .article-page.layout-docs .layout,
  .article-page.layout-hero .layout {
    grid-template-columns: 1fr;
  }

  .article-page.layout-docs .toc,
  .article-page.layout-hero .toc {
    position: static;
    order: -1;
  }
}

/* =========================================================
   Consulting Journal redesign
   ========================================================= */
:root {
  --consulting-ink: #16212b;
  --consulting-navy: #173b57;
  --consulting-blue: #2d628a;
  --consulting-copper: #b96b43;
  --consulting-paper: #f4f1ea;
  --consulting-white: #fffdf9;
  --consulting-line: #d9d4ca;
}

.techblog-page {
  background: var(--consulting-white);
  color: var(--consulting-ink);
}

.techblog-page #header {
  height: 88px;
  border: 0;
  border-bottom: 1px solid rgba(22, 33, 43, .14);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(16px);
}

.techblog-page .consulting-header__inner {
  height: 100%;
  padding-top: 0;
  align-items: center;
}

.techblog-page .consulting-brand {
  width: auto;
}

.techblog-page .consulting-brand a {
  display: flex;
  align-items: center;
  gap: 18px;
}

.techblog-page .consulting-brand img {
  width: 154px;
}

.techblog-page .consulting-brand span {
  padding-left: 18px;
  border-left: 1px solid var(--consulting-line);
  color: #66717a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  white-space: nowrap;
}

.techblog-page #gNav li {
  margin-left: 32px;
}

.techblog-page #gNav a {
  padding: 11px 0;
  border: 0;
  color: #35434f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}

.techblog-page #gNav a:not(.recruit)::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  background: var(--consulting-copper);
  transition: width .25s ease;
}

.techblog-page #gNav a:not(.recruit):hover::after {
  width: 100%;
}

.techblog-page #gNav a.recruit {
  width: auto;
  min-width: 118px;
  margin-left: 10px;
  padding: 13px 22px;
  border: 1px solid var(--consulting-ink);
  background: var(--consulting-ink);
  color: #fff;
}

.techblog-page .techblog-masthead {
  min-height: 610px;
  color: var(--consulting-ink);
  background: var(--consulting-paper);
  background-image: none;
  overflow: hidden;
}

.techblog-page .techblog-masthead::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,.2);
  background: var(--consulting-navy);
}

.techblog-page .techblog-masthead::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.techblog-page .consulting-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .72fr);
  gap: 9vw;
  align-items: center;
  width: 100%;
  padding-top: 92px;
  padding-bottom: 92px;
}

.techblog-page .consulting-hero__copy {
  max-width: 770px;
}

.techblog-page .techblog-masthead .techblog-eyebrow {
  margin-bottom: 24px;
  color: var(--consulting-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .22em;
}

.techblog-page .techblog-masthead h2 {
  max-width: none;
  margin-bottom: 30px;
  color: var(--consulting-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: .025em;
}

.techblog-page .techblog-masthead h2 em {
  color: var(--consulting-blue);
  font-style: normal;
}

.techblog-page .techblog-masthead__inner > .consulting-hero__copy > p:not(.techblog-eyebrow) {
  max-width: 620px;
  color: #59656e;
  font-size: 15px;
  line-height: 2.05;
}

.consulting-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.consulting-hero__cta {
  min-width: 190px;
  margin: 0;
  padding: 16px 22px;
  border: 1px solid var(--consulting-ink);
  background: var(--consulting-ink);
  color: #fff;
  font-size: 13px;
}

.consulting-hero__cta:hover {
  background: transparent;
  color: var(--consulting-ink);
}

.consulting-hero__text-link {
  color: var(--consulting-ink);
  font-size: 13px;
  font-weight: 700;
}

.consulting-hero__text-link span {
  margin-left: 6px;
  color: var(--consulting-copper);
}

.consulting-hero__framework {
  color: #fff;
}

.consulting-hero__framework > p {
  margin-bottom: 30px;
  color: rgba(255,255,255,.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .24em;
}

.consulting-hero__framework ol {
  list-style: none;
}

.consulting-hero__framework li {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 21px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.consulting-hero__framework li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.consulting-hero__framework span {
  grid-row: 1 / 3;
  color: #d49a7c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.consulting-hero__framework strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .13em;
}

.consulting-hero__framework small {
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

@media only screen and (max-width: 900px) {
  .techblog-page {
    padding-top: 68px;
  }

  .techblog-page #header {
    height: 68px;
  }

  .techblog-page .consulting-brand img {
    width: 126px;
  }

  .techblog-page .consulting-brand span {
    display: none;
  }

  .techblog-page #gNav {
    top: 68px;
  }

  .techblog-page #gNav li {
    margin: 0 0 22px;
  }

  .techblog-page #gNav a.recruit {
    margin: 14px auto 0;
  }

  .techblog-page .techblog-masthead::before {
    top: auto;
    width: 100%;
    height: 240px;
  }

  .techblog-page .consulting-hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .techblog-page .techblog-masthead h2 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .consulting-hero__framework {
    padding-top: 38px;
  }
}

@media only screen and (max-width: 560px) {
  .consulting-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .techblog-page .techblog-masthead::before {
    height: 270px;
  }
}

.techblog-page .consulting-topics {
  padding: 112px 0 118px;
  background: var(--consulting-white);
}

.techblog-page .consulting-topics__heading {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 9vw;
  align-items: end;
  margin-bottom: 64px;
}

.techblog-page .consulting-topics__heading .techblog-eyebrow,
.techblog-page .techblog-section-head .techblog-eyebrow,
.consulting-conversion .techblog-eyebrow {
  margin-bottom: 14px;
  color: var(--consulting-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .22em;
}

.techblog-page .consulting-topics__heading h2 {
  margin: 0;
  color: var(--consulting-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.48;
}

.techblog-page .consulting-topics__heading > p {
  padding-bottom: 8px;
  color: #69747c;
  font-size: 14px;
  line-height: 2;
}

.techblog-page .consulting-topic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  border: 0;
}

.techblog-page .consulting-topic-grid a {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  min-height: 112px;
  padding: 27px 18px 26px 4px;
  border: 0;
  border-top: 1px solid var(--consulting-line);
  background: transparent;
  transition: padding .25s ease, color .25s ease, background-color .25s ease;
}

.techblog-page .consulting-topic-grid a:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--consulting-line);
}

.techblog-page .consulting-topic-grid a:hover {
  padding-left: 18px;
  background: var(--consulting-navy);
  transform: none;
}

.techblog-page .consulting-topic-grid span {
  grid-row: 1 / 3;
  color: var(--consulting-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.techblog-page .consulting-topic-grid strong {
  margin: 0;
  color: var(--consulting-ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .03em;
}

.techblog-page .consulting-topic-grid small {
  margin-top: 8px;
  color: #899198;
  font-size: 11px;
  letter-spacing: .03em;
}

.techblog-page .consulting-topic-grid a:hover strong,
.techblog-page .consulting-topic-grid a:hover small {
  color: #fff;
}

.consulting-principles {
  padding: 92px 0;
  background: var(--consulting-ink);
  color: #fff;
}

.consulting-principles__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  align-items: center;
}

.consulting-principles__lead > p {
  margin-bottom: 18px;
  color: #d49a7c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .22em;
}

.consulting-principles__lead h2 {
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.65;
}

.consulting-principles dl {
  border-top: 1px solid rgba(255,255,255,.18);
}

.consulting-principles dl > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.consulting-principles dt {
  color: #d49a7c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.consulting-principles dd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.consulting-principles dd strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
}

.consulting-principles dd span {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.techblog-page .techblog-content {
  padding: 112px 0 0;
  background: var(--consulting-paper);
}

.techblog-page .techblog-layout {
  grid-template-columns: minmax(0, 3.15fr) minmax(260px, .85fr);
  gap: 44px 54px;
}

.techblog-page .techblog-section-head {
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #bdb8ae;
}

.techblog-page .techblog-section-head h2 {
  color: var(--consulting-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.45;
}

.techblog-page .techblog-result {
  color: #737d84;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .05em;
}

.techblog-page .techblog-post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 28px;
}

.techblog-page .techblog-post {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.techblog-page .techblog-post:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  min-height: 370px;
  border-top: 3px solid var(--consulting-ink);
  border-bottom: 1px solid #bdb8ae;
}

.techblog-page .techblog-post::before {
  display: none;
}

.techblog-page .techblog-post:hover,
.techblog-page .techblog-post:focus-within {
  border-color: var(--consulting-ink);
  box-shadow: none;
  transform: none;
}

.techblog-page .techblog-post__thumb {
  width: 100%;
  min-height: 220px;
  border: 0;
  background-color: var(--consulting-navy);
  background-position: center;
  background-size: cover;
  filter: saturate(.72) contrast(.95);
}

.techblog-page .techblog-post:not(:first-child) .techblog-post__thumb {
  aspect-ratio: 16 / 9;
}

.techblog-page .techblog-post__thumb::after {
  display: none;
}

.techblog-page .techblog-post__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 2px 8px;
  border-bottom: 1px solid #cfc9bf;
}

.techblog-page .techblog-post:first-child .techblog-post__body {
  justify-content: center;
  padding: 46px 42px;
  border-bottom: 0;
  background: var(--consulting-white);
}

.techblog-page .techblog-post__meta {
  gap: 12px;
  margin-bottom: 15px;
  color: #7b8389;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .04em;
}

.techblog-page .techblog-post__meta span {
  padding-left: 12px;
  border-left: 1px solid #aaa49a;
  color: var(--consulting-copper);
}

.techblog-page .techblog-post h3 {
  margin-bottom: 14px;
  color: var(--consulting-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.techblog-page .techblog-post:first-child h3 {
  font-size: clamp(25px, 2.6vw, 36px);
}

.techblog-page .techblog-post p {
  color: #6d777e;
  font-size: 13px;
  line-height: 1.9;
}

.techblog-page .techblog-post__tags {
  margin-top: auto;
  padding-top: 22px;
  gap: 7px 13px;
}

.techblog-page .techblog-post__tags span {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7d858a;
  font-size: 10px;
}

.techblog-page .techblog-sidebar {
  position: sticky;
  top: 112px;
}

.techblog-page .techblog-side-panel {
  margin-bottom: 0;
  padding: 28px 0;
  border: 0;
  border-top: 1px solid #bdb8ae;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.techblog-page .techblog-profile {
  padding: 32px 27px;
  border: 0;
  background: var(--consulting-navy);
  color: #fff;
}

.techblog-page .techblog-profile::after {
  display: none;
}

.techblog-page .techblog-profile .techblog-eyebrow {
  color: #d49a7c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: .2em;
}

.techblog-page .techblog-profile h2 {
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
}

.techblog-page .techblog-profile p:last-child {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.9;
}

.techblog-page .techblog-side-panel h2 {
  margin-bottom: 17px;
  color: var(--consulting-ink);
  font-size: 12px;
  letter-spacing: .08em;
}

.techblog-page .techblog-search__input {
  height: 48px;
  border: 0;
  border-bottom: 1px solid #958f85;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
}

.techblog-page .techblog-filter-list button {
  border: 1px solid #c8c2b8;
  border-radius: 0;
  background: transparent;
  color: #59646c;
  font-size: 10px;
}

.techblog-page .techblog-filter-list button:hover,
.techblog-page .techblog-filter-list button.is-active {
  border-color: var(--consulting-ink);
  background: var(--consulting-ink);
  color: #fff;
}

.techblog-page .techblog-contact-cta {
  margin: 0;
  padding: 27px 24px;
  border: 0;
  border-radius: 0;
  background: var(--consulting-copper);
  box-shadow: none;
}

.techblog-page .techblog-contact-cta__icon {
  display: none;
}

.techblog-page .techblog-contact-cta__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 600;
}

.techblog-page .techblog-contact-cta__text small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .2em;
}

.techblog-page .techblog-contact-cta:hover {
  background: #9f5835;
  box-shadow: none;
  transform: none;
}

.consulting-conversion {
  display: grid;
  grid-template-columns: .62fr 1.15fr auto;
  gap: 5vw;
  align-items: end;
  margin-top: 112px;
  padding-top: 74px;
  padding-bottom: 80px;
  border-top: 1px solid #aaa49a;
}

.consulting-conversion__number {
  color: rgba(22,33,43,.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.consulting-conversion__body h2 {
  color: var(--consulting-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.55;
}

.consulting-conversion__body > p:last-child {
  max-width: 620px;
  margin-top: 20px;
  color: #69747c;
  font-size: 13px;
  line-height: 2;
}

.consulting-conversion > a {
  min-width: 200px;
  padding: 18px 22px;
  border: 1px solid var(--consulting-ink);
  color: var(--consulting-ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.consulting-conversion > a:hover {
  background: var(--consulting-ink);
  color: #fff;
}

.techblog-page #footer {
  padding-top: 72px;
  border: 0;
  background: #101a22;
  color: #fff;
}

.techblog-page #footer .data,
.techblog-page #footer .fNav a,
.techblog-page #footer .site-footer-instagram a {
  color: rgba(255,255,255,.6);
}

.techblog-page #footer .logo img {
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 1024px) {
  .techblog-page .techblog-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 36px;
  }

  .techblog-page .techblog-post:first-child {
    grid-template-columns: 1fr;
  }

  .techblog-page .techblog-post:first-child .techblog-post__thumb {
    min-height: 330px;
  }

  .consulting-conversion {
    grid-template-columns: 1fr 1.5fr;
  }

  .consulting-conversion > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media only screen and (max-width: 768px) {
  .techblog-page .consulting-topics,
  .techblog-page .techblog-content {
    padding-top: 76px;
  }

  .techblog-page .consulting-topics {
    padding-bottom: 80px;
  }

  .techblog-page .consulting-topics__heading,
  .consulting-principles__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .techblog-page .consulting-topic-grid {
    grid-template-columns: 1fr;
  }

  .techblog-page .consulting-topic-grid a:nth-last-child(2) {
    border-bottom: 0;
  }

  .consulting-principles {
    padding: 70px 0;
  }

  .consulting-principles dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .techblog-page .techblog-layout {
    display: block;
  }

  .techblog-page .techblog-post-list {
    grid-template-columns: 1fr;
  }

  .techblog-page .techblog-post:first-child {
    grid-column: auto;
  }

  .techblog-page .techblog-post:first-child .techblog-post__body {
    padding: 30px 24px;
  }

  .techblog-page .techblog-sidebar {
    position: static;
    margin-top: 70px;
  }

  .consulting-conversion {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 80px;
  }

  .consulting-conversion > a {
    grid-column: auto;
    justify-self: stretch;
  }
}

/* --- Readability and responsive refinements --- */
.techblog-page {
  font-size: 17px;
}

.techblog-page .techblog-masthead__inner > .consulting-hero__copy > p:not(.techblog-eyebrow) {
  font-size: 17px;
  line-height: 2;
}

.techblog-page .consulting-hero__cta,
.techblog-page .consulting-hero__text-link {
  font-size: 15px;
}

.techblog-page .consulting-hero__framework strong {
  font-size: 19px;
}

.techblog-page .consulting-hero__framework small {
  font-size: 13px;
}

.techblog-page .consulting-topics__heading > p {
  font-size: 16px;
}

.techblog-page .consulting-topic-grid strong {
  font-size: 19px;
}

.techblog-page .consulting-topic-grid small {
  font-size: 13px;
}

@media only screen and (max-width: 768px) {
  .techblog-page .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .techblog-page .consulting-header__inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .techblog-page .techblog-masthead {
    min-height: auto;
  }

  .techblog-page .consulting-hero {
    gap: 52px;
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .techblog-page .techblog-masthead .techblog-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.7;
  }

  .techblog-page .techblog-masthead h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.38;
  }

  .techblog-page .techblog-masthead__inner > .consulting-hero__copy > p:not(.techblog-eyebrow) {
    font-size: 16px;
    line-height: 1.95;
  }

  .techblog-page .consulting-hero__actions {
    gap: 16px;
    margin-top: 30px;
  }

  .techblog-page .consulting-hero__cta {
    width: 100%;
    min-height: 54px;
    padding: 15px 20px;
    font-size: 15px;
  }

  .techblog-page .consulting-hero__text-link {
    padding: 8px 0;
    font-size: 15px;
  }

  .techblog-page .consulting-hero__framework {
    padding-top: 30px;
  }

  .techblog-page .consulting-hero__framework > p {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .techblog-page .consulting-hero__framework li {
    grid-template-columns: 42px 1fr;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 420px) {
  .techblog-page .wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

  .techblog-page .techblog-masthead h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 768px) {
  .techblog-page .consulting-topics,
  .techblog-page .techblog-content {
    padding-top: 68px;
  }

  .techblog-page .consulting-topics {
    padding-bottom: 72px;
  }

  .techblog-page .consulting-topics__heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .techblog-page .consulting-topics__heading h2,
  .techblog-page .techblog-section-head h2 {
    font-size: 32px;
    line-height: 1.5;
  }

  .techblog-page .consulting-topics__heading > p {
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.95;
  }

  .techblog-page .consulting-topic-grid a {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 104px;
    padding: 24px 6px;
  }

  .techblog-page .consulting-topic-grid a:hover {
    padding-left: 14px;
  }

  .techblog-page .consulting-topic-grid strong {
    font-size: 19px;
  }

  .techblog-page .consulting-topic-grid small {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.6;
  }

  .techblog-page .consulting-principles {
    padding: 64px 0;
  }

  .techblog-page .consulting-principles__lead h2 {
    font-size: 30px;
    line-height: 1.6;
  }

  .techblog-page .consulting-principles dl > div {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px 0;
  }

  .techblog-page .consulting-principles dd strong {
    font-size: 18px;
  }

  .techblog-page .consulting-principles dd span {
    font-size: 14px;
    line-height: 1.7;
  }

  .techblog-page .techblog-section-head {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .techblog-page .techblog-result {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .techblog-page .techblog-post-list {
    gap: 38px;
  }

  .techblog-page .techblog-post:first-child .techblog-post__thumb,
  .techblog-page .techblog-post__thumb {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .techblog-page .techblog-post:first-child .techblog-post__body,
  .techblog-page .techblog-post__body {
    padding: 24px 2px 18px;
  }

  .techblog-page .techblog-post__meta {
    font-size: 12px;
    line-height: 1.6;
  }

  .techblog-page .techblog-post h3,
  .techblog-page .techblog-post:first-child h3 {
    font-size: 23px;
    line-height: 1.55;
  }

  .techblog-page .techblog-post p {
    font-size: 16px;
    line-height: 1.9;
  }

  .techblog-page .techblog-post__tags span {
    font-size: 13px;
    line-height: 1.5;
  }

  .techblog-page .techblog-sidebar {
    margin-top: 62px;
  }

  .techblog-page .techblog-side-panel {
    padding: 28px 0;
  }

  .techblog-page .techblog-profile {
    padding: 30px 24px;
  }

  .techblog-page .techblog-profile h2 {
    font-size: 23px;
  }

  .techblog-page .techblog-profile p:last-child,
  .techblog-page .techblog-instagram-panel__text {
    font-size: 15px;
    line-height: 1.85;
  }

  .techblog-page .techblog-side-panel h2 {
    font-size: 15px;
    line-height: 1.6;
  }

  .techblog-page .techblog-search__input {
    height: 54px;
    font-size: 16px;
  }

  .techblog-page .techblog-filter-list button {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .techblog-page .techblog-contact-cta {
    min-height: 64px;
    padding: 18px 20px;
  }

  .techblog-page .techblog-contact-cta__text {
    font-size: 19px;
  }

  .techblog-page .consulting-conversion {
    gap: 22px;
    margin-top: 68px;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .techblog-page .consulting-conversion__body h2 {
    font-size: 30px;
  }

  .techblog-page .consulting-conversion__body > p:last-child {
    font-size: 16px;
    line-height: 1.9;
  }

  .techblog-page .consulting-conversion > a {
    min-height: 54px;
    padding: 15px 20px;
    font-size: 15px;
  }

  .techblog-page #footer .data,
  .techblog-page #footer .site-footer-instagram a {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1100px) {
  .techblog-page {
    padding-top: 72px;
  }

  .techblog-page #header {
    height: 72px;
  }

  .techblog-page .consulting-header__inner {
    height: 72px;
    padding: 0 24px;
    align-items: center;
  }

  .techblog-page .consulting-brand img {
    width: 132px;
  }

  .techblog-page .consulting-brand span {
    display: none;
  }

  .techblog-page #gNav {
    top: 72px;
  }

  .techblog-page #bt-gNav:checked + #header #gNav {
    height: calc(100vh - 72px);
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .techblog-page .consulting-hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .techblog-page .techblog-masthead::before {
    top: auto;
    width: 100%;
    height: 250px;
  }

  .techblog-page .consulting-hero__framework {
    padding-top: 28px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 900px) {
  .techblog-page .consulting-topics__heading,
  .techblog-page .consulting-principles__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .techblog-page .techblog-layout {
    display: block;
  }

  .techblog-page .techblog-sidebar {
    position: static;
    margin-top: 72px;
  }
}

@media only screen and (min-width: 769px) {
  .techblog-page #gNav a {
    font-size: 14px;
  }

  .techblog-page .consulting-principles dd strong {
    font-size: 18px;
  }

  .techblog-page .consulting-principles dd span {
    font-size: 14px;
    line-height: 1.7;
  }

  .techblog-page .techblog-post h3 {
    font-size: 23px;
  }

  .techblog-page .techblog-post p {
    font-size: 15px;
    line-height: 1.9;
  }

  .techblog-page .techblog-post__meta {
    font-size: 12px;
  }

  .techblog-page .techblog-post__tags span {
    font-size: 12px;
  }

  .techblog-page .techblog-profile h2 {
    font-size: 23px;
  }

  .techblog-page .techblog-profile p:last-child,
  .techblog-page .techblog-instagram-panel__text {
    font-size: 14px;
  }

  .techblog-page .techblog-side-panel h2 {
    font-size: 14px;
  }

  .techblog-page .techblog-search__input {
    font-size: 14px;
  }

  .techblog-page .techblog-filter-list button {
    min-height: 40px;
    font-size: 13px;
  }

  .techblog-page .consulting-conversion__body > p:last-child {
    font-size: 15px;
  }

  .techblog-page .consulting-conversion > a {
    font-size: 14px;
  }

  .techblog-page #footer .data,
  .techblog-page #footer .fNav,
  .techblog-page #footer .site-footer-instagram a {
    font-size: 14px;
  }
}

/* Mobile hero: keep the approach panel inside its own dark surface. */
@media only screen and (max-width: 768px) {
  .techblog-page .techblog-masthead {
    overflow: hidden;
    background: var(--consulting-paper);
  }

  .techblog-page .techblog-masthead::before,
  .techblog-page .techblog-masthead::after {
    display: none;
  }

  .techblog-page .consulting-hero {
    gap: 42px;
    padding-bottom: 0;
  }

  .techblog-page .consulting-hero__copy {
    width: 100%;
  }

  .techblog-page .consulting-hero__framework {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    padding: 46px 20px 54px;
    background: var(--consulting-navy);
  }

  .techblog-page .consulting-hero__framework li {
    color: #fff;
  }

  .techblog-page .consulting-hero__framework strong {
    color: #fff;
  }

  .techblog-page .consulting-hero__framework small {
    color: rgba(255, 255, 255, .78);
  }

  .techblog-page .consulting-hero__framework > p {
    color: rgba(255, 255, 255, .68);
  }
}

@media only screen and (max-width: 420px) {
  .techblog-page .consulting-hero__framework {
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Final cascade: editor note and no-article state. */
.techblog-page .techblog-sidebar .techblog-profile {
  border-top: 4px solid #d4865f !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  background: #173b57 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(22, 33, 43, .16) !important;
}

.techblog-page .techblog-sidebar .techblog-profile .techblog-eyebrow {
  color: #f2a178 !important;
}

.techblog-page .techblog-sidebar .techblog-profile h2 {
  color: #ffffff !important;
}

.techblog-page .techblog-sidebar .techblog-profile p:last-child {
  color: #e6edf2 !important;
}

.techblog-page .techblog-post-list > .techblog-empty {
  display: grid;
  min-height: 220px;
  margin: 0;
  padding: 36px 28px;
  place-items: center;
  border-top: 2px solid var(--consulting-ink);
  border-bottom: 1px solid var(--consulting-line);
  background: rgba(255, 253, 249, .72);
  color: #4b5963;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .techblog-page .techblog-post-list > .techblog-empty {
    min-height: 180px;
    padding: 30px 20px;
  }
}
