/*
Theme Name: Fatemeh
Theme URI: https://example.com/
Author: Farzad Bagheri
Author URI: https://farzadbagheri.fr/
Description: Single-page personal site for Dr. Fateme Frootan – synthetic biology & industrial biotech.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fatemeh
*/

/* ====== GLOBAL ====== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #182848 0, #060818 45%, #020308 100%);
    color: #f5f5f7;
}

/* Container for the whole landing page */
.fateme-site {
    min-height: 100vh;
}

.fateme-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

/* ====== TOP NAV ====== */
.fateme-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(22px);
    background: linear-gradient(to right, rgba(3,5,16,0.92), rgba(12,18,40,0.92));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fateme-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fateme-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fateme-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: conic-gradient(from 180deg, #18b2c8, #7a5cff, #ff6fb1, #18b2c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0f1d;
    font-size: 18px;
    font-weight: 700;
}

.fateme-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.fateme-logo-text span:first-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d3f3ff;
}

.fateme-logo-text span:last-child {
    font-size: 11px;
    color: #9ea4c7;
}

.fateme-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
}

.fateme-nav-links a {
    color: #d6dcff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.fateme-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18b2c8, #7a5cff);
    transition: width 0.25s ease-out;
}

.fateme-nav-links a:hover::after {
    width: 100%;
}

.fateme-nav-cta {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(160, 227, 255, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e2f9ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: radial-gradient(circle at top left, rgba(24,178,200,0.22), transparent 60%);
    transition: all 0.2s ease-out;
}

.fateme-nav-cta span {
    font-size: 14px;
}

.fateme-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.6);
}

/* ====== HERO ====== */
.fateme-hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.fateme-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(7,13,30,0.9);
    margin-bottom: 18px;
}

.fateme-badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 10%, #e0fbff 0, #18b2c8 38%, #0c1020 90%);
    box-shadow: 0 0 18px rgba(24,178,200,0.8);
}

.fateme-badge span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a0b0ff;
    font-weight: 500;
}

.fateme-title {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}

.fateme-title span.highlight {
    background: linear-gradient(120deg, #18b2c8, #7a5cff, #ff6fb1);
    -webkit-background-clip: text;
    color: transparent;
}

.fateme-subtitle {
    font-size: 16px;
    color: #c0c4e6;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.fateme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.fateme-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #c8f2ff;
    background: rgba(7,16,36,0.9);
}

.fateme-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.fateme-btn-primary,
.fateme-btn-ghost {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease-out;
}

.fateme-btn-primary {
    background: linear-gradient(120deg, #18b2c8, #7a5cff, #ff6fb1);
    color: #060815;
    border: none;
    box-shadow: 0 18px 40px rgba(10,14,40,0.8);
}

.fateme-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 60px rgba(6,10,30,0.9);
}

.fateme-btn-ghost {
    border: 1px solid rgba(188,205,255,0.26);
    color: #e4e8ff;
    background: rgba(7,13,32,0.9);
}

.fateme-btn-ghost:hover {
    background: rgba(18,26,60,1);
    border-color: rgba(255,255,255,0.4);
}

.fateme-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #9ca4c8;
}

.fateme-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fateme-dot-soft {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #18b2c8, #7a5cff);
}

/* Hero visual */
.fateme-hero-visual {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .fateme-orbit {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 999px;
    border: 1px solid rgba(107,139,255,0.28);
    box-shadow: 0 0 60px rgba(18,117,166,0.4);
    background: radial-gradient(circle at 30% 0, rgba(245,255,255,0.12), transparent 65%),
                radial-gradient(circle at 80% 90%, rgba(111,142,255,0.26), transparent 60%);
    overflow: hidden;
} */

.fateme-orbit{
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  overflow: visible; /* ✅ pills can go outside */
}

/* the actual circle visual stays clipped here */
.fateme-orbit-core{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  overflow: hidden; /* ✅ keep circle clean */
  border: 1px solid rgba(107,139,255,0.28);
  box-shadow: 0 0 60px rgba(18,117,166,0.4);
  background:
    radial-gradient(circle at 30% 0, rgba(245,255,255,0.12), transparent 65%),
    radial-gradient(circle at 80% 90%, rgba(111,142,255,0.26), transparent 60%);
}

.fateme-orbit-core::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:999px;
  border:1px dashed rgba(181,207,255,0.28);
}

