/* Internal pages CSS: page hero and page-specific sections */

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(2rem, 4vw, 4rem);
}

.page-hero--tall {
    min-height: 60vh;
}

.page-hero .container {
    width: min(100%, var(--breakpoint-max));
}

.page-hero .hero-title {
    margin: 0;
    text-align: left;
    font-size: clamp(2.5rem, 4.2vw, 5rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.03em;
}

.page-hero .hero-subtitle {
    max-width: 52rem;
    margin: 1.5rem 0 0;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.5;
    color: var(--text-secondary);
}

.subtitle-max {
    max-width: 42rem;
    margin-inline: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    background: var(--color-bg-surface);
    box-shadow: var(--shadow-subtle);
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border-soft);
    text-align: left;
}

.compare-table th {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    background: var(--color-bg-surface-muted);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.tabs-ui {
    margin-top: 2rem;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    background: var(--color-bg-surface);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border-soft);
    background: var(--color-bg-surface-muted);
}

.tab-btn {
    appearance: none;
    min-height: 44px;
    border: 1px solid rgba(183, 191, 217, 0.3);
    background: rgba(183, 191, 217, 0.15);
    color: var(--text-primary);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font: inherit;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.tab-btn.active {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    border-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(50, 121, 249, 0.24);
}

.tab-content {
    padding: var(--space-4);
}

.stats-mini-grid {
    display: grid;
    gap: 1rem;
}

.mini-stat {
    padding: 1rem 1.125rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-surface-tint);
    border: 1px solid var(--color-border-soft);
    color: var(--text-primary);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.blog-img {
    overflow: hidden;
    border-radius: 16px;
}

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

.post-page {
    padding: 120px 0;
}

.content-styled {
    display: grid;
    gap: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.content-styled h2,
.content-styled h3,
.content-styled h4 {
    margin-top: 1rem;
    margin-bottom: 0;
}

.content-styled p,
.content-styled ul,
.content-styled ol {
    margin: 0;
}

.content-styled ul,
.content-styled ol {
    padding-left: 1.25rem;
}

.content-styled ul {
    list-style: disc;
}

.content-styled ol {
    list-style: decimal;
}

.content-styled a {
    color: var(--color-accent);
    text-decoration: underline;
}

.content-styled img {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 2rem) 0 2.5rem;
    }

    .page-hero .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }

    .compare-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tab-buttons {
        gap: 0.5rem;
    }
}

/* Blog Refresh */

.blog-list-shell,
.blog-post-shell {
    padding: calc(var(--header-height) + 3.75rem) 0 7rem;
}

.blog-list-shell .container,
.blog-post-shell .container {
    max-width: 1760px;
    padding-inline: clamp(1rem, 2.4vw, 2rem);
}

.blog-page-state {
    padding: 8rem 0;
    display: grid;
    place-items: center;
    gap: 1rem;
    text-align: center;
}

.blog-page-state p {
    margin: 0;
    max-width: 42rem;
    font-size: 1.05rem;
    color: #5f6368;
}

.blog-featured-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.blog-featured-story__copy {
    display: grid;
    gap: 1.4rem;
    align-content: center;
}

.blog-featured-story__eyebrow {
    margin: 0;
    font-size: 0.95rem;
    color: #3c4043;
}

.blog-featured-story__title,
.blog-post-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.065em;
    text-wrap: balance;
    color: #19171c;
}

.blog-featured-story__title {
    font-size: clamp(2.6rem, 5vw, 5rem);
    max-width: 12ch;
}

.blog-meta-row,
.blog-post-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 1rem;
    font-size: 0.92rem;
    color: #5f6368;
}

.blog-featured-story__excerpt,
.blog-feed-item__excerpt,
.blog-related-card p {
    margin: 0;
    color: #5f6368;
    font-size: 1rem;
    line-height: 1.65;
}

.blog-soft-button {
    justify-self: start;
    border-color: rgba(25, 23, 28, 0.1);
    box-shadow: none;
}

.blog-featured-story__media {
    display: block;
    min-height: min(52vw, 40rem);
    border-radius: 36px;
    overflow: hidden;
}

.blog-featured-story__media > img,
.blog-featured-story__media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-feed-toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 4.25rem;
    margin-bottom: 1.75rem;
}

.blog-feed-toolbar__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-filter-tab {
    position: relative;
    border: none;
    background: transparent;
    color: #5f6368;
    padding: 0.35rem 1rem 0.85rem;
    font: inherit;
    font-size: 0.98rem;
    cursor: pointer;
}

