.tbt-blog-shell {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.tbt-blog-shell--narrow {
    width: min(900px, calc(100% - 48px));
}

.tbt-blog-eyebrow {
    margin: 0 0 14px;
  /* color: var(--tbt-muted); */
  color: var(--tbt-primary);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-family: var(--tbt-serif);
}

.tbt-blog-hero,
.tbt-blog-detail__hero {
    padding: 72px 0 40px;
    background: linear-gradient(180deg, #f8f4ee 0%, #fff 100%);
}

.tbt-blog-hero h1,
.tbt-blog-detail__hero h1 {
    margin: 0;
    color: #11161a;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: .95;
    font-weight: 400;
}

.tbt-blog-hero p:not(.tbt-blog-eyebrow),
.tbt-blog-detail__subtitle {
    max-width: 760px;
    margin: 18px 0 0;
    color: #5f6f7c;
    font-size: 1.12rem;
    line-height: 1.7;
}

.tbt-blog-section,
.tbt-blog-detail__content {
    padding: 28px 0 88px;
}

.tbt-blog-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: 34px 0 22px;
}

.tbt-blog-section__head h2 {
    margin: 6px 0 0;
    color: #11161a;
    font-family: var(--tbt-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.08;
}

.tbt-blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.tbt-blog-categories a {
    padding: 12px 18px;
    border: 1px solid #d7ddd9;
    border-radius: 999px;
    color: #25323d;
    text-decoration: none;
    transition: .2s ease;
}

.tbt-blog-categories a:hover,
.tbt-blog-categories a.is-active {
    border-color: #11161a;
    background: #11161a;
    color: #fff;
}

.tbt-blog-featured,
.tbt-blog-grid {
    display: grid;
    gap: 24px;
}

.tbt-blog-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 34px;
}

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

.tbt-blog-card {
    overflow: hidden;
    border: 1px solid #e5e1db;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
}

.tbt-blog-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tbt-blog-index-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
    gap: 36px;
    align-items: stretch;
}

.tbt-blog-index-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 10px 0;
}

.tbt-blog-index-hero__title {
    font-family: var(--tbt-serif);
}

.tbt-blog-index-hero__intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: #5f6f7c;
    font-size: 1.12rem;
    line-height: 1.7;
    font-family: var(--tbt-serif);
}

.tbt-blog-index-hero__intro > *:first-child {
    margin-top: 0;
}

.tbt-blog-index-hero__intro > *:last-child {
    margin-bottom: 0;
}

.tbt-blog-index-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tbt-blog-index-hero__chips a {
    padding: 10px 16px;
    border: 1px solid #d7ddd9;
    border-radius: 999px;
    color: #25323d;
    text-decoration: none;
    background: rgba(255,255,255,.6);
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.tbt-blog-index-hero__chips a:hover {
    border-color: #11161a;
    background: #11161a;
    color: #fff;
}

.tbt-blog-index-hero-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tbt-blog-index-hero-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: #0f0f10;
}

.tbt-blog-index-hero-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbt-blog-index-hero-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .05) 18%, rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, .72) 100%);
}

.tbt-blog-index-hero-card__title {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    font-family: var(--tbt-serif);
    font-size: clamp(1.35rem, 1.95vw, 1.9rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .5);
}

.tbt-blog-index-hero__fallback {
    overflow: hidden;
    border: 1px solid #e5e1db;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 20px 55px -48px rgba(17, 22, 26, .25);
}

.tbt-blog-index-hero__fallback img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.tbt-blog-index-hero__fallback-body {
    padding: 24px;
}

.tbt-blog-index-hero__fallback-body h2 {
    margin: 0;
    color: #11161a;
    font-family: var(--tbt-serif);
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.08;
}

.tbt-blog-index-hero__fallback-body p:not(.tbt-blog-eyebrow) {
    margin-top: 12px;
}

.tbt-blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.tbt-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: #738392;
    font-size: .88rem;
}

.tbt-blog-card h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
    line-height: 1.08;
    font-weight: 400;
}