/* keep avatar above ring */
.fateme-avatar{ z-index: 2; }

/* pills always on top */
.fateme-orbit-pill{
  z-index: 5;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}


.fateme-orbit::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 1px dashed rgba(181,207,255,0.28);
}

.fateme-avatar {
    position: absolute;
    inset: 34px;
    border-radius: 999px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 0, #fefefe, #dcdfe8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fateme-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* temporary text placeholder */
.fateme-avatar-placeholder {
    text-align: center;
    color: #040612;
    font-size: 13px;
    font-weight: 500;
    padding: 0 16px;
}

/* floating labels around avatar */
.fateme-orbit-pill {
    position: absolute;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 999px;
    border: 1px solid rgba(201,229,255,0.6);
    background: rgba(5,12,32,0.9);
    color: #e4f6ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fateme-orbit-pill span.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #18b2c8, #ff6fb1);
}

.fateme-orbit-pill--top {
    top: 16px;
    left: -6px;
}

.fateme-orbit-pill--right {
    right: -4px;
    bottom: 32px;
}

.fateme-orbit-pill--bottom {
    left: 26%;
    bottom: -10px;
}

/* ====== SECTION GENERIC ====== */
.fateme-section {
    margin-bottom: 80px;
}

.fateme-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.fateme-section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8fa3ff;
    margin-bottom: 6px;
}

.fateme-section-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.fateme-section-sub {
    font-size: 13px;
    color: #9aa1c6;
    max-width: 360px;
}

/* ====== ABOUT ====== */
.fateme-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 26px;
}

.fateme-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #d2d6f4;
}

.fateme-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.fateme-soft-pill {
    font-size: 11px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(9,18,42,0.95);
    border: 1px solid rgba(187,207,255,0.2);
    color: #cfd9ff;
}

.fateme-about-box {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(24,178,200,0.16), transparent 50%),
                rgba(7,12,30,0.95);
    border: 1px solid rgba(148,183,255,0.35);
    font-size: 13px;
    color: #d9e6ff;
}

.fateme-about-box-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a8dfff;
    margin-bottom: 8px;
}

.fateme-timeline {
    margin-top: 14px;
    font-size: 13px;
}

.fateme-timeline-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.fateme-timeline-dot {
    margin-top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #18b2c8, #7a5cff);
}

.fateme-timeline-body span.label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9fbaff;
}

/* ====== GRID HELPERS ====== */
.fateme-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.fateme-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

/* ====== CARDS ====== */
.fateme-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(122,92,255,0.17), transparent 60%),
                rgba(8,13,30,0.96);
    border: 1px solid rgba(145,176,255,0.35);
    box-shadow: 0 18px 40px rgba(0,0,0,0.65);
    font-size: 13px;
    color: #dce3ff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fateme-card-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a8b8ff;
}

.fateme-card-title {
    font-weight: 600;
    font-size: 14px;
}

.fateme-card-list {
    margin: 6px 0 0;
    padding-left: 16px;
    font-size: 12px;
    color: #bfc6ec;
}

.fateme-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.fateme-chip {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(10,16,40,0.9);
    border: 1px solid rgba(189,212,255,0.16);
    color: #e2e6ff;
}

.fateme-tagline {
    font-size: 12px;
    color: #aab3e0;
    margin-top: 4px;
}

.fateme-link {
    font-size: 12px;
    color: #9ae7ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.fateme-link::after {
    content: "↗";
    font-size: 11px;
}

/* ====== CONTACT ====== */
.fateme-contact {
    padding: 24px 22px 22px;
    border-radius: 22px;
    border: 1px solid rgba(164,204,255,0.4);
    background: radial-gradient(circle at top left, rgba(24,178,200,0.2), transparent 55%),
                rgba(6,10,26,0.97);
    box-shadow: 0 22px 60px rgba(0,0,0,0.8);
}