.blog-filter-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.2s ease;
}

.blog-filter-tab.is-active {
    color: #19171c;
}

.blog-filter-tab.is-active::after {
    background: var(--blue-primary);
}

.blog-feed {
    border-top: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-feed-footer {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding-top: 2.5rem;
}

.blog-load-more-note {
    margin: 0;
    color: #5f6368;
    text-align: center;
}

.blog-page-state--compact {
    padding: 3rem 0;
}

.blog-feed-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(25, 23, 28, 0.08);
    transition: transform 0.25s ease;
}

.blog-feed-item:hover {
    transform: translateX(6px);
}

.blog-feed-item__content {
    display: grid;
    gap: 0.95rem;
    align-content: start;
}

.blog-feed-item__title,
.blog-related-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #19171c;
}

.blog-feed-item__title {
    font-size: clamp(1.8rem, 2.4vw, 3rem);
    max-width: 14ch;
}

.blog-feed-item__media,
.blog-related-card__media {
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #050608;
}

.blog-feed-item__media > img,
.blog-feed-item__media > .blog-fallback-art,
.blog-related-card__media > img,
.blog-related-card__media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 2.5rem;
    font-size: 0.94rem;
    color: #5f6368;
}

.blog-back-link::before {
    content: '\2039';
    font-size: 1.2em;
    line-height: 1;
}

.blog-post-header {
    max-width: 58rem;
    margin: 0 auto 3.5rem;
    display: grid;
    gap: 1.15rem;
    text-align: center;
}

.blog-post-meta-row {
    justify-content: center;
}

.blog-post-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(25, 23, 28, 0.1);
    border-radius: 999px;
    color: #19171c;
    background: rgba(255, 255, 255, 0.85);
}

.blog-post-title {
    font-size: clamp(2.7rem, 5vw, 5.6rem);
}

.blog-post-author {
    margin: 0;
    color: #5f6368;
    font-size: 1rem;
}

.blog-post-hero-media {
    overflow: hidden;
    border-radius: 36px;
}

.blog-post-hero-media > img,
.blog-post-hero-media > .blog-fallback-art {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-post-prose {
    width: min(100%, 50rem);
    margin: 4.5rem auto 0;
    display: grid;
    gap: 1.35rem;
    color: #2d2c31;
}

.blog-post-prose p,
.blog-post-prose ul,
.blog-post-prose ol,
.blog-post-prose blockquote,
.blog-post-prose figure,
.blog-post-prose pre {
    margin: 0;
}

.blog-post-prose p,
.blog-post-prose li {
    font-size: clamp(1rem, 1.08vw, 1.14rem);
    line-height: 1.72;
    color: #2d2c31;
}

.blog-post-prose h2,
.blog-post-prose h3,
.blog-post-prose h4 {
    margin: 1.15rem 0 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #19171c;
}

.blog-post-prose h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.blog-post-prose h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.blog-post-prose ul,
.blog-post-prose ol {
    padding-left: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.blog-post-prose ul {
    list-style: disc;
}

.blog-post-prose ol {
    list-style: decimal;
}

.blog-post-prose a {
    color: var(--blue-primary);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.blog-post-prose blockquote {
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--blue-primary);
    background: #f7f9fc;
    border-radius: 18px;
}

.blog-post-prose img,
.blog-post-prose video,
.blog-post-prose iframe,
.blog-post-prose .section-image,
.blog-post-prose .video-thumbnail-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.blog-post-prose pre {
    overflow-x: auto;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    background: #0b0d12;
    color: #f5f7fa;
}

.blog-post-prose code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.95em;
}

.blog-post-cta {
    width: min(100%, 50rem);
    margin: 2.5rem auto 0;
}

.blog-related-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-related-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.blog-related-section__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.blog-related-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: 28px;
    background: #fff;
}

.blog-related-card__body {
    display: grid;
    gap: 0.85rem;
}

@media (max-width: 1200px) {
    .blog-featured-story {
        grid-template-columns: 1fr;
    }

    .blog-featured-story__title {
        max-width: 15ch;
    }

    .blog-feed-item {
        grid-template-columns: minmax(0, 1fr) 120px;
    }
}

