/* Subframe theme tokens — Open Play Finder / Ghost */
:root {
    --brand-primary: rgb(254 113 103);
    --default-font: rgb(15 23 42);
    --subtext-color: rgb(100 116 139);
    --neutral-border: rgb(226 232 240);
    --default-background: rgb(255 255 255);
    --neutral-50: rgb(248 250 252);
    --neutral-100: rgb(241 245 249);
    --neutral-200: rgb(226 232 240);
    --neutral-700: rgb(51 65 85);
    --brand-50: rgb(255 231 230);
    --brand-100: rgb(255 208 204);
    --brand-400: rgb(254 65 52);
    --brand-600: rgb(203 14 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 16px -2px rgb(0 0 0 / 0.08), 0 2px 4px -1px rgb(0 0 0 / 0.08);
    --radius-md: 16px;
    --radius-sm: 8px;
    --font: "Rubik", system-ui, sans-serif;
    --max-content: 1024px;
    --max-wide: 1280px;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body.opf-theme {
    margin: 0;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.43;
    color: var(--default-font);
    background: var(--default-background);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

a:hover {
    text-decoration: underline;
}

.opf-layout.opf-mainlayout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.opf-mainlayout__column {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    width: 100%;
}

.opf-main {
    flex: 1 1 auto;
    width: 100%;
}

@media (max-width: 767px) {
    .mobile-hidden {
        display: none !important;
    }
}

/* —— NavigationHeader (Subframe MainLayout) —— */
.opf-nav-header {
    flex: none;
    width: 100%;
    border-bottom: 1px solid var(--neutral-200);
    background: var(--default-background);
}

.opf-nav-header.is-header-hidden {
    display: none;
}

.opf-nav-header__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

@media (max-width: 767px) {
    .opf-nav-header__inner {
        padding: 8px 12px;
    }
}

.opf-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.opf-brand:hover {
    text-decoration: none;
}

.opf-brand__logo {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
}

.opf-brand__name {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--brand-primary);
}

.opf-nav-header__icons {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .opf-nav-header__icons {
        display: flex;
    }
}

.opf-icon-cards {
    display: flex;
    align-items: center;
    gap: 20px;
}

.opf-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--default-font);
    cursor: pointer;
}

.opf-icon-card:hover {
    text-decoration: none;
    opacity: 0.9;
}

.opf-icon-card__img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.opf-icon-card__label {
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    color: var(--neutral-600);
}

.opf-icon-card--badge {
    position: relative;
}

.opf-nav-header__viewall {
    flex-shrink: 0;
}

.opf-nav-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.opf-nav-header__list-team {
    padding: 0 8px;
    border: none;
    background: transparent;
    font-size: 12px;
    line-height: 16px;
    color: var(--neutral-900);
}

.opf-members {
    display: flex;
    align-items: center;
    gap: 8px;
}

.opf-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: var(--neutral-700);
    cursor: pointer;
}

.opf-icon-btn:hover {
    background: rgba(15, 23, 42, 0.06);
}

.opf-dropdown {
    position: relative;
    flex-shrink: 0;
}

.opf-dropdown__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    width: min(100vw - 32px, 400px);
    max-height: min(80vh, 640px);
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--default-background);
    border: 1px solid var(--neutral-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.opf-dropdown__panel[hidden] {
    display: none !important;
}

.opf-dropdown.is-open .opf-dropdown__panel {
    display: block !important;
}

.opf-dropdown__scroll {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opf-dropdown__section {
    width: 100%;
}

.opf-dropdown__cta-card {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    background: var(--default-background);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.opf-dropdown__cta-card:hover {
    text-decoration: none;
}

.opf-dropdown__icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.opf-dropdown__cta-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.opf-dropdown__cta-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--default-font);
}

.opf-dropdown__cta-sub {
    font-size: 12px;
    line-height: 16px;
    color: var(--subtext-color);
}

.opf-dropdown__rule {
    height: 1px;
    width: 100%;
    background: var(--neutral-border);
}

.opf-dropdown__row-card {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    background: var(--default-background);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.opf-dropdown__row-card:hover {
    text-decoration: none;
}

.opf-dropdown__row-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.opf-dropdown__row-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.opf-dropdown__row-title--muted {
    color: var(--subtext-color);
}

.opf-dropdown__row-sub {
    font-size: 12px;
    line-height: 16px;
    color: var(--subtext-color);
}

.opf-dropdown__row-thumb {
    display: flex;
    max-width: 64px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.opf-dropdown__row-thumb img {
    max-width: 48px;
    width: 100%;
    height: auto;
}

.opf-dropdown__label {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: var(--subtext-color);
}

.opf-dropdown__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 8px 0;
}

.opf-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font);
}

