 #mlb-article {
    --article-text: #222;
    --article-muted: #6f6f6f;
    --article-line: #e7e7e7;
    --article-soft: #f6f6f6;
    --article-max: 1200px;
    color: var(--article-text);
    background: #fff;
  }

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

  #mlb-article .mlb-article-shell {
    width: min(var(--article-max), calc(100% - 48px));
    margin: 0 auto;
  }

  #mlb-article .mlb-article-breadcrumb {
    padding: 17px 0;
    border-bottom: 1px solid #ededed;
    background: #fff;
  }

  #mlb-article .mlb-article-breadcrumb ol {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
    list-style: none;
  }

  #mlb-article .mlb-article-breadcrumb li {
    display: flex;
    min-width: 0;
    align-items: center;
  }

  #mlb-article .mlb-article-breadcrumb li + li::before {
    margin: 0 9px;
    color: #aaa;
    content: '/';
  }

  #mlb-article .mlb-article-breadcrumb a {
    color: #555;
    text-decoration: none;
  }

  #mlb-article .mlb-article-breadcrumb a:hover { color: #111; text-decoration: underline; }

  #mlb-article .mlb-article-breadcrumb [aria-current='page'] span {
    display: block;
    overflow: hidden;
    color: #888;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #mlb-article .mlb-article-hero {
    padding: 46px 0 43px;
    border-bottom: 1px solid #f2f2f2;
    text-align: center;
  }

  #mlb-article .mlb-article-category {
    margin-bottom: 28px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  #mlb-article .mlb-article-title {
    max-width: 1140px;
    margin: 0 auto;
    color: #222;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  #mlb-article .mlb-article-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 27px;
    color: var(--article-muted);
    font-size: 13px;
  }

  #mlb-article .mlb-article-main { padding: 32px 0 70px; }

  #mlb-article .mlb-article-grid {
    width: min(1116px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 797px) minmax(220px, 239px);
    gap: 40px;
    align-items: start;
  }

  #mlb-article .mlb-article-toc {
    margin: 0 0 42px;
    border: 1px solid #ececec;
    background: var(--article-soft);
  }

  #mlb-article .mlb-article-toc__toggle {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border: 0;
    color: #222;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  #mlb-article .mlb-article-toc__state {
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
  }

  #mlb-article .mlb-article-toc__list {
    margin: 0;
    padding: 5px 22px 20px 38px;
  }

  #mlb-article .mlb-article-toc__list ol {
    margin: 8px 0 0;
    padding-left: 22px;
  }

  #mlb-article .mlb-article-toc__list li { margin: 8px 0; }
  #mlb-article .mlb-article-toc__list a { color: #333; text-decoration: none; }
  #mlb-article .mlb-article-toc__list a:hover { text-decoration: underline; }

  #mlb-article .mlb-article-content {
    color: #303030;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  #mlb-article .mlb-article-content > :first-child { margin-top: 0 !important; }
  #mlb-article .mlb-article-content > :last-child { margin-bottom: 0 !important; }

  #mlb-article .mlb-article-content p,
  #mlb-article .mlb-article-content ul,
  #mlb-article .mlb-article-content ol,
  #mlb-article .mlb-article-content blockquote { margin: 0 0 18px; }

  #mlb-article .mlb-article-content h2 {
    margin: 42px 0 17px;
    color: #222;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.012em;
    scroll-margin-top: 118px;
  }

  #mlb-article .mlb-article-content h3 {
    margin: 30px 0 13px;
    color: #222;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    scroll-margin-top: 118px;
  }

  #mlb-article .mlb-article-content h4 {
    margin: 24px 0 10px;
    font-size: 18px;
    line-height: 1.45;
  }

  #mlb-article .mlb-article-content ul,
  #mlb-article .mlb-article-content ol { padding-left: 24px; }
  #mlb-article .mlb-article-content li { margin-bottom: 7px; }
  #mlb-article .mlb-article-content a { color: #175f92; text-decoration: underline; text-underline-offset: 2px; }

  #mlb-article .mlb-article-content img,
  #mlb-article .mlb-article-content video,
  #mlb-article .mlb-article-content iframe {
    display: block;
    max-width: 100% !important;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  #mlb-article .mlb-article-content p:has(> img:only-child),
  #mlb-article .mlb-article-content div:has(> img:only-child) { margin: 26px 0 30px; }

  #mlb-article .mlb-article-content blockquote {
    padding: 18px 22px;
    border-left: 3px solid #222;
    background: var(--article-soft);
  }

  #mlb-article .mlb-article-sidebar__box--sticky {
    position: sticky;
    top: 112px;
  }

  #mlb-article .mlb-sidebar-toc {
    max-height: calc(100vh - 135px);
    margin-bottom: 34px;
    overflow: auto;
    padding: 19px 17px 18px;
    border-radius: 10px;
    background: #f6f6f6;
    scrollbar-width: thin;
  }

  #mlb-article .mlb-sidebar-toc .mlb-article-sidebar__title { margin-bottom: 13px; }

  #mlb-article .mlb-sidebar-toc__list {
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 13px;
    line-height: 1.42;
  }

  #mlb-article .mlb-sidebar-toc__list ol {
    margin: 6px 0 8px;
    padding-left: 18px;
  }

  #mlb-article .mlb-sidebar-toc__list li { margin: 7px 0; }
  #mlb-article .mlb-sidebar-toc__list a { color: #333; text-decoration: none; }
  #mlb-article .mlb-sidebar-toc__list a:hover { text-decoration: underline; }

  #mlb-article .mlb-article-sidebar__title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  #mlb-article .mlb-article-sidebar__title::after {
    width: 18px;
    height: 1px;
    background: #aaa;
    content: '';
  }

  #mlb-article .mlb-article-sidebar__title--recent { margin-top: 34px; }

  #mlb-article .mlb-article-sidebar__categories {
    display: grid;
    gap: 10px;
  }

  #mlb-article .mlb-article-sidebar__category {
    position: relative;
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    background-color: #252525;
    background-position: center;
    background-size: cover;
    text-align: center;
    text-decoration: none;
  }

  #mlb-article .mlb-article-sidebar__category::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    content: '';
    transition: background .25s ease;
  }

  #mlb-article .mlb-article-sidebar__category:hover::before { background: rgba(0, 0, 0, .55); }
  #mlb-article .mlb-article-sidebar__category.is-active { outline: 2px solid #111; outline-offset: 2px; }

  #mlb-article .mlb-article-sidebar__category span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .035em;
    text-transform: uppercase;
  }

  #mlb-article .mlb-article-sidebar__post {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--article-line);
    color: #222;
    text-decoration: none;
  }

  #mlb-article .mlb-article-sidebar__posts {
    display: flex;
    flex-direction: column;
  }

  #mlb-article .mlb-article-sidebar__thumb {
    display: block;
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background: #eee;
  }

  #mlb-article .mlb-article-sidebar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
  }

  #mlb-article .mlb-article-sidebar__post:hover img { transform: scale(1.04); }

  #mlb-article .mlb-article-sidebar__placeholder,
  #mlb-article .mlb-related-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 700;
    letter-spacing: .08em;
  }

  #mlb-article .mlb-article-sidebar__post-info { min-width: 0; }
  #mlb-article .mlb-article-sidebar__post-info strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  #mlb-article .mlb-article-sidebar__post-info time {
    display: block;
    margin-top: 7px;
    color: var(--article-muted);
    font-size: 12px;
  }

  #mlb-article .mlb-article-related {
    padding: 58px 0 72px;
    border-top: 1px solid var(--article-line);
    background: #fafafa;
  }

  #mlb-article .mlb-article-related__title {
    margin: 0 0 28px;
    font-size: 27px;
    text-align: center;
  }

  #mlb-article .mlb-article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  #mlb-article .mlb-related-card { background: #fff; }
  #mlb-article .mlb-related-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
  }

  #mlb-article .mlb-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
  }

  #mlb-article .mlb-related-card:hover .mlb-related-card__image img { transform: scale(1.035); }
  #mlb-article .mlb-related-card__body { padding: 17px 18px 21px; }

  #mlb-article .mlb-related-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--article-muted);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  #mlb-article .mlb-related-card h3 {
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.42;
  }

  #mlb-article .mlb-related-card h3 a { color: #222; text-decoration: none; }

  @media (max-width: 991px) {
    #mlb-article .mlb-article-shell { width: min(100% - 36px, 797px); }
    #mlb-article .mlb-article-grid { width: min(100% - 36px, 797px); }
    #mlb-article .mlb-article-hero { padding: 36px 0 34px; }
    #mlb-article .mlb-article-category { margin-bottom: 20px; }
    #mlb-article .mlb-article-grid { grid-template-columns: minmax(0, 1fr); gap: 50px; }
    #mlb-article .mlb-article-sidebar__box--sticky { position: static; }
    #mlb-article .mlb-article-sidebar__posts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  }

  @media (max-width: 767px) {
    #mlb-article .mlb-article-shell { width: calc(100% - 30px); }
    #mlb-article .mlb-article-grid { width: calc(100% - 30px); }
    #mlb-article .mlb-article-hero { padding: 28px 0 27px; }
    #mlb-article .mlb-article-breadcrumb { padding: 12px 0; }
    #mlb-article .mlb-article-breadcrumb ol { font-size: 12px; }
    #mlb-article .mlb-article-category { margin-bottom: 15px; font-size: 11px; }
    #mlb-article .mlb-article-title { font-size: 28px; line-height: 1.24; }
    #mlb-article .mlb-article-meta { margin-top: 18px; font-size: 12px; }
    #mlb-article .mlb-article-main { padding: 24px 0 52px; }
    #mlb-article .mlb-article-toc { margin-bottom: 30px; }
    #mlb-article .mlb-article-content { font-size: 16px; line-height: 1.62; }
    #mlb-article .mlb-article-content h2 { margin-top: 34px; font-size: 24px; }
    #mlb-article .mlb-article-content h3 { font-size: 20px; }
    #mlb-article .mlb-article-sidebar__posts { grid-template-columns: 1fr; }
    #mlb-article .mlb-article-related { padding: 44px 0 54px; }
    #mlb-article .mlb-article-related__grid { grid-template-columns: 1fr; gap: 20px; }
  }