@media (max-width: 1024px) {
    .blog-list-shell,
    .blog-post-shell {
        padding: calc(var(--header-height) + 2.5rem) 0 5rem;
    }

    .blog-feed-item__title {
        max-width: 100%;
        font-size: clamp(1.5rem, 4vw, 2.4rem);
    }

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

@media (max-width: 767px) {
    .blog-list-shell .container,
    .blog-post-shell .container {
        padding-inline: 1rem;
    }

    .blog-feed-toolbar {
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .blog-feed-item {
        grid-template-columns: 1fr;
        padding: 1.4rem 0 1.75rem;
    }

    .blog-feed-item__media {
        width: min(100%, 12rem);
        justify-self: end;
    }

    .blog-post-header {
        margin-bottom: 2rem;
    }

    .blog-post-prose {
        margin-top: 2.5rem;
        gap: 1rem;
    }

    .blog-related-section__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.9rem;
    }

    .blog-related-section__header h2 {
        min-width: 0;
        line-height: 1.05;
    }

    .blog-related-section__header .blog-soft-button {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 520px) {
    .blog-featured-story__media {
        min-height: 18rem;
    }

    .blog-feed-item__media {
        width: 8.5rem;
    }

    .blog-featured-story__excerpt,
    .blog-feed-item__excerpt,
    .blog-post-author,
    .blog-page-state p {
        font-size: 0.98rem;
    }

    .blog-filter-tab {
        padding-inline: 0.75rem;
    }
}
.blog-simple-loader {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top-color: var(--blue-primary);
    border-radius: 50%;
    animation: blog-spin 0.6s linear infinite;
    margin: 2rem auto;
}

@keyframes blog-spin {
    to { transform: rotate(360deg); }
}

/* Blog Refresh */

.blog-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-view,
.blog-post-view {
    -webkit-text-size-adjust: 100%;
}

.blog-list-shell,
.blog-post-shell {
    padding: calc(var(--header-height) + clamp(2.1rem, 3.5vw, 4.25rem)) 0 clamp(4rem, 7vw, 7rem);
}

.blog-list-shell .container,
.blog-post-shell .container {
    max-width: 1760px;
    padding-inline: clamp(0.875rem, 3vw, 4.25rem);
}

.blog-index-layout {
    display: grid;
    gap: clamp(2.6rem, 5vw, 5.5rem);
}

.blog-featured-stage,
.blog-feed-stage {
    padding: 0;
}

.blog-featured-story {
    display: grid;
    grid-template-columns: minmax(17rem, 0.9fr) minmax(30rem, 1.1fr);
    gap: clamp(2rem, 5.5vw, 6.25rem);
    align-items: center;
}

.blog-featured-story__copy {
    display: grid;
    gap: clamp(0.9rem, 1.45vw, 1.35rem);
    max-width: 34rem;
}

.blog-featured-story__eyebrow {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #5f6368;
    text-transform: none;
}

.blog-featured-story__title,
.blog-post-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.058em;
    color: #19171c;
    text-wrap: balance;
}

.blog-featured-story__title {
    font-size: clamp(2.1rem, 3.35vw, 4.15rem);
    max-width: 13ch;
}

.blog-meta-row,
.blog-post-meta-row,
.blog-post-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.95rem;
    color: #5f6368;
    font-size: clamp(0.72rem, 0.82vw, 0.92rem);
    line-height: 1.4;
}

.blog-meta-row time,
.blog-post-meta-row time {
    white-space: nowrap;
}

.blog-soft-button {
    justify-self: start;
    min-height: 2.1rem;
    padding: 0.5rem 1.08rem;
    border: 1px solid rgba(25, 23, 28, 0.1);
    background: #f7f8fb;
    box-shadow: none;
    font-size: clamp(0.78rem, 0.82vw, 0.9rem);
    line-height: 1.15;
}

.blog-soft-button:hover {
    background: #eff2f7;
    border-color: rgba(25, 23, 28, 0.14);
}

.blog-featured-story__media {
    display: block;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: clamp(0.75rem, 1.25vw, 1.35rem);
    overflow: hidden;
    background: #050608;
    box-shadow: 0 18px 60px rgba(8, 12, 20, 0.06);
}

.blog-featured-story__media > img,
.blog-featured-story__media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-feed-stage {
    display: grid;
    gap: 0;
}

.blog-feed-toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0 0 1.25rem;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-feed-toolbar__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.blog-filter-tab {
    position: relative;
    border: none;
    background: transparent;
    color: #5f6368;
    padding: 0.35rem 0.25rem 1rem;
    font: inherit;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
    transition: color 0.2s ease;
}

.blog-filter-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.2s ease;
}

.blog-filter-tab:hover,
.blog-filter-tab.is-active {
    color: #19171c;
}

