/* ==========================================================================
   WriteUpCafe — Free SEO Tools
   Shared stylesheet for /tools and /tools/<slug> pages.
   Brand: cream background, Playfair headings, orange accent #c4622d.
   ========================================================================== */

/* Tokens rebound to WriteUpCafe design system (src/design-system/design.md).
   Local var names preserved so the ~900 lines of .t-* rules below don't need
   to change. */
:root {
    --t-orange:      var(--wuc-primary);        /* #e87a35 — brand primary */
    --t-orange-dark: var(--wuc-primary-hover);  /* #f08a45 */
    --t-orange-soft: rgba(232, 122, 53, 0.10);
    --t-ink:         var(--wuc-fg1);            /* #1a0f06 */
    --t-ink-muted:   var(--wuc-fg2);            /* #3d2a18 */
    --t-ink-soft:    var(--wuc-fg3);
    --t-border:      var(--wuc-border-strong);
    --t-border-soft: var(--wuc-border);
    --t-cream:       var(--wuc-parchment-raised);/* #fbf7ef */
    --t-cream-2:     var(--wuc-parchment-sunken);/* #ece5d8 */
    --t-bg:          var(--wuc-parchment);       /* #f5f0e8 */
    --t-green:       var(--wuc-sage);
    --t-amber:       var(--wuc-gold-warm);
    --t-red:         var(--wuc-coral);
}

/* ---------- Layout wrappers ---------- */
.t-wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}
.t-crumb {
    font-size: 13px;
    color: var(--t-ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.t-crumb a {
    color: var(--t-ink-soft);
    text-decoration: none;
}
.t-crumb a:hover { color: var(--t-orange); }
.t-crumb__current { color: var(--t-ink); font-weight: 600; }

.t-head {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--t-border);
}
.t-head__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--t-ink);
    margin: 0 0 8px;
    letter-spacing: -0.6px;
    line-height: 1.15;
}
.t-head__tagline {
    font-size: 1.05rem;
    color: var(--t-ink-muted);
    margin: 0;
    max-width: 680px;
}

.t-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .t-body { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Tool main panel ---------- */
.t-main {
    min-width: 0;
}
.t-panel {
    background: #fff;
    border: 1px solid var(--t-border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 18px;
}
.t-panel + .t-panel { margin-top: 0; }
.t-panel__label {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--t-ink-soft);
    margin-bottom: 14px;
}
.t-panel__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--t-ink);
    margin: 0 0 14px;
}

.t-field { margin-bottom: 14px; }
.t-field:last-child { margin-bottom: 0; }
.t-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--t-ink);
    margin-bottom: 6px;
}
.t-field__hint {
    display: block;
    font-size: 12px;
    color: var(--t-ink-soft);
    margin-top: 4px;
}
.t-input,
.t-textarea,
.t-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--t-border);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--t-ink);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.t-input:focus,
.t-textarea:focus,
.t-select:focus {
    border-color: var(--t-orange);
    box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15);
}
.t-textarea { resize: vertical; min-height: 180px; line-height: 1.55; }
.t-textarea--lg { min-height: 280px; }

.t-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 22px;
    border: 1px solid var(--t-orange);
    border-radius: 999px;
    background: var(--t-orange);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
    text-decoration: none;
    white-space: nowrap;
}
.t-btn:hover { background: var(--t-orange-dark); border-color: var(--t-orange-dark); }
.t-btn:active { background: var(--wuc-primary-press); border-color: var(--wuc-primary-press); box-shadow: none; }
.t-btn--ghost {
    background: transparent;
    color: var(--t-ink);
    border: 1px solid var(--t-border);
}
.t-btn--ghost:hover { border-color: var(--t-orange); color: var(--t-orange); background: var(--t-orange-soft); }
.t-btn--sm { height: 32px; padding: 0 14px; font-size: 13px; }

.t-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