.fateme-contact h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.fateme-contact p {
    margin: 0 0 16px;
    font-size: 18px;
    color: #cfd7ff;
}

.fateme-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.fateme-contact-info {
    font-size: 12px;
    color: #cfd7ff;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .fateme-hero {
        grid-template-columns: 1fr;
    }
    .fateme-hero-visual {
        order: -1;
    }
    .fateme-grid-3 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 720px) {
    .fateme-inner {
        padding-top: 90px;
    }
    .fateme-nav-inner {
        gap: 12px;
    }
    .fateme-nav-links {
        display: none;
    }
    .fateme-title {
        font-size: 32px;
    }
    .fateme-grid-3,
    .fateme-grid-2,
    .fateme-about-grid {
        grid-template-columns: 1fr;
    }
    .fateme-contact-row {
        align-items: flex-start;
    }
}




/* =========================================================
   TYPOGRAPHY OVERRIDES – BIGGER & MORE READABLE
   (desktop focus)
   ========================================================= */

/* Base body text a bit larger everywhere */
body {
    font-size: 17px;
}

/* Desktop / large screens: scale up typography */
@media (min-width: 900px) {

    .fateme-title {
        font-size: 56px;
        line-height: 1.06;
    }

    .fateme-subtitle {
        font-size: 20px;
    }

    /* Section titles + small intro text */
    .fateme-section-title {
        font-size: 26px;
    }

    .fateme-section-sub {
        font-size: 17px;
    }

    /* Main body paragraphs */
    .fateme-about-text {
        font-size: 18px;
    }

    .fateme-about-text p {
        line-height: 1.8;
    }

    /* Meta text under hero */
    .fateme-meta {
        font-size: 15px;
    }

    /* Timeline & box on the right */
    .fateme-about-box {
        font-size: 16px;
    }

    .fateme-timeline {
        font-size: 16px;
    }

    .fateme-timeline-body span.label {
        font-size: 13px;
    }

    /* Cards (Expertise, Work, Talks) */
    .fateme-card,
    .fateme-card p,
    .fateme-card-list {
        font-size: 17px;
    }

    .fateme-card-title {
        font-size: 18px;
    }

    .fateme-tagline {
        font-size: 16px;
    }

    /* Contact block */
    .fateme-contact h3 {
        font-size: 22px;
    }

    .fateme-contact p {
        font-size: 18px;  /* keep large and readable */
    }

    .fateme-contact-info {
        font-size: 16px;
    }

    /* Nav & labels */
    .fateme-nav-links,
    .fateme-nav-links a {
        font-size: 15px;
    }

    .fateme-nav-cta {
        font-size: 13px;
    }

    /* Small pills / tags / chips */
    .fateme-section-kicker,
    .fateme-card-kicker,
    .fateme-soft-pill,
    .fateme-chip,
    .fateme-tag {
        font-size: 13px;
    }
}


/* =========================================================
   SCROLL / MOUSE EFFECTS (minimal + chic)
   ========================================================= */

/* Scroll reveal */
.fateme-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  will-change: opacity, transform, filter;
}
.fateme-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scroll cue under hero */
.fateme-scroll-cue {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  opacity: .95;
}
.fateme-mouse {
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(201,229,255,0.45);
  background: rgba(5,12,32,0.55);
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}
.fateme-mouse::after {
  content: "";
  width: 4px;
  height: 6px;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #18b2c8, #7a5cff, #ff6fb1);
  animation: fateme-scroll-dot 1.35s infinite;
}
@keyframes fateme-scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  18% { opacity: 1; }
  80% { opacity: 1; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}
.fateme-scroll-text {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a0b0ff;
}

/* Tiny parallax on hero orbit */
.fateme-orbit {
  transition: transform .18s ease-out;
}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce) {
  .fateme-reveal { opacity: 1; transform: none; filter: none; }
  .fateme-mouse::after { animation: none; opacity: 1; }
  .fateme-orbit { transition: none; }
}