.blog-filter-tab.is-active::after {
    background: var(--blue-primary);
}

.blog-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 3.4vw, 3.2rem);
    row-gap: 0;
}

.blog-feed-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(6.75rem, 9vw, 8.75rem);
    gap: 0.9rem clamp(1rem, 2vw, 1.5rem);
    align-items: start;
    padding: clamp(1.55rem, 2.4vw, 2.15rem) 0;
    border-bottom: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-feed-card__content {
    display: grid;
    gap: 0.82rem;
    align-content: start;
    grid-column: 1;
}

.blog-feed-card__title,
.blog-related-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #19171c;
}

.blog-feed-card__title {
    font-size: clamp(1.2rem, 1.65vw, 1.65rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    max-width: 18ch;
}

.blog-feed-card__title a,
.blog-related-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-feed-card__media,
.blog-related-card__media {
    display: block;
    aspect-ratio: 1;
    border-radius: clamp(0.7rem, 1.1vw, 1rem);
    overflow: hidden;
    background: #050608;
}

.blog-feed-card__media {
    width: 100%;
    grid-column: 2;
    grid-row: 1 / span 3;
}

.blog-feed-card__media > img,
.blog-feed-card__media > .blog-fallback-art,
.blog-related-card__media > img,
.blog-related-card__media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-feed-card__cta,
.blog-related-card__cta {
    justify-self: start;
}

.blog-feed-card:hover .blog-feed-card__title a,
.blog-related-card:hover h3 a {
    color: var(--blue-primary);
}

.blog-feed-card:hover .blog-feed-card__media > img,
.blog-feed-card:hover .blog-feed-card__media > .blog-fallback-art,
.blog-related-card:hover .blog-related-card__media > img,
.blog-related-card:hover .blog-related-card__media > .blog-fallback-art {
    transform: scale(1.03);
}

.blog-feed-footer {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding-top: 2.5rem;
}

.blog-load-more-note {
    margin: 0;
    color: #5f6368;
    text-align: center;
}

.blog-post-article {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.blog-breadcrumbs {
    width: min(100%, 104rem);
    max-width: min(100%, 104rem);
    margin: 0 auto clamp(1.35rem, 2.1vw, 2.35rem);
}

.blog-breadcrumbs ol {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 2.65rem;
    gap: 0;
    list-style: none;
    padding: 0.28rem;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    color: #4f535c;
    font-size: clamp(0.78rem, 0.7vw, 0.9rem);
    line-height: 1.2;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.9)),
        #fff;
    box-shadow: 0 14px 42px rgba(10, 14, 24, 0.06);
}

.blog-breadcrumbs ol::-webkit-scrollbar {
    display: none;
}

.blog-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
    color: inherit;
}

.blog-breadcrumbs li:not(:last-child)::after {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    margin-inline: 0.18rem 0.08rem;
    border-top: 1px solid rgba(95, 99, 104, 0.58);
    border-right: 1px solid rgba(95, 99, 104, 0.58);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.blog-breadcrumbs a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.74rem;
    border-radius: 999px;
    color: #3f444d;
    text-decoration: none;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.blog-breadcrumbs li:first-child a::before {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    margin-right: 0.48rem;
    border-radius: 999px;
    background: #1a73e8;
    box-shadow: 0 0 0 0.22rem rgba(26, 115, 232, 0.11);
}

.blog-breadcrumbs a:hover,
.blog-breadcrumbs a:focus-visible {
    color: #19171c;
    background: rgba(25, 23, 28, 0.045);
    box-shadow: inset 0 0 0 1px rgba(25, 23, 28, 0.05);
    outline: none;
}

.blog-breadcrumbs li[aria-current="page"] {
    max-width: min(52vw, 46rem);
    min-height: 2rem;
    padding: 0.38rem 0.82rem;
    overflow: hidden;
    border-radius: 999px;
    color: #19171c;
    background: rgba(25, 23, 28, 0.045);
    text-overflow: ellipsis;
    font-weight: 500;
}

.blog-post-header {
    width: min(100%, 104rem);
    max-width: min(100%, 104rem);
    margin: 0 auto clamp(1.75rem, 3.4vw, 3.25rem);
    display: grid;
    gap: clamp(0.75rem, 1.1vw, 1.1rem);
    text-align: center;
}

.blog-post-meta-row {
    justify-content: center;
}

.blog-post-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(25, 23, 28, 0.1);
    border-radius: 999px;
    color: #19171c;
    background: rgba(255, 255, 255, 0.88);
}