.tbt-blog-card h3 a {
    color: #11161a;
    text-decoration: none;
    font-family: var(--tbt-serif);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tbt-blog-card p {
    margin: 0;
    color: #5f6f7c;
    line-height: 1.75;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tbt-blog-card__subtitle {
    margin-bottom: 10px !important;
    color: #25323d !important;
    font-family: var(--tbt-serif) !important;
    font-size: 15px !important;
    -webkit-line-clamp: 2;
    min-height: calc(1.75em * 2);
}

.tbt-blog-card__body > p:not(.tbt-blog-card__subtitle) {
    -webkit-line-clamp: 4;
    min-height: calc(1.75em * 4);
}

.tbt-blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    margin-top: auto;
    max-height: 76px;
    overflow: hidden;
}

.tbt-blog-card__tags a,
.tbt-blog-card__tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5f2ec;
    color: var(--tbt-primary);
    font-size: .82rem;
    text-decoration: none;
}

.tbt-blog-empty {
    padding: 40px;
    border: 1px dashed #d7ddd9;
    border-radius: 28px;
    text-align: center;
}

.tbt-blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.tbt-blog-pagination a,
.tbt-blog-pagination span {
    min-width: 44px;
    padding: 10px 14px;
    border: 1px solid #d7ddd9;
    border-radius: 999px;
    color: #25323d;
    text-align: center;
    text-decoration: none;
}

.tbt-blog-pagination .is-active {
    background: #11161a;
    border-color: #11161a;
    color: #fff;
}

.tbt-blog-pagination .is-disabled {
    opacity: .45;
}

.tbt-blog-category-cover {
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: 32px;
}

.tbt-blog-category-cover img,
.tbt-blog-detail__image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.tbt-blog-detail__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #718397;
    font-size: .92rem;
}

.tbt-blog-detail__breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.tbt-blog-detail__hero {
    padding: 30px 0 42px;
    background: transparent;
}

.tbt-blog-detail__hero-grid {
    margin-top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 56px;
    align-items: start;
}

.tbt-blog-detail__hero-copy {
    padding: 8px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.tbt-blog-detail__hero-media {
    overflow: hidden;
    border-radius: 24px;
    background: #f3efe8;
    box-shadow: 0 18px 50px -40px rgba(17, 17, 17, 0.18);
    height: 420px;
}

.tbt-blog-detail__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbt-blog-detail__hero-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tbt-blog-detail__hero-body h1 {
    margin: 0;
    color: #2a1319;
    font-size: 50px;
    line-height: .92;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-family: var(--tbt-serif);
}

.tbt-blog-detail__summary {
    margin: 8px 0 0;
    color: #5f6f7c;
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 58ch;
}

.tbt-blog-detail__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.tbt-blog-detail__author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    position: relative;
    background: #fff;
    border: 1px solid #e3e0d9;
    box-shadow: 0 8px 18px -10px rgba(17, 22, 26, .18);
}

.tbt-blog-detail__author-avatar-image {
    width: 62%;
    height: 62%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.tbt-blog-detail__author-avatar-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.tbt-blog-detail__author-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tbt-blog-detail__author-copy strong {
    color: #11161a;
    font-size: 1.05rem;
    font-weight: 500;
}

.tbt-blog-detail__author-copy span {
    color: #6b7280;
    font-size: .95rem;
}

.tbt-blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    color: #738392;
}

.tbt-blog-detail__meta-separator {
    color: #b2b7be;
}

.tbt-blog-detail__content {
    padding: 32px 0 96px;
}

.tbt-blog-detail__layout {
    display: grid;
    grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.tbt-blog-detail__sidebar {
    position: sticky;
    top: 128px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tbt-blog-detail__article {
    min-width: 0;
}

.tbt-blog-detail__panel {
    padding: 10px;
    border: 1px solid #ece5db;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 46px -38px rgba(17, 17, 17, 0.2);
}

.tbt-blog-detail__panel--toc {
    padding-bottom: 18px;
}

.tbt-blog-detail__toc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tbt-blog-detail__toc-item {
    color: #25323d;
    text-decoration: none;
    line-height: 1.45;
    font-size: .98rem;
    padding-left: 0;
    transition: color .18s ease, transform .18s ease;
}

.tbt-blog-detail__toc-item:hover {
    color: var(--tbt-primary);
    transform: translateX(2px);
}

.tbt-blog-detail__toc-item--3 {
    padding-left: 10px;
    font-size: .95rem;
}

.tbt-blog-detail__toc-item--4 {
    padding-left: 20px;
    font-size: .92rem;
    color: #5f6f7c;
}

.tbt-blog-detail__panel--cta {
    overflow: hidden;
    padding: 0;
}

.tbt-blog-detail__cta-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tbt-blog-detail__cta-body {
    padding: 22px 24px 24px;
}

.tbt-blog-detail__cta-body h3 {
    margin: 0 0 12px;
    color: #11161a;
    font-family: var(--tbt-serif);
    font-size: 1.7rem;
    line-height: 1.08;
    font-weight: 400;
}

.tbt-blog-detail__cta-body p {
    margin: 0 0 18px;
    color: #5f6f7c;
    font-size: .98rem;
    line-height: 1.7;
}

.tbt-blog-detail__cta-body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--tbt-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform .18s ease, background .18s ease;
}

.tbt-blog-detail__cta-body a:hover {
    background: #0f5f90;
    transform: translateY(-1px);
}

.tbt-blog-detail__related {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tbt-blog-detail__related-item h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 400;
}

.tbt-blog-detail__related-item h3 a {
    color: #11161a;
    text-decoration: none;
    font-family: var(--tbt-serif);
}

.tbt-blog-detail__related-item p {
    margin: 0;
    color: #5f6f7c;
    font-size: .94rem;
    line-height: 1.7;
}

.tbt-blog-detail__excerpt {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--tbt-primary);
    background: #f8f4ee;
    border-radius: 0 18px 18px 0;
    color: #25323d;
    line-height: 1.8;
    font-size: 1rem;
}