.opf-link-btn:hover {
    color: var(--default-font);
    text-decoration: underline;
}

.opf-link-btn--small {
    font-size: 12px;
}

.opf-dropdown__ghost-nav ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opf-dropdown__ghost-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
}

.opf-dropdown__ghost-nav a:hover {
    color: var(--default-font);
}

/* —— Buttons —— */
.opf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.opf-btn:hover {
    text-decoration: none;
}

.opf-btn--sm {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
}

.opf-btn--md {
    min-height: 40px;
    padding: 0 16px;
}

.opf-btn--lg {
    min-height: 40px;
    padding: 0 24px;
    font-size: 14px;
}

.opf-btn--brand-primary {
    background: var(--brand-primary);
    color: #fff;
}

.opf-btn--brand-primary:hover {
    filter: brightness(0.95);
}

.opf-btn--neutral-secondary {
    background: var(--default-background);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-border);
}

.opf-btn--neutral-secondary:hover {
    background: var(--neutral-50);
}

.opf-btn--neutral-tertiary {
    background: transparent;
    color: var(--neutral-700);
}

.opf-btn--neutral-tertiary:hover {
    background: var(--neutral-100);
}

.opf-btn__icon-right {
    flex-shrink: 0;
}

/* —— Hub (React BlogHub layout) —— */
.opf-hub {
    width: 100%;
    background: var(--default-background);
}

.opf-hub--root {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
}

.opf-hub__shell {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 48px 80px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .opf-hub__shell {
        padding: 48px 16px 64px;
    }
}