.blog-post-title {
    font-size: 3rem;
    font-size: clamp(2.65rem, 4.45vw, 4.85rem);
    letter-spacing: 0;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.blog-post-byline {
    justify-content: center;
}

.blog-post-author,
.blog-post-reading-time {
    margin: 0;
    color: #5f6368;
    font-size: 0.98rem;
}

.blog-post-hero-media {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: clamp(1rem, 1.8vw, 1.9rem);
    background: #050608;
}

.blog-post-hero-media > img,
.blog-post-hero-media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-layout {
    width: min(100%, 86rem);
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    display: grid;
    grid-template-columns: minmax(12rem, 16rem) minmax(0, 66rem);
    gap: clamp(1.4rem, 3vw, 3rem);
    align-items: start;
    justify-content: center;
}

.blog-article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
    min-width: 0;
}

.blog-article-main {
    min-width: 0;
}

.blog-share-card {
    position: relative;
    z-index: 4;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.blog-share-card--bottom {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.blog-share-compact {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.blog-post-toc__eyebrow,
.blog-share-status {
    margin: 0;
    color: #5f6368;
    font-size: clamp(0.72rem, 0.75vw, 0.84rem);
    line-height: 1.35;
}

.blog-post-toc__eyebrow {
    letter-spacing: 0.01em;
}

.blog-share-status {
    position: absolute;
    left: calc(100% + 0.65rem);
    top: 50%;
    min-width: max-content;
    min-height: 1.1em;
    transform: translateY(-50%);
    color: #1a73e8;
}

.blog-share-trigger {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(25, 23, 28, 0.1);
    border-radius: 999px;
    background: #fff;
    color: #19171c;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(8, 12, 20, 0.06);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.blog-share-trigger:hover,
.blog-share-trigger[aria-expanded="true"] {
    transform: translateY(-1px);
    border-color: rgba(26, 115, 232, 0.32);
    background: #f3f7ff;
    color: #1a73e8;
}

.blog-share-trigger:focus-visible,
.blog-share-menu-item:focus-visible {
    outline: 2px solid rgba(26, 115, 232, 0.35);
    outline-offset: 2px;
}

.blog-share-trigger__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.blog-share-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 12rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(8, 12, 20, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.blog-share-menu[hidden] {
    display: none;
}

.blog-share-menu-item {
    width: 100%;
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    border: 0;
    border-radius: 0.75rem;
    background: transparent;
    color: #19171c;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.15;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.18s ease,
        color 0.18s ease;
}

.blog-share-menu-item:hover {
    background: #f3f7ff;
    color: #1a73e8;
}

.blog-share-menu-item--copy {
    color: #1a73e8;
    font-weight: 500;
}

.blog-share-action__icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.blog-post-toc {
    width: 100%;
    padding: clamp(1rem, 1.8vw, 1.4rem);
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: clamp(1rem, 1.55vw, 1.35rem);
    background: #fff;
    box-shadow: 0 12px 38px rgba(8, 12, 20, 0.04);
}

.blog-post-toc[hidden] {
    display: none;
}

.blog-post-toc__header {
    display: grid;
    gap: 0.18rem;
    margin-bottom: 0.85rem;
}

.blog-post-toc__title {
    margin: 0;
    color: #19171c;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.45vw, 1.55rem);
    font-weight: 500;
    line-height: 1.1;
}

.blog-post-toc__list {
    display: grid;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-post-toc__link {
    display: flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.75rem;
    color: #3c4043;
    text-decoration: none;
    font-size: clamp(0.88rem, 0.9vw, 0.98rem);
    line-height: 1.35;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.blog-post-toc__item--h3 .blog-post-toc__link {
    padding-left: 1.35rem;
    color: #5f6368;
    font-size: clamp(0.82rem, 0.84vw, 0.92rem);
}

.blog-post-toc__link:hover,
.blog-post-toc__link.is-active {
    background: #f3f7ff;
    color: #1a73e8;
}

.blog-post-toc__link:hover {
    transform: translateX(2px);
}

.blog-article-main .blog-post-prose {
    width: 100%;
    margin: clamp(1.25rem, 2vw, 1.8rem) 0 0;
}

.blog-post-prose {
    width: min(100%, 66rem);
    margin: clamp(2.35rem, 4.8vw, 4.4rem) auto 0;
    display: grid;
    gap: clamp(1rem, 1.35vw, 1.35rem);
    color: #2d2c31;
}

.blog-post-prose p,
.blog-post-prose li {
    margin: 0;
    font-size: 1rem;
    font-size: clamp(1rem, 0.98vw, 1.1rem);
    line-height: 1.76;
    color: #2d2c31;
}

.blog-post-prose h2,
.blog-post-prose h3,
.blog-post-prose h4 {
    margin: clamp(1.15rem, 2vw, 1.75rem) 0 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
    color: #19171c;
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.blog-post-prose h2 {
    font-size: 2rem;
    font-size: clamp(1.9rem, 2.35vw, 2.85rem);
}

.blog-post-prose h3 {
    font-size: 1.55rem;
    font-size: clamp(1.45rem, 1.8vw, 2.05rem);
}

.blog-post-prose h4 {
    font-size: 1.25rem;
    font-size: clamp(1.18rem, 1.45vw, 1.45rem);
}

.blog-post-prose ul,
.blog-post-prose ol {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.3rem;
    margin: 0;
}

.blog-post-prose ul {
    list-style: disc;
}

.blog-post-prose ol {
    list-style: decimal;
}

.blog-post-prose strong {
    color: #19171c;
    font-weight: 600;
}

.blog-post-prose em {
    font-style: italic;
}

.blog-post-prose a {
    color: var(--blue-primary);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    word-break: break-word;
}

.blog-post-prose a:hover {
    color: #155fbe;
}

.blog-post-prose hr {
    border: 0;
    height: 1px;
    background: rgba(25, 23, 28, 0.1);
    margin: 0.75rem 0;
}

.blog-post-prose blockquote,
.blog-post-prose .blog-rich-quote {
    margin: 0;
    padding: clamp(1.15rem, 2vw, 1.65rem) clamp(1.15rem, 2.2vw, 1.85rem);
    border-left: 3px solid var(--blue-primary);
    border-radius: clamp(1rem, 1.5vw, 1.25rem);
    background: linear-gradient(180deg, #f7f9fc 0%, #f3f6fb 100%);
}

.blog-post-prose blockquote p:last-child,
.blog-post-prose .blog-rich-quote p:last-child {
    margin-bottom: 0;
}

.blog-post-prose img,
.blog-post-prose video,
.blog-post-prose iframe,
.blog-post-prose .section-image,
.blog-post-prose .video-thumbnail-container,
.blog-post-prose .blog-rich-figure img {
    width: 100%;
    max-width: 100%;
    border-radius: clamp(1rem, 1.6vw, 1.5rem);
    overflow: hidden;
}

.blog-post-prose .blog-embed-shell {
    position: relative;
    overflow: hidden;
    border-radius: clamp(1rem, 1.6vw, 1.5rem);
    background: #050608;
    aspect-ratio: 16 / 9;
}

.blog-post-prose .blog-embed-shell iframe,
.blog-post-prose .blog-embed-shell video,
.blog-post-prose iframe.blog-rich-embed,
.blog-post-prose video.blog-rich-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-post-prose figure,
.blog-post-prose .blog-rich-figure {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.blog-post-prose figcaption,
.blog-post-prose .blog-rich-caption {
    color: #6d7077;
    font-size: 0.92rem;
    line-height: 1.5;
}

.blog-post-prose .blog-table-scroll {
    overflow-x: auto;
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: clamp(0.9rem, 1.4vw, 1.25rem);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.blog-post-prose table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.96rem;
    line-height: 1.55;
}

.blog-post-prose th,
.blog-post-prose td {
    padding: clamp(0.75rem, 1.2vw, 0.95rem) clamp(0.85rem, 1.3vw, 1rem);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-post-prose thead th {
    color: #19171c;
    font-weight: 600;
    background: #f7f8fb;
}

.blog-post-prose tbody tr:nth-child(even) {
    background: rgba(247, 248, 251, 0.7);
}

.blog-post-prose tbody tr:last-child td {
    border-bottom: 0;
}

.blog-post-prose pre,
.blog-post-prose .blog-rich-pre {
    overflow-x: auto;
    margin: 0;
    padding: clamp(1rem, 1.8vw, 1.3rem) clamp(1rem, 1.8vw, 1.45rem);
    border-radius: clamp(0.95rem, 1.4vw, 1.15rem);
    background: #0b0d12;
    color: #f5f7fa;
    -webkit-overflow-scrolling: touch;
}

.blog-post-prose code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.94em;
}

.blog-post-prose :not(pre) > code {
    padding: 0.18rem 0.45rem;
    border-radius: 8px;
    background: #f2f4f8;
    color: #19171c;
}

.blog-post-prose .ql-align-center {
    text-align: center;
}

.blog-post-prose .ql-align-right {
    text-align: right;
}

.blog-post-prose .ql-align-justify {
    text-align: justify;
}

.blog-post-prose .ql-indent-1 { padding-left: 1.5rem; }
.blog-post-prose .ql-indent-2 { padding-left: 3rem; }
.blog-post-prose .ql-indent-3 { padding-left: 4.5rem; }
.blog-post-prose .ql-indent-4 { padding-left: 6rem; }

.blog-post-cta {
    width: min(100%, 66rem);
    margin: clamp(2.15rem, 4vw, 3rem) auto 0;
}

.blog-post-cta .btn {
    min-height: 2.85rem;
    padding-inline: clamp(1.15rem, 1.8vw, 1.5rem);
}

.blog-related-section {
    width: min(100%, 84rem);
    margin-inline: auto;
    margin-top: clamp(4rem, 7vw, 6rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(25, 23, 28, 0.08);
}

.blog-related-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: clamp(1.2rem, 2.1vw, 1.85rem);
}

.blog-related-section__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    font-size: clamp(1.85rem, 2.4vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.6vw, 1.35rem);
}

.blog-related-card {
    display: grid;
    gap: clamp(0.85rem, 1.25vw, 1rem);
    padding: clamp(0.85rem, 1.25vw, 1rem);
    border: 1px solid rgba(25, 23, 28, 0.08);
    border-radius: clamp(1rem, 1.7vw, 1.4rem);
    background: #fff;
    box-shadow: 0 10px 36px rgba(8, 12, 20, 0.04);
}

.blog-related-card__body {
    display: grid;
    gap: 0.85rem;
}

.blog-related-card p {
    margin: 0;
    color: #5f6368;
    font-size: clamp(0.92rem, 0.88vw, 1rem);
    line-height: 1.6;
}

.blog-related-card h3 {
    font-size: clamp(1.1rem, 1.2vw, 1.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .blog-featured-story {
        grid-template-columns: 1fr;
    }

    .blog-article-layout {
        width: min(100%, 66rem);
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }

    .blog-article-sidebar {
        position: static;
        top: auto;
    }

    .blog-featured-story__copy {
        max-width: none;
    }

    .blog-post-header {
        width: 100%;
        max-width: 100%;
    }

    .blog-post-title {
        font-size: clamp(2.45rem, 6.5vw, 4rem);
    }
}

@media (max-width: 820px) {
    .blog-feed {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .blog-list-shell,
    .blog-post-shell {
        padding: calc(var(--header-height) + 1.5rem) 0 4rem;
    }

    .blog-list-shell .container,
    .blog-post-shell .container {
        padding-inline: 1rem;
    }

    .blog-featured-story {
        gap: 1.25rem;
    }

    .blog-featured-story__copy {
        order: 2;
        gap: 0.85rem;
    }

    .blog-featured-story__media {
        order: 1;
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: 0.9rem;
    }

    .blog-featured-story__eyebrow {
        display: none;
    }

    .blog-featured-story__title {
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 2.9rem);
        line-height: 0.98;
    }

    .blog-feed-toolbar {
        margin-bottom: 1rem;
    }

    .blog-filter-tab {
        padding-bottom: 0.85rem;
        font-size: 0.98rem;
    }

    .blog-feed-card {
        grid-template-columns: minmax(0, 1fr) clamp(5.75rem, 27vw, 7.5rem);
        gap: 0.85rem 1rem;
        padding: 1.5rem 0;
    }

    .blog-feed-card__media {
        grid-column: 2;
        grid-row: 1 / span 3;
        width: 100%;
    }

    .blog-feed-card__title {
        max-width: 19ch;
        font-size: clamp(1.25rem, 5vw, 1.7rem);
        line-height: 1.05;
    }

    .blog-post-header {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .blog-post-meta-row,
    .blog-post-byline {
        justify-content: flex-start;
    }

    .blog-post-title {
        margin-inline: 0;
        max-width: 100%;
        font-size: 2.35rem;
        font-size: clamp(2.05rem, 9vw, 3rem);
        line-height: 1;
    }

    .blog-post-hero-media {
        aspect-ratio: 16 / 10;
        border-radius: 0.95rem;
    }

    .blog-article-layout,
    .blog-article-main,
    .blog-post-prose,
    .blog-post-cta {
        width: 100%;
    }

    .blog-share-card {
        width: fit-content;
        padding: 0;
    }

    .blog-share-status {
        position: static;
        min-width: 0;
        margin-left: 0.6rem;
        transform: none;
    }

    .blog-post-toc {
        padding: 1rem;
    }

    .blog-post-prose {
        margin-top: 2rem;
        gap: 1rem;
    }

    .blog-post-prose p,
    .blog-post-prose li {
        font-size: 1rem;
        line-height: 1.72;
    }

    .blog-post-prose h2 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .blog-post-prose h3 {
        font-size: clamp(1.35rem, 5.6vw, 1.8rem);
    }

    .blog-post-prose .ql-indent-1,
    .blog-post-prose .ql-indent-2,
    .blog-post-prose .ql-indent-3,
    .blog-post-prose .ql-indent-4 {
        padding-left: 1rem;
    }

    .blog-post-prose table {
        min-width: 30rem;
    }

    .blog-post-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .blog-related-section__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.9rem;
    }

    .blog-related-section__header h2 {
        min-width: 0;
        line-height: 1.05;
    }

    .blog-related-section__header .blog-soft-button {
        flex-shrink: 0;
        white-space: nowrap;
    }

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

@media (max-width: 520px) {
    .blog-featured-story__media {
        min-height: 0;
    }

    .blog-breadcrumbs {
        margin-bottom: 1rem;
    }

    .blog-breadcrumbs ol {
        width: 100%;
        min-height: 2.45rem;
        padding: 0.22rem;
        font-size: 0.78rem;
    }

    .blog-breadcrumbs a {
        min-height: 1.9rem;
        padding: 0.34rem 0.62rem;
    }

    .blog-breadcrumbs li[aria-current="page"] {
        max-width: 56vw;
        min-height: 1.9rem;
        padding: 0.34rem 0.66rem;
    }

    .blog-post-chip {
        min-height: 1.85rem;
        padding-inline: 0.7rem;
    }

    .blog-post-author,
    .blog-post-reading-time {
        font-size: 0.9rem;
    }

    .blog-soft-button {
        min-height: 2.9rem;
        padding-inline: 1.35rem;
    }

    .blog-post-prose table {
        min-width: 26rem;
    }

    .blog-related-card {
        border-radius: 1rem;
    }
}

@supports not (aspect-ratio: 1 / 1) {
    .blog-feed-card__media,
    .blog-related-card__media {
        min-height: 8.5rem;
    }

    .blog-post-prose .blog-embed-shell {
        min-height: 16rem;
    }
}

/* Browser-safe media ratios for older TV/WebKit browsers without stable aspect-ratio support. */
.blog-featured-story__media,
.blog-feed-card__media,
.blog-related-card__media,
.blog-post-hero-media,
.blog-post-prose .blog-embed-shell {
    position: relative;
}

.blog-featured-story__media::before,
.blog-post-hero-media::before,
.blog-post-prose .blog-embed-shell::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 56.25%;
}

.blog-post-hero-media::before {
    padding-top: 42.857%;
}

.blog-feed-card__media::before,
.blog-related-card__media::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.blog-featured-story__media > img,
.blog-featured-story__media > .blog-fallback-art,
.blog-feed-card__media > img,
.blog-feed-card__media > .blog-fallback-art,
.blog-related-card__media > img,
.blog-related-card__media > .blog-fallback-art,
.blog-post-hero-media > img,
.blog-post-hero-media > .blog-fallback-art {
    position: absolute;
    inset: 0;
}

.blog-featured-story__media,
.blog-feed-card__media,
.blog-related-card__media,
.blog-post-hero-media {
    background: #f7f8fb;
}

.blog-featured-story__media > img,
.blog-feed-card__media > img,
.blog-related-card__media > img,
.blog-post-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.blog-featured-story__media > .blog-fallback-art,
.blog-feed-card__media > .blog-fallback-art,
.blog-related-card__media > .blog-fallback-art,
.blog-post-hero-media > .blog-fallback-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-feed-card:hover .blog-feed-card__media > img,
.blog-related-card:hover .blog-related-card__media > img {
    transform: none;
}

@media (max-width: 767px) {
    .blog-featured-story__media::before,
    .blog-post-hero-media::before {
        padding-top: 62.5%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-feed-card:hover .blog-feed-card__media > img,
    .blog-feed-card:hover .blog-feed-card__media > .blog-fallback-art,
    .blog-related-card:hover .blog-related-card__media > img,
    .blog-related-card:hover .blog-related-card__media > .blog-fallback-art {
        transform: none;
    }
}