.tbt-blog-prose {
    color: #25323d;
    font-size: 1.03rem;
    line-height: 1.95;
}

.tbt-blog-prose h2,
.tbt-blog-prose h3,
.tbt-blog-prose h4 {
    margin: 2.2em 0 0.8em;
    color: #11161a;
    font-family: var(--tbt-serif);
    font-weight: 500;
    line-height: 1.15;
    scroll-margin-top: 148px;
}

.tbt-blog-prose h2 { font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.tbt-blog-prose h3 { font-size: clamp(1.35rem, 1.9vw, 1.75rem); }
.tbt-blog-prose h4 { font-size: 1.18rem; }

.tbt-blog-prose p,
.tbt-blog-prose ul,
.tbt-blog-prose ol,
.tbt-blog-prose blockquote,
.tbt-blog-prose figure {
    margin: 0 0 1.1em;
}

.tbt-blog-prose img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    margin: 1.8em 0;
}

.tbt-blog-detail__image {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 32px;
}

.tbt-blog-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
    gap: 40px;
}

.tbt-blog-detail__excerpt {
    margin-bottom: 26px;
    color: #25323d;
    font-size: 1.22rem;
    line-height: 1.8;
}

.tbt-blog-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: .96rem;
}

.tbt-blog-alert.is-success {
    background: #edf8ef;
    color: #1d6b33;
}

.tbt-blog-alert.is-error {
    background: #fff1f0;
    color: #9d2f2a;
}

.tbt-blog-prose {
    color: #2f3e49;
    line-height: 1.9;
}

.tbt-blog-prose h2,
.tbt-blog-prose h3,
.tbt-blog-prose h4 {
    margin-top: 1.8em;
    color: #11161a;
}

.tbt-blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.tbt-blog-detail__panel {
    padding: 24px;
    border: 1px solid #e5e1db;
    border-radius: 28px;
    background: #fff;
}

.tbt-blog-detail__panel + .tbt-blog-detail__panel {
    margin-top: 20px;
}

.tbt-blog-detail__related article + article {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ece8e1;
}

.tbt-blog-detail__related h3,
.tbt-blog-detail__related p {
    margin: 0;
}

.tbt-blog-detail__related h3 {
    font-size: 1.1rem;
}

.tbt-blog-detail__related h3 a {
    color: #11161a;
    text-decoration: none;
}

.tbt-blog-detail__related p {
    margin-top: 8px;
    color: #5f6f7c;
    line-height: 1.7;
}

.tbt-blog-related-section {
    margin-top: 54px;
    padding: 54px 0 12px;
    border-top: 1px solid #ece8e1;
}

.tbt-blog-related-section__head {
    margin-bottom: 28px;
}

.tbt-blog-related-section__head h2 {
    margin: 6px 0 0;
    color: #11161a;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.08;
    font-family: var(--tbt-serif);
}

.tbt-blog-related-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tbt-blog-related-card {
    overflow: hidden;
    border: 1px solid #e5e1db;
    background: #fff;
    box-shadow: 0 18px 50px -46px rgba(17, 22, 26, .22);
}

.tbt-blog-related-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3efe8;
}

.tbt-blog-related-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbt-blog-related-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.tbt-blog-related-card__body h3 {
    margin: 0;
    color: #11161a;
    font-family: var(--tbt-serif);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.18;
}

