/* ============================================================
   FADING TO DUST · INDEX · KATEGORIE 1 · CITY PULSE · v2
   ============================================================ */

/* ── WRAPPER ── */
.cat {
    border: 1px solid #e8d5e8;
    border-radius: 0;
    margin-bottom: 24px;
    overflow: hidden;
    background: #fdf5fb;
    box-shadow: 0 4px 32px rgba(100,60,120,0.07);
}

/* ── HEADER ── */
.cat-header {
    position: relative;
    display: flex; align-items: center; gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #e8d5e8;
    background: linear-gradient(100deg, rgba(255,221,224,0.45) 0%, rgba(253,245,251,0.0) 60%);
    overflow: hidden;
}

.grad-line {
    width: 2px; height: 48px;
    background: linear-gradient(to bottom, #ffdde0, #806c9a);
    border-radius: 2px; flex-shrink: 0;
}

.cat-header-bg-text {
    position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    font-family: "DMSerifDisplay-Regular", serif;
    font-style: italic; font-size: 52px; color: #b8a5d0;
    opacity: 0.1; white-space: nowrap; pointer-events: none; line-height: 1;
}

.cat-num {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 40px; color: #b8a5d0; line-height: 1;
}

.cat-title-wrap { position: relative; z-index: 1; }

.cat-name {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 18px; color: #3a2a42; letter-spacing: 0.02em;
}

.cat-sub {
    font-size: 10px; color: #8a7090;
    letter-spacing: 0.1em; margin-top: 3px; text-transform: uppercase;
}

/* ── ZEILE 1: Ticker + Willkommen ── */
.cp-row1 {
    display: grid;
    grid-template-columns: 40% 1px 1fr;
    min-height: 180px;
    border-bottom: 1px solid #e8d5e8;
    gap: 5px;
    padding: 5px;
}

.cp-row1-divider { background: #e8d5e8; }

/* ── TICKER ── */
.cp-ticker {
    padding: 22px 24px;
    background: #fff8fb;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
}

.cp-ticker-icon {
    position: absolute;
    right: -30px; top: 50%; transform: translateY(-50%);
    font-size: 160px;
    color: #3a2a42;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.cp-ticker-label {
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
    color: #b8a5d0; position: relative; z-index: 1;
}

.cp-ticker-wrap {
    overflow: hidden; position: relative; z-index: 1;
    border-top: 1px solid #e8d5e8;
    border-bottom: 1px solid #e8d5e8;
    padding: 7px 0;
}

.cp-ticker-content {
    display: inline-block; white-space: nowrap;
    animation: cp-ticker 20s linear infinite;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 12px; color: #8a7090;
}

@keyframes cp-ticker {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.cp-ticker-items {
    display: flex; flex-direction: column; gap: 8px;
    position: relative; z-index: 1;
}

.cp-ticker-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 12px;
    color: #4a3550; line-height: 1.5;
}

.cp-ticker-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: #b8a5d0; flex-shrink: 0; margin-top: 6px;
}

/* ── WILLKOMMEN ── */
.cp-welcome {
    padding: 22px 26px;
    background: linear-gradient(170deg, #fff8fb 0%, #f3e8f5 100%);
    display: flex; flex-direction: column; gap: 18px;
}

.col-section { display: flex; flex-direction: column; }

.col-label {
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase;
    color: #b8a5d0; margin-bottom: 8px; font-weight: 500;
}

.welcome-text {
       font-size: 11px;
    line-height: 1.85;
    color: #4a3550;
    text-align: justify;
    padding: 10px 10px 0px 10px;
}

.welcome-text strong { font-style: normal; font-weight: 600; color: #3a2a42; }

.col-sep { height: 1px; background: linear-gradient(to right, #e8d5e8, transparent); }

.ql-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 8px; }

.ql-grid a {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 8px; border-radius: 0;
    font-family: 'Jost', sans-serif; font-size: 11.5px;
    color: #4a3550; text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.ql-grid a:hover { background: rgba(156,122,170,0.08); color: #9d7aaa; }

.ql-pip {
    width: 3px; height: 10px; border-radius: 2px;
    background: linear-gradient(to bottom, #ffdde0, #806c9a);
    flex-shrink: 0; opacity: 0.7;
}

/* ── ZEILE 2: Subforen-Cards ── */
.cp-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
}

/* ── SUBFORUM CARD ── */
.cp-subforum-card {
   position: relative;
    border: 1px solid #e8d5e8;
    margin: 10px 5px;
}

.cp-subforum-card:last-child { border-right: none; }

.cp-subforum-top {
    height: 110px; position: relative;
    display: flex; align-items: center; justify-content: center;
}

.cp-subforum-cat-label {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 4px 14px;
    background: rgba(157,122,170,0.85); color: #fdf6f0;
    white-space: nowrap; z-index: 2;
}

.cp-subforum-avatar-wrap {
    position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
    z-index: 1; width: 64px; height: 64px;
}

.cp-subforum-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    overflow: hidden;
    background: url(../../../images_dust/default_avatar.png) center/cover,
                linear-gradient(135deg, #ffdde0, #b8a5d0);
    border: 2px solid rgba(255,221,224,0.5);
}

.cp-subforum-avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.cp-subforum-avatar img[src=""],
.cp-subforum-avatar img:not([src]) { display: none; }

/* ── SUBFORUM BOTTOM ── */
.cp-subforum-bottom {
    background: #fff8fb;
    padding: 42px 16px 16px;
    position: relative; text-align: center;
}

/* border-top links & rechts – standard */
.cp-subforum-bottom::before {
    content: ''; position: absolute; top: 0; left: 0;
    right: calc(50% + 38px); height: 1px; background: #d4bfe0;
}
.cp-subforum-bottom::after {
    content: ''; position: absolute; top: 0;
    left: calc(50% + 38px); right: 0; height: 1px; background: #d4bfe0;
}

/* border-top on */
.cp-subforum-bottom.cp-on::before,
.cp-subforum-bottom.cp-on::after { background: #6a3d8a; }

/* border-bottom – off: blass, on: dunkel */
.cp-subforum-bottom.cp-off { border-bottom: 10px solid #d4bfe0; }
.cp-subforum-bottom.cp-on  { border-bottom: 10px solid #6a3d8a; }

/* ── HALBKREIS ── */
.cp-subforum-arc {
    position: absolute; top: -38px; left: 50%; transform: translateX(-50%);
    width: 76px; height: 38px;
    border: 1.5px solid #d4bfe0; border-bottom: none;
    border-radius: 38px 38px 0 0; z-index: 9;
}

.cp-subforum-arc.cp-on  { border-color: #6a3d8a; }
.cp-subforum-arc.cp-off { border-color: #d4bfe0; }

.cp-subforum-name {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 15px; color: #3a2a42; margin-bottom: 5px;
}

.cp-subforum-name a { color: inherit; text-decoration: none; }
.cp-subforum-name a:hover { color: #9d7aaa; }

.cp-subforum-desc {
    font-size: 11px;
    color: #8a7090;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
    padding: 0 20px;
	max-height: 80px;
    overflow: auto;
}

.cp-subforum-footer {
    margin-top: 8px; padding-top: 10px;
    border-top: 1px solid #e8d5e8;
    display: flex; align-items: center;
    justify-content: space-between; gap: 8px;
}

.cp-subforum-lastpost { text-align: left; flex: 1; font-size: 11px; color: #8a7090; }
.cp-subforum-lastpost .lastpost-title { font-family: "DMSerifDisplay-Regular", serif; font-size: 12px; color: #3a2a42; }
.cp-subforum-lastpost .lastpost-meta { font-size: 10px; color: #8a7090; margin-top: 1px; }
.cp-subforum-lastpost a { color: #3a2a42; text-decoration: none; }
.cp-subforum-lastpost a:hover { color: #9d7aaa; }

.cp-subforum-stats { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; flex-shrink: 0; }

.cp-subforum-stat-icon {
    display: flex; align-items: center; gap: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic; color: #9d7aaa;
}

.cp-subforum-stat-icon svg { color: #b8a5d0; flex-shrink: 0; }

.gesuch-chara-age {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,221,224,0.55);
    margin-top: 2px;
}

.gesuch-kurz {
    padding: 20px;
    font-size: 11px;
    color: #8a7090;
    line-height: 1.5;
    text-align: justify;
    border-bottom: 1px solid #e8d5e8;
    min-height: 200px;
    overflow: auto;
}

/* ============================================================
   FADING TO DUST · INDEX · KATEGORIE 2 · VERBINDUNGEN & GESICHTER
   ============================================================ */

/* ── Beschreibung Kat 2 Cards ── */
.cp-subforum-desc_chara {
    font-size: 11px;
    color: #8a7090;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
    padding: 0 20px;
    max-height: 60px;
    overflow: auto;
}

/* Kat 2 Cards kompakter */
.g2-row .cp-subforum-bottom {
    padding: 42px 16px 10px;
}

/* ── ZEILE 1 & 3: Forum-Rows ── */
.g2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.g2-row-top {
    border-bottom: 1px solid #e8d5e8;
}

.g2-row-bottom {
    border-top: 1px solid #e8d5e8;
}

.g2-forum-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 22px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.g2-forum-item:hover {
    background: rgba(184,165,208,0.07);
}

.g2-forum-item + .g2-forum-item {
    border-left: 1px solid #e8d5e8;
}

.g2-forum-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.g2-forum-name {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 16px;
    color: #3a2a42;
}

.g2-forum-desc {
    font-size: 11px;
    color: #8a7090;
}

.g2-forum-last {
    font-size: 10px;
    color: #8a7090;
    margin-top: 2px;
}

.g2-forum-last span {
    color: #9d7aaa;
    font-weight: 500;
}

.g2-forum-right {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.g2-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.g2-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #9d7aaa;
    line-height: 1;
}

.g2-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a7090;
    margin-top: 2px;
}

/* ── ZEILE 2: Cards ── */
.g2-cards {
    padding: 18px 22px;
    border-bottom: 1px solid #e8d5e8;
}

.gesuche-label {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b8a5d0;
    margin-bottom: 12px;
    font-weight: 500;
}

.gesuche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* ── Gesuch-Card ── */
.gesuch-card {
    border: 1px solid #e8d5e8;
    border-radius: 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gesuch-card:hover {
    border-color: #b8a5d0;
    box-shadow: 0 4px 20px rgba(157,122,170,0.12);
}

.gesuch-img {
    height: 140px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.gesuch-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40,20,50,0.92) 0%, rgba(40,20,50,0.15) 55%, transparent 100%);
}

/* Fraktion-Badge */
.gesuch-fraktion {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    font-weight: 500;
}

.f-pulse    { background: rgba(130,90,160,0.9);  color: #f0e8ff; }
.f-echo     { background: rgba(50,80,120,0.9);   color: #e0eeff; }
.f-instance { background: rgba(60,110,80,0.9);   color: #e0ffe8; }
.f-core     { background: rgba(140,70,50,0.9);   color: #ffe8e0; }
.f-signal   { background: rgba(110,100,40,0.9);  color: #fff8e0; }
.f-anomaly  { background: rgba(50,50,80,0.9);    color: #e8e8ff; }

.gesuch-img-label {
    position: relative;
    z-index: 2;
    padding: 8px 10px;
    width: 100%;
}

.gesuch-chara-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: #fdf6f0;
    line-height: 1.2;
}

.gesuch-chara-role {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,221,224,0.6);
    margin-top: 3px;
}

.gesuch-chara-age {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,221,224,0.45);
    margin-top: 2px;
}

.gesuch-kurz {
   font-size: 11px;
    color: #8a7090;
    line-height: 1.5;
    text-align: justify;
    border-bottom: 1px solid #e8d5e8;
    padding: 15px;
    max-height: 200px;
    overflow: auto;
}

/* Footer */
.gesuch-footer {
    padding: 6px 10px;
    border-top: 1px solid #e8d5e8;
    font-size: 10px;
    color: #8a7090;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,221,224,0.15) 0%, transparent 100%);
}

.gesuch-status {
    padding: 2px 7px;
    font-size: 9px;
    letter-spacing: 0.06em;
}

.s-frei         { background: rgba(120,180,120,0.12); color: #4a8a4a; }
.s-reserviert   { background: rgba(180,150,80,0.12);  color: #8a6a20; }
.s-teilvergeben { background: rgba(157,122,170,0.12); color: #9d7aaa; }

/* ============================================================
   FADING TO DUST · INDEX · KATEGORIE 3 · INPLAYSZENEN
   ============================================================ */

/* ── TAB NAV ── */
.inplay-tab-nav {
    background: #e8dde5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #d4c5d0;
    border-bottom: 2px solid #c9a8b2;
}

.inplay-tab-btn {
    flex: 1;
    padding: 14px 22px;
    border: none; background: none; cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 300;
    color: #9b7080;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.inplay-tab-btn:hover { color: #8b5e6e; }
.inplay-tab-btn.active { color: #8b5e6e; border-bottom-color: #8b5e6e; }

/* ── TAB PANELS ── */
.inplay-panel { display: none; }
.inplay-panel.active { display: block; }

/* ── HERO ── */
.inplay-hero {
    position: relative; height: 280px; overflow: hidden;
}

/* Hintergrundbilder per fid */
.inplay-fid-12 .inplay-hero { background: url(../../../images_dust/inplay_seoul.png) center/cover no-repeat; }
.inplay-fid-13 .inplay-hero { background: url(../../../images_dust/inplay_busan.png) center/cover no-repeat; }
.inplay-fid-14 .inplay-hero { background: url(../../../images_dust/inplay_daegu.png) center/cover no-repeat; }
.inplay-fid-15 .inplay-hero { background: url(../../../images_dust/inplay_other.png) center/cover no-repeat; }
.inplay-fid-29 .inplay-hero { background: url(../../../images_dust/inplay_communication.png) center/cover no-repeat; }

/* Ausblenden nach unten */
.inplay-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to top, #fdf5fb 0%, transparent 100%);
    z-index: 1;
}

/* ── AVATAR + TITEL links, 40px von oben ── */
.inplay-forum-left {
    position: absolute;
    top: 70px;
    left: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inplay-avatar-wrap { width: 44px; height: 44px; flex-shrink: 0; }

.inplay-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    overflow: hidden;
    background: url(../../../images_dust/default_avatar.png) center/cover,
                linear-gradient(135deg, #ffdde0, #b8a5d0);
    border: 1.5px solid rgba(184,165,208,0.7);
}

.inplay-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inplay-avatar img[src=""],
.inplay-avatar img:not([src]) { display: none; }

.inplay-forum-title {
    font-family: "DMSerifDisplay-Regular", serif;
    font-style: italic;
    font-size: 42px;
    color: #806c9a;
    margin-left: 30px;
}

.inplay-forum-meta {
   margin-top: 4px;
    margin-left: 50px;
    font-size: 11px;
}

.inplay-forum-meta a { color: rgba(255,221,224,0.95); text-decoration: none; }

/* ── INFO-BLOCK rechts oben, hell ── */
.inplay-info-overlay {
    position: absolute;
	top: 20px;
    right: 20px;
    z-index: 1;
    width: 40%;
    background: rgba(253,245,251,0.88);
    border-left: 2px solid rgba(157,122,170,0.3);
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 12px;
}

.inplay-stats { display: flex; gap: 20px; }

.inplay-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 26px;
    color: #9d7aaa; line-height: 1;
}

.inplay-stat-label {
    font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
    color: #8a7090; margin-top: 2px;
}

.inplay-desc {
    font-size: 11px;
    color: #8a7090;
    border-top: 1px solid #e8d5e8;
    padding-top: 10px;
    text-align: justify;
    padding: 10px;
    height: 120px;
    overflow: auto;
}

/* ── LOCATIONS unten rechts ── */
.inplay-locations {
   position: absolute;
    bottom: 18px;
    right: 60px;
    z-index: 2;
    display: flex;
    gap: 0;
    justify-content: flex-end;
}

.inplay-loc-tag {
    font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0 12px;
    border-right: 1px solid rgba(255,221,224,0.12);
}

.inplay-loc-tag:last-child { border-right: none; padding-right: 0; }

.inplay-loc-tag a {
    color: #806c9a; text-decoration: none;
    transition: color 0.15s;
}

.inplay-loc-tag a:hover { color: rgba(255,221,224,0.9); }

.inplay-tab-btn:hover {
    color: #8b5e6e;
    background: none;
}

/* Avatar größer */
.inplay-avatar-wrap { width: 56px; height: 56px; }
.inplay-avatar { width: 80px; height: 80px; }

/* Lastpost Titel + Poster: schwarz statt orange */
.inplay-forum-meta a,
.inplay-forum-meta { color: #806c9a !important; }

/* ============================================================
   FADING TO DUST · INDEX · KATEGORIE 4 · COMMUNITY
   ============================================================ */

/* ── ZEILE 1: 3 Cards ── */
.comm-row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px 5px 0;
}

/* ── ZEILE 2: Archiv volle Breite ── */
.comm-row2 {
    padding: 0 5px 5px;
    margin-top: 5px;
}

/* ── CARD ── */
.comm-card {
    position: relative; overflow: hidden;
    background: #fff8fb; border: 1px solid #e8d5e8;
    padding: 20px 18px 16px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 120px;
}

/* on/off Streifen unten */
.comm-card.cp-on  { border-bottom: 4px solid #6a3d8a; }
.comm-card.cp-off { border-bottom: 4px solid #d4bfe0; }

/* Großes Icon Hintergrund */
.comm-card-icon {
    position: absolute; right: -20px; bottom: -20px;
    width: 110px; height: 110px;
    color: #3a2a42; opacity: 0.05;
    pointer-events: none;
}

.comm-card-icon svg { width: 110px; height: 110px; }

.comm-card-label {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 16px; color: #3a2a42;
    position: relative; z-index: 1;
}

.comm-card-desc {
    font-size: 11px; color: #8a7090;
    line-height: 1.5; text-align: justify;
    padding: 0 0 4px;
    position: relative; z-index: 1;
}

.comm-card-footer {
    margin-top: auto; padding-top: 10px;
    border-top: 1px solid #e8d5e8;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    position: relative; z-index: 1;
}

.comm-card-lastpost { font-size: 11px; color: #8a7090; flex: 1; }
.comm-card-lastpost a { color: #3a2a42; text-decoration: none; }
.comm-card-lastpost a:hover { color: #9d7aaa; }

.comm-card-stats { display: flex; gap: 10px; flex-shrink: 0; }

.comm-stat {
    display: flex; align-items: center; gap: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; font-style: italic; color: #9d7aaa;
}

.comm-stat svg { color: #b8a5d0; }

/* ── ARCHIV volle Breite ── */
.comm-archiv {
    position: relative; overflow: hidden;
    background: linear-gradient(100deg, rgba(255,221,224,0.2) 0%, #fff8fb 60%);
    border: 1px solid #e8d5e8;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.comm-archiv.cp-on  { border-bottom: 4px solid #6a3d8a; }
.comm-archiv.cp-off { border-bottom: 4px solid #d4bfe0; }

.comm-archiv-icon {
    position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
    width: 90px; height: 90px;
    color: #3a2a42; opacity: 0.05; pointer-events: none;
}

.comm-archiv-icon svg { width: 90px; height: 90px; }

.comm-archiv-left {
    display: flex; flex-direction: column; gap: 4px;
    position: relative; z-index: 1; flex: 1;
}

.comm-archiv-label {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 18px; color: #3a2a42;
}

.comm-archiv-desc { font-size: 11px; color: #8a7090; }

.comm-archiv-lastpost { font-size: 11px; color: #8a7090; margin-top: 4px; }
.comm-archiv-lastpost a { color: #3a2a42; text-decoration: none; }
.comm-archiv-lastpost a:hover { color: #9d7aaa; }

.comm-archiv-right {
    display: flex; gap: 24px; flex-shrink: 0;
    position: relative; z-index: 1;
}

.comm-archiv-stat { text-align: center; }

.comm-archiv-val {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 28px;
    color: #9d7aaa; line-height: 1;
}

.comm-archiv-label-sm {
    font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase;
    color: #8a7090; margin-top: 2px;
}

.cp-subforum-bg-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 100px;
    color: #3a2a42;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.cp-subforum-bottom {
    overflow: hidden;
}

/* ============================================================
   FADING TO DUST · FORUMBIT DEPTH2 · DEFAULT (alle else-fids)
   ============================================================ */

.ftd-subrow {
    display: flex; align-items: center; gap: 16px;
    background: #fff8fb; border: 1px solid #e8d5e8;
    border-left: 4px solid #b8a5d0;
    padding: 12px 18px;
    margin-bottom: 2px;
    position: relative; overflow: hidden;
    transition: border-color 0.15s;
}

.ftd-subrow:hover { border-left-color: #9d7aaa; }

.ftd-subrow.cp-on { border-left-color: #6a3d8a; }
.ftd-subrow.cp-off { border-left-color: #b8a5d0; }

/* on/off Punkt */
.ftd-subrow-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.cp-dot-on  { background: #6a3d8a; }
.cp-dot-off { background: #d4bfe0; }

/* Name */
.ftd-subrow-name {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 16px; color: #3a2a42;
    min-width: 130px; flex-shrink: 0;
}
.ftd-subrow-name a { color: inherit; text-decoration: none; }
.ftd-subrow-name a:hover { color: #9d7aaa; }

/* Beschreibung */
.ftd-subrow-desc {
    flex: 1; font-size: 11px; color: #8a7090; line-height: 1.5;
}

/* Stats */
.ftd-subrow-stats {
    display: flex; gap: 14px; flex-shrink: 0;
}

.ftd-subrow-stat {
    display: flex; align-items: center; gap: 5px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; color: #9d7aaa;
}

.ftd-subrow-stat svg { color: #b8a5d0; }

/* Lastpost */
.ftd-subrow-lastpost {
    font-size: 10px; color: #8a7090;
    min-width: 150px; text-align: right; flex-shrink: 0;
}

.ftd-subrow-lastpost a { color: #3a2a42; text-decoration: none; }
.ftd-subrow-lastpost a:hover { color: #9d7aaa; }

/* Subforen-Wrapper auf forumdisplay Seite */
.ftd-subforums-wrap {
    display: flex; flex-direction: column; gap: 2px;
    margin-bottom: 16px;
}

/* ============================================================
   FADING TO DUST · FORUMBIT DEPTH2 · DEFAULT
   ============================================================ */

/* Subforen Container mit Header */
.ftd-subforums-container {
    border: 1px solid #e8d5e8;
    background: #fdf5fb;
    margin-bottom: 16px;
    overflow: hidden;
}

.ftd-subforums-header {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 20px;
    background: linear-gradient(100deg, rgba(255,221,224,0.45) 0%, rgba(253,245,251,0.0) 60%);
    border-bottom: 1px solid #e8d5e8;
}

.ftd-subforums-title {
    font-family: "DMSerifDisplay-Regular", serif;
    font-style: italic; font-size: 16px; color: #3a2a42;
}

.ftd-subforums-wrap {
    display: flex; flex-direction: column; gap: 10px;
    padding: 10px;
}

/* ── SUBFORUM ROW: Variante A ── */
.ftd-subrow {
    display: flex; align-items: stretch;
    background: #fff8fb; border: 1px solid #e8d5e8;
    overflow: hidden; position: relative;
}

.ftd-subrow.cp-on  { border-top: 2px solid #6a3d8a; }
.ftd-subrow.cp-off { border-top: 2px solid #d4bfe0; }

/* Linker Akzentblock mit Zahl */
.ftd-subrow-accent {
    width: 70px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255,221,224,0.6), rgba(184,165,208,0.4));
    border-right: 1px solid #e8d5e8;
    display: flex; align-items: center; justify-content: center;
}

.ftd-subrow-num {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 32px; color: #b8a5d0; line-height: 1;
}

.cp-on .ftd-subrow-num { color: #6a3d8a; }

/* Body: Name + Beschreibung */
.ftd-subrow-body {
    flex: 1; padding: 10px 16px;
    display: flex; flex-direction: column; gap: 5px;
}

.ftd-subrow-name {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 17px; color: #3a2a42;
}
.ftd-subrow-name a { color: inherit; text-decoration: none; }
.ftd-subrow-name a:hover { color: #9d7aaa; }

.ftd-subrow-desc { font-size: 11px; color: #8a7090; line-height: 1.5; }

/* Rechts: Stats + Lastpost */
.ftd-subrow-right {
    padding: 10px 16px;
    border-left: 1px solid #e8d5e8;
    display: flex; flex-direction: column; gap: 6px;
    align-items: flex-end; justify-content: center;
    flex-shrink: 0;
}

.ftd-subrow-stats { display: flex; gap: 14px; }

.ftd-subrow-stat {
    display: flex; align-items: center; gap: 5px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; color: #9d7aaa;
}
.ftd-subrow-stat svg { color: #b8a5d0; }

.ftd-subrow-lastpost {
    font-size: 10px; color: #8a7090; text-align: right;
}
.ftd-subrow-lastpost a { color: #3a2a42; text-decoration: none; }
.ftd-subrow-lastpost a:hover { color: #9d7aaa; }