/* =========================================================
   LAYOUT WIDTH OVERRIDES – USE MORE SCREEN SPACE
   ========================================================= */

.fateme-inner {
  max-width: 1720px;     /* was 1520 */
  padding-left: 48px;    /* more breathing space but less empty area */
  padding-right: 48px;
}

.fateme-nav-inner {
  max-width: 1720px;     /* was 1120 -> this is why header looked too narrow */
  padding-left: 48px;
  padding-right: 48px;
}

/* On very large screens, go even wider */
@media (min-width: 1500px) {
  .fateme-inner,
  .fateme-nav-inner {
    max-width: 1840px;
  }
}


/* =========================================================
   TEXT SIZE OVERRIDES – BETTER READABILITY
   ========================================================= */

/* Make typography slightly fluid */
body {
  font-size: clamp(17px, 1.05vw, 19px);
}

/* Paragraph-like text */
.fateme-subtitle { font-size: clamp(18px, 1.1vw, 21px); }
.fateme-about-text { font-size: clamp(18px, 1.05vw, 20px); }
.fateme-about-box,
.fateme-timeline { font-size: clamp(15px, 0.95vw, 17px); }

.fateme-card { font-size: clamp(15px, 0.95vw, 17px); }
.fateme-card-title { font-size: clamp(17px, 1.05vw, 19px); }
.fateme-card-list { font-size: clamp(14px, 0.9vw, 16px); }
.fateme-tagline { font-size: clamp(15px, 0.95vw, 17px); }

/* Small UI pills & labels (still readable) */
.fateme-tag,
.fateme-chip,
.fateme-soft-pill,
.fateme-card-kicker,
.fateme-section-kicker,
.fateme-badge span {
  font-size: 13px;
}


/* =========================================================
   BLOG STYLES
   ========================================================= */

.fateme-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 960px) {
  .fateme-blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .fateme-blog-grid { grid-template-columns: 1fr; }
}

.fateme-post-card {
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(122,92,255,0.17), transparent 60%),
              rgba(8,13,30,0.96);
  border: 1px solid rgba(145,176,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.fateme-post-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.fateme-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.fateme-post-card:hover .fateme-post-thumb img {
  transform: scale(1.07);
}

.fateme-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab3e0;
  background: rgba(10,16,40,0.9);
  font-size: 14px;
}

.fateme-post-body {
  padding: 16px 16px 18px;
}

.fateme-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a8b8ff;
  letter-spacing: .06em;
}

.fateme-post-dot { opacity: .8; }

.fateme-post-title {
  margin: 10px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.fateme-post-title a {
  color: #e9edff;
  text-decoration: none;
}

.fateme-post-title a:hover { text-decoration: underline; }

.fateme-post-excerpt {
  margin: 0 0 14px;
  color: #cfd7ff;
  font-size: 15px;
  line-height: 1.7;
}

.fateme-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Single post */
.fateme-single {
  max-width: 980px;
  margin: 0 auto;
}

.fateme-single-meta {
  font-size: 14px;
  color: #a8b8ff;
  margin-bottom: 12px;
}

.fateme-single-title {
  font-size: clamp(28px, 2.3vw, 44px);
  margin: 0 0 18px;
  line-height: 1.1;
}

.fateme-single-hero img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(145,176,255,0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

.fateme-single-content {
  margin-top: 18px;
  color: #dce3ff;
  line-height: 1.85;
  font-size: 17px;
}

.fateme-single-content h2,
.fateme-single-content h3 {
  margin-top: 26px;
}

.fateme-single-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fateme-single-back {
  margin-top: 22px;
}

/* Pagination */
.fateme-pagination {
  margin-top: 28px;
}
.fateme-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 8px;
  border-radius: 999px;
  border: 1px solid rgba(188,205,255,0.26);
  background: rgba(7,13,32,0.9);
  color: #e4e8ff;
  text-decoration: none;
  font-size: 13px;
}
.fateme-pagination .page-numbers.current {
  background: linear-gradient(120deg, #18b2c8, #7a5cff, #ff6fb1);
  color: #060815;
  border: none;
}


/* .fateme-logo {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
} */