.tbt-blog-related-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.tbt-blog-related-card__body p {
    margin: 0;
    color: #5f6f7c;
    line-height: 1.75;
}

.tbt-blog-related-card__link {
    margin-top: auto;
    color: var(--tbt-primary);
    font-weight: 600;
    text-decoration: none;
    font-family: var(--tbt-serif);
}

.tbt-blog-comments {
    margin-top: 54px;
    padding-top: 54px;
    border-top: 1px solid #ece8e1;
}

.tbt-blog-comment-form {
    margin-top: 54px;
    padding-top: 54px;
    border-top: 1px solid #ece8e1;
}

.tbt-blog-comment-form h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
}

.tbt-blog-comment-form__form {
    display: grid;
    gap: 18px;
}

.tbt-blog-comment-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tbt-blog-comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #25323d;
    font-size: .92rem;
    font-weight: 600;
}

.tbt-blog-comment-form input,
.tbt-blog-comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7ddd9;
    border-radius: 18px;
    background: #fff;
    color: #11161a;
    font: inherit;
}

.tbt-blog-comment-form textarea {
    resize: vertical;
}

.tbt-blog-comment-form button {
    width: fit-content;
    padding: 14px 22px;
    border: 1px solid #11161a;
    border-radius: 999px;
    background: #11161a;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.tbt-blog-comment-form__error {
    margin: 8px 0 0;
    color: #9d2f2a;
    font-size: .88rem;
}

.tbt-blog-comments h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
}

.tbt-blog-comments__item {
    padding: 24px;
    border: 1px solid #e5e1db;
    border-radius: 28px;
    background: #fff;
}

.tbt-blog-comments__item + .tbt-blog-comments__item {
    margin-top: 18px;
}

.tbt-blog-comments__item.is-child {
    margin-top: 16px;
    margin-left: 36px;
    background: #fbf9f5;
}

.tbt-blog-comments__item h3,
.tbt-blog-comments__item h4 {
    margin: 0 0 8px;
}

.tbt-blog-comments__meta {
    margin: 0 0 12px;
    color: #738392;
    font-size: .88rem;
}

.tbt-blog-comments__body {
    color: #33424d;
    line-height: 1.8;
    white-space: pre-line;
}

@media (max-width: 1100px) {
    .tbt-blog-featured,
    .tbt-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tbt-blog-index-hero__grid {
        grid-template-columns: 1fr;
    }

    .tbt-blog-index-hero__copy h1 {
        max-width: none;
    }

    .tbt-blog-index-hero__grid {
        grid-template-columns: 1fr;
    }

    .tbt-blog-index-hero-card {
        max-width: 560px;
    }

    .tbt-blog-detail__layout {
        grid-template-columns: 1fr;
    }

    .tbt-blog-detail__sidebar {
        position: relative;
        top: 0;
        order: 2;
    }

    .tbt-blog-detail__hero-copy {
        padding: 0;
    }

    .tbt-blog-detail__hero-media img {
        height: 280px;
    }

    .tbt-blog-section__head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .tbt-blog-shell,
    .tbt-blog-shell--narrow {
        width: min(100% - 32px, 100%);
    }

    .tbt-blog-featured,
    .tbt-blog-grid {
        grid-template-columns: 1fr;
    }

    .tbt-blog-index-hero__chips {
        margin-top: 22px;
    }

    .tbt-blog-detail__hero {
        padding-top: 46px;
    }

    .tbt-blog-detail__hero-media img {
        height: 240px;
    }

    .tbt-blog-detail__layout {
        gap: 26px;
    }

    .tbt-blog-detail__panel {
        border-radius: 22px;
        padding: 20px;
    }

    .tbt-blog-detail__cta-body {
        padding: 18px 18px 20px;
    }

    .tbt-blog-comments__item.is-child {
        margin-left: 18px;
    }

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

    .tbt-blog-comment-form__grid {
        grid-template-columns: 1fr;
    }

    .tbt-blog-card {
        min-height: 0;
    }

    .tbt-blog-index-hero-card {
        max-width: none;
    }

    .tbt-blog-index-hero-card__media {
        aspect-ratio: 5 / 4;
    }

    .tbt-blog-index-hero__fallback img {
        aspect-ratio: 16 / 10;
    }

    .tbt-blog-related-section {
        margin-top: 42px;
        padding-top: 42px;
    }

    .tbt-blog-related-section__grid {
        grid-template-columns: 1fr;
    }
}