/* ---------- Stats grid (word counter etc) ---------- */
.t-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}
.t-stat {
    background: var(--t-cream);
    border: 1px solid var(--t-border-soft);
    border-radius: 10px;
    padding: 14px 16px;
}
.t-stat__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--t-ink-soft);
    margin-bottom: 6px;
}
.t-stat__value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--t-ink);
    line-height: 1;
}
.t-stat__sub {
    font-size: 12px;
    color: var(--t-ink-soft);
    margin-top: 4px;
}

/* ---------- Score meters ---------- */
.t-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.t-meter__label {
    flex: 0 0 140px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t-ink);
}
.t-meter__track {
    flex: 1;
    height: 8px;
    background: var(--t-border-soft);
    border-radius: 99px;
    overflow: hidden;
}
.t-meter__fill {
    height: 100%;
    background: var(--t-orange);
    border-radius: 99px;
    transition: width 0.3s;
}
.t-meter__fill--good { background: var(--t-green); }
.t-meter__fill--warn { background: var(--t-amber); }
.t-meter__fill--bad  { background: var(--t-red); }
.t-meter__value {
    flex: 0 0 60px;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--t-ink);
    text-align: right;
}

/* ---------- Tables ---------- */
.t-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.t-table th,
.t-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--t-border-soft);
}
.t-table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--t-ink-soft);
    background: var(--t-cream);
}
.t-table tbody tr:hover { background: var(--t-cream); }
.t-table__scroll {
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid var(--t-border);
    border-radius: 8px;
}

/* ---------- Audit / check list ---------- */
.t-check {
    list-style: none;
    margin: 0;
    padding: 0;
}
.t-check li {
    padding: 10px 12px;
    border-left: 3px solid var(--t-border);
    background: var(--t-cream);
    margin-bottom: 8px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    color: var(--t-ink);
}
.t-check li.t-ok   { border-color: var(--t-green); }
.t-check li.t-warn { border-color: var(--t-amber); }
.t-check li.t-bad  { border-color: var(--t-red); }
.t-check li em {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: var(--t-ink-soft);
    margin-top: 2px;
}

.t-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 99px;
    background: var(--t-orange-soft);
    color: var(--t-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-right: 6px;
}
.t-badge--green { background: rgba(47, 143, 79, 0.12); color: var(--t-green); }
.t-badge--amber { background: rgba(196, 136, 45, 0.14); color: var(--t-amber); }
.t-badge--red   { background: rgba(196, 61, 45, 0.12);  color: var(--t-red); }

/* ---------- Code / output box ---------- */
.t-code {
    background: #1a1612;
    color: #f5efe2;
    padding: 16px 18px;
    border-radius: 10px;
    font-family: 'JetBrains Mono', 'DM Mono', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    max-height: 520px;
    overflow-y: auto;
}

/* ---------- Sidebar (related tools) ---------- */
.t-side {
    position: sticky;
    top: 88px;
    align-self: flex-start;
}
.t-side__label {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--t-ink-soft);
    margin-bottom: 12px;
}
.t-side__list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.t-side__link {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--t-ink);
    transition: background 0.15s;
    align-items: flex-start;
}
.t-side__link:hover { background: var(--t-cream); }
.t-side__link i {
    font-size: 18px;
    color: var(--t-orange);
    flex: 0 0 auto;
    margin-top: 1px;
}
.t-side__link strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--t-ink);
    margin-bottom: 2px;
}
.t-side__link em {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: var(--t-ink-soft);
    line-height: 1.35;
}
.t-side__all {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--t-orange);
    text-decoration: none;
    padding: 4px 12px;
}
.t-side__all:hover { text-decoration: underline; }