.opf-hub__hero {
    display: flex;
    width: 100%;
    max-width: var(--max-content);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.opf-hub__feed {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.opf-hub__toolbar-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 767px) {
    .opf-hub__toolbar-row {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.opf-hub__search-wrap {
    display: flex;
    width: 288px;
    flex: none;
    align-items: center;
    gap: 8px;
}

@media (max-width: 767px) {
    .opf-hub__search-wrap {
        width: 100%;
        height: auto;
    }
}

.opf-text-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.opf-text-field__control {
    display: flex;
    height: 32px;
    width: 100%;
    align-items: center;
    gap: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    background: var(--default-background);
    padding: 0 8px;
}

.opf-text-field__control:focus-within {
    border-color: var(--brand-primary);
}

.opf-text-field__icon {
    display: flex;
    color: var(--subtext-color);
}

.opf-text-field__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 14px;
    color: var(--subtext-color);
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.opf-hub__grid-stack {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.opf-hub__card-row {
    display: flex;
    width: 100%;
    flex: 1 1 0%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 767px) {
    .opf-hub__card-row {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.opf-hub__card-row .opf-blog-card {
    width: 100%;
    max-width: 320px;
    min-width: min(100%, 288px);
    flex: 1 1 288px;
}

.opf-hub__load-more {
    margin-top: 0;
}

@media (max-width: 767px) {
    .opf-hub__load-more {
        height: 40px;
        width: 100%;
    }
}

.opf-featured--bloghub {
    width: 100%;
    flex: none;
}

.opf-promo--bloghub {
    width: 100%;
    max-width: 64rem;
}

.opf-promo__desc--wide {
    max-width: 36rem;
}

.opf-promo__learn-more {
    display: none;
}

@media (max-width: 767px) {
    .opf-promo__learn-more {
        display: inline-flex;
    }

    .opf-promo--bloghub .opf-promo__actions {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
    }
}

.opf-hub__container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (max-width: 767px) {
    .opf-hub__container {
        padding: 48px 16px 64px;
    }
}

.opf-hub__intro {
    text-align: center;
    max-width: var(--max-content);
}

/* Matches Subframe text-heading-1 / text-heading-3 (Blog Hub hero) */
.opf-hub__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: var(--default-font);
}

.opf-hub__subtitle {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--subtext-color);
}

.opf-archive__intro {
    width: 100%;
}

.opf-post-grid--archive {
    margin-top: 8px;
}

.opf-post-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 48px;
}

/* —— Featured —— */
.opf-featured {
    width: 100%;
}

.opf-featured__card {
    width: 100%;
    max-width: var(--max-content);
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: var(--default-background);
}

.opf-featured__image-link {
    display: block;
}

.opf-featured__image {
    width: 100%;
    height: 384px;
    object-fit: cover;
}

.opf-featured__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 767px) {
    .opf-featured__content {
        padding: 16px;
    }
}

.opf-featured__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.opf-featured__headline {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.opf-featured__headline a {
    text-decoration: none;
    color: var(--default-font);
}

.opf-featured__headline a:hover {
    text-decoration: underline;
}

.opf-featured__excerpt {
    margin: 0;
    max-width: 768px;
    font-size: 14px;
    line-height: 20px;
    color: var(--subtext-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opf-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* —— Badges —— */
.opf-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    border: 1px solid transparent;
}

.opf-badge--brand {
    background: var(--brand-100);
    border-color: var(--brand-100);
    color: rgb(101 7 1);
}

.opf-badge--neutral {
    background: var(--neutral-100);
    border-color: var(--neutral-100);
    color: var(--neutral-700);
}

.opf-caption {
    font-size: 12px;
    line-height: 16px;
}

.opf-text-subtle {
    color: var(--subtext-color);
}

/* —— Authors —— */
.opf-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.opf-author__avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    object-fit: cover;
}

.opf-author__avatar--sm {
    width: 28px;
    height: 28px;
}

.opf-author__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: var(--neutral-200);
    font-size: 12px;
    font-weight: 500;
    color: var(--neutral-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}

.opf-author__placeholder--sm {
    width: 28px;
    height: 28px;
    font-size: 10px;
}

.opf-author__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.opf-author__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--default-font);
}

.opf-author__hint {
    font-size: 12px;
    font-weight: 500;
    color: var(--default-font);
}

/* —— Toolbar —— */
.opf-hub__toolbar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opf-hub__toolbar > div:first-child {
    align-self: flex-start;
}

@media (min-width: 768px) {
    .opf-hub__toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .opf-search-field {
        max-width: 100%;
    }

    .opf-hub__toolbar > div:first-child {
        align-self: stretch;
    }
}

.opf-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 288px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid var(--neutral-border);
    border-radius: var(--radius-sm);
    background: var(--default-background);
}

.opf-search-field__icon {
    display: flex;
    color: var(--subtext-color);
    flex-shrink: 0;
}

.opf-search-field__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 14px;
    color: var(--subtext-color);
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.opf-toggle-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
}

.opf-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--subtext-color);
    text-decoration: none;
    white-space: nowrap;
}

.opf-toggle:hover {
    color: var(--default-font);
    text-decoration: none;
}

.opf-toggle--active {
    background: var(--default-background);
    color: var(--default-font);
    box-shadow: var(--shadow-sm);
}

/* —— Blog grid —— */
.opf-post-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.opf-blog-card {
    width: 100%;
    max-width: 320px;
    min-width: min(100%, 288px);
    flex: 1 1 288px;
}

.opf-blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    background: var(--default-background);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.15s ease;
}

.opf-blog-card__link:hover {
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.opf-blog-card__image {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.opf-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 24px 24px;
    gap: 8px;
}

.opf-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.opf-blog-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--default-font);
}

.opf-blog-card__excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--subtext-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opf-author--sm {
    padding-top: 8px;
    gap: 8px;
}

/* —— Pagination —— */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.pagination a {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
}

.pagination a:hover {
    background: var(--neutral-50);
}

/* —— Promo —— */
.opf-promo {
    width: 100%;
    max-width: 64rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    background: var(--neutral-50);
    text-align: center;
}