/* ---------- CTA ---------- */
.t-cta {
    margin-top: 48px;
    padding: 40px 32px;
    background: linear-gradient(135deg, var(--t-cream) 0%, var(--t-cream-2) 100%);
    border: 1px solid var(--t-border-soft);
    border-radius: 16px;
    text-align: center;
}
.t-cta__kicker {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-orange);
    margin-bottom: 10px;
}
.t-cta__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--t-ink);
    margin: 0 0 10px;
    letter-spacing: -0.4px;
}
.t-cta__body {
    color: var(--t-ink-muted);
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.55;
}
.t-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    background: var(--t-orange);
    color: #fff;
    border: 1px solid var(--t-orange);
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 150ms ease-out, border-color 150ms ease-out;
}
.t-cta__btn:hover { background: var(--t-orange-dark); border-color: var(--t-orange-dark); }
.t-cta__btn:active { background: var(--wuc-primary-press); border-color: var(--wuc-primary-press); box-shadow: none; }

/* ---------- Hub page ---------- */
.t-hub-hero {
    text-align: center;
    padding: 48px 24px 40px;
    background: linear-gradient(135deg, var(--t-cream) 0%, var(--t-cream-2) 100%);
    border-bottom: 1px solid var(--t-border-soft);
    margin: -24px -24px 40px;
    border-radius: 0;
}
.t-hub-hero__kicker {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-orange);
    margin-bottom: 14px;
}
.t-hub-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--t-ink);
    margin: 0 0 14px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}
.t-hub-hero__subtitle {
    font-size: 1.1rem;
    color: var(--t-ink-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
}

.t-hub-section-label {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--t-ink-soft);
    margin-bottom: 18px;
}
.t-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.t-hub-card {
    background: #fff;
    border: 1px solid var(--t-border);
    border-radius: 12px;
    padding: 22px;
    text-decoration: none;
    transition: all 0.18s;
    display: block;
}
.t-hub-card:hover {
    border-color: var(--t-orange);
    box-shadow: 0 8px 22px rgba(196, 98, 45, 0.09);
    transform: translateY(-2px);
    text-decoration: none;
}
.t-hub-card:hover .t-hub-card__title,
.t-hub-card:hover .t-hub-card__blurb { text-decoration: none; }
.t-hub-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--t-orange-soft);
    color: var(--t-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.t-hub-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--t-ink);
    margin: 0 0 6px;
}
.t-hub-card__blurb {
    font-size: 13px;
    color: var(--t-ink-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- FAQ (on tool pages) ---------- */
.t-faq {
    margin-top: 40px;
}
.t-faq details {
    background: #fff;
    border: 1px solid var(--t-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
}
.t-faq details[open] {
    border-color: var(--t-orange);
}
.t-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--t-ink);
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.t-faq summary::-webkit-details-marker { display: none; }
.t-faq summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--t-orange);
    transition: transform 0.2s;
}
.t-faq details[open] summary::after {
    content: '−';
}
.t-faq-body {
    margin-top: 10px;
    color: var(--t-ink-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Toast (branded, replaces alert) ---------- */
.t-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--t-ink);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.t-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- Tooltip (branded, per house rule) ---------- */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--t-ink);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 1000;
}
[data-tooltip]:hover::after { opacity: 1; }

/* ---------- Pro gating (Phase 4) ---------- */
.t-pro-chip {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #c4622d, #a85523);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
}
.t-free-chip {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #2d8bc4, #1f6b9e);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
}
.t-free-chip--empty {
    background: linear-gradient(135deg, #8b7355, #5a4f3f);
}
.t-hub-card--pro {
    position: relative;
}
.t-hub-card--pro::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #c4622d, #a85523);
    border-radius: 0 12px 12px 0;
}
.t-quota {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fff9f0, #fef5e9);
    border: 1px solid var(--t-border-soft);
    border-radius: 10px;
    font-size: 13px;
    color: var(--t-ink);
    margin-bottom: 16px;
}
.t-quota-text { font-size: 13px; color: var(--t-ink); }
.t-quota-bar {
    flex: 1 0 100%;
    height: 5px;
    background: #f0e4d1;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 4px;
}
.t-quota-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #c4622d, #a85523);
    border-radius: 99px;
    transition: width .3s;
}

/* Sample output panel (Pro tools) */
.t-sample {
    background: repeating-linear-gradient(
        45deg,
        #fff9f0 0 16px,
        #fef5e9 16px 32px
    );
    border: 1px dashed #ebe2d0;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 14px;
    position: relative;
}
.t-sample__label {
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--t-ink-soft);
    margin-bottom: 10px;
}

/* Modal (branded; replaces native dialogs per house rule) */
.t-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 18, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    animation: t-modal-in 0.18s ease;
}
@keyframes t-modal-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.t-modal {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: t-modal-slide 0.22s cubic-bezier(.4,1.6,.6,1);
}
@keyframes t-modal-slide {
    from { transform: translateY(8px) scale(.97); opacity: 0; }
    to   { transform: translateY(0) scale(1);     opacity: 1; }
}
.t-modal__close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: 0;
    font-size: 24px;
    line-height: 1;
    color: var(--t-ink-soft);
    cursor: pointer;
    padding: 4px 8px;
}
.t-modal__close:hover { color: var(--t-ink); }
.t-modal__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--t-ink);
    margin: 0 0 14px;
    padding-right: 30px;
}
.t-modal__body {
    color: var(--t-ink-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.t-modal__body p { margin: 0 0 10px; }
.t-modal__body p:last-child { margin-bottom: 0; }
.t-modal__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.t-modal__actions .t-btn {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex: 0 1 auto;
}
.t-modal__primary { flex: 0 0 auto; }
@media (max-width: 460px) {
    .t-modal__actions { flex-wrap: wrap; }
    .t-modal__actions .t-btn { flex: 1 1 100%; }
}

/* ---------- SERP preview mock ---------- */
.serp-mock {
    background: #fff;
    border: 1px solid var(--t-border);
    border-radius: 10px;
    padding: 20px 22px;
    font-family: arial, sans-serif;
}
.serp-mock__url {
    color: #202124;
    font-size: 14px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.serp-mock__url i { color: #5f6368; }
.serp-mock__title {
    color: #1a0dab;
    font-size: 20px;
    line-height: 1.3;
    margin: 4px 0;
    font-weight: 400;
    cursor: pointer;
}
.serp-mock__title:hover { text-decoration: underline; }
.serp-mock__desc {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
}
.serp-mock__desc b { font-weight: 700; color: #4d5156; }

.serp-mock--mobile {
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.1);
}
.serp-mock--mobile .serp-mock__title {
    font-size: 18px;
}

/* ---------- OG/Twitter card mocks ---------- */
.og-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.og-card {
    border: 1px solid #dadde1;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.og-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--t-ink-soft);
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', 'DM Mono', monospace;
}
.og-card__img {
    width: 100%;
    aspect-ratio: 1.91 / 1;
    background: #e4e6eb;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8d91;
    font-size: 12px;
}
.og-card__meta {
    padding: 10px 12px;
}
.og-card--fb .og-card__host {
    font-size: 12px;
    text-transform: uppercase;
    color: #606770;
    margin-bottom: 3px;
}
.og-card--fb .og-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    line-height: 1.3;
    margin-bottom: 3px;
}
.og-card--fb .og-card__desc {
    font-size: 14px;
    color: #606770;
    line-height: 1.4;
}
.og-card--tw { border-radius: 16px; }
.og-card--tw .og-card__meta {
    position: relative;
}
.og-card--tw .og-card__title {
    font-size: 15px;
    font-weight: 400;
    color: #0f1419;
    line-height: 1.3;
    margin-bottom: 2px;
}
.og-card--tw .og-card__desc {
    font-size: 14px;
    color: #536471;
    line-height: 1.4;
    margin-bottom: 4px;
}
.og-card--tw .og-card__host {
    font-size: 14px;
    color: #536471;
}
.og-card--li { border-radius: 2px; border-color: rgba(0,0,0,.15); }
.og-card--li .og-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 3px;
}
.og-card--li .og-card__host {
    font-size: 12px;
    color: #00000099;
}