.opf-promo__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: var(--brand-50);
    color: var(--brand-600);
}

.opf-promo__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default-font);
}

.opf-promo__desc {
    margin: 0;
    max-width: 36rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--subtext-color);
}

.opf-promo__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* —— BoldFooter (Subframe MainLayout) —— */
.opf-bold-footer {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid var(--neutral-100);
    background: #fff;
    padding: 56px 32px 30px;
}

@media (max-width: 767px) {
    .opf-bold-footer {
        padding: 32px 16px 24px;
    }
}

.opf-bold-footer__inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.opf-bold-footer__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.opf-bold-footer__col {
    flex: 0 0 140px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opf-bold-footer__col--follow {
    align-self: flex-start;
    gap: 10px;
}

.opf-bold-footer__heading {
    margin: 0;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: var(--default-font);
}

.opf-bold-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opf-footer-link {
    font-size: 12px;
    line-height: 16px;
    color: var(--neutral-700);
    text-decoration: none;
}

.opf-footer-link:hover {
    color: var(--default-font);
    text-decoration: underline;
}

.opf-bold-footer__social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.opf-icon-btn--footer {
    width: 22px;
    height: 22px;
    color: var(--neutral-700);
}

.opf-bold-footer__join {
    margin-top: 2px;
}

.opf-bold-footer__rule {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

.opf-bold-footer__bottom-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.opf-bold-footer__brand-block {
    display: flex;
    min-width: 140px;
    flex: 0 0 140px;
    align-items: center;
    gap: 6px;
}

.opf-bold-footer__logo {
    width: 18px;
    height: 18px;
    object-fit: cover;
}

.opf-bold-footer__brand-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-primary);
}

.opf-bold-footer__mini {
    display: flex;
    min-width: 140px;
    flex: 0 0 140px;
    flex-direction: column;
    gap: 8px;
}

.opf-bold-footer__legal-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.opf-bold-footer__copyright {
    margin: 0;
    font-size: 11px;
    line-height: 16px;
    color: var(--subtext-color);
}

.opf-bold-footer__tagline {
    margin: 0;
    max-width: 520px;
    font-size: 11px;
    line-height: 16px;
    color: var(--subtext-color);
    white-space: pre-wrap;
}

@media (max-width: 767px) {
    .opf-bold-footer__inner {
        gap: 20px;
    }

    .opf-bold-footer__grid,
    .opf-bold-footer__bottom-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
        text-align: center;
    }

    .opf-bold-footer__col,
    .opf-bold-footer__mini,
    .opf-bold-footer__brand-block {
        min-width: 0;
        width: 100%;
        max-width: 240px;
        align-items: center;
        justify-content: center;
        flex: none;
    }

    .opf-bold-footer__links {
        align-items: center;
    }

    .opf-bold-footer__col--follow {
        align-items: center;
    }

    .opf-bold-footer__social {
        justify-content: center;
    }

    .opf-bold-footer__rule {
        margin: 4px 0;
    }

    .opf-bold-footer__legal-block {
        gap: 6px;
        max-width: 340px;
    }

    .opf-bold-footer__tagline {
        max-width: 320px;
    }
}

/* —— Legacy post / Ghost content —— */
.site-main,
main.site-main,
main#site-main {
    width: 100%;
}

.article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.gh-canvas {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gh-content {
    font-size: 18px;
    line-height: 1.65;
    color: var(--default-font);
}

.gh-content p {
    margin: 0 0 1.25em;
}

.gh-content h1,
.gh-content h2,
.gh-content h3 {
    font-weight: 500;
    margin: 1.5em 0 0.5em;
}

.gh-content img,
.gh-content video,
.gh-content iframe {
    max-width: 100%;
}

.article-header {
    padding: 48px 0 24px;
}

.article-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px;
}

.post-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-border);
    overflow: hidden;
    background: var(--default-background);
    max-width: 400px;
}

.post-card-image-link {
    display: block;
}

.post-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.post-card-content {
    padding: 20px;
}

.post-card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--subtext-color);
}

.read-more-wrap,
.footer-cta {
    padding: 48px 24px;
    background: var(--neutral-50);
}

.read-more,
.inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
