/* Voith Partner Plugin – Frontend Styles */

#vp-wrap { font-family: 'Poppins', 'Montserrat', sans-serif; max-width: 1200px; margin: 0 auto; padding: 0 0 48px; }

/* CONTROLS */
.vp-controls { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.vp-search-wrap { flex: 1; min-width: 200px; position: relative; }
.vp-search-wrap input { width: 100%; background: #0F1B2C; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #F5F7FB; font-family: 'Poppins', sans-serif; font-size: 14px; padding: 12px 16px 12px 42px; outline: none; transition: border-color .2s; box-sizing: border-box; }
.vp-search-wrap input:focus { border-color: rgba(237,112,41,0.5); }
.vp-search-wrap input::placeholder { color: rgba(245,247,251,0.55); font-size: 13px; }
.vp-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 15px; opacity: .4; pointer-events: none; }
#vp-branch { background: #0F1B2C; border: 1px solid rgba(255,255,255,0.1); color: #F5F7FB; font-family: 'Poppins', sans-serif; font-size: 13px; padding: 12px 16px; border-radius: 10px; outline: none; cursor: pointer; width: 100%; box-sizing: border-box; }
.vp-count { font-size: 13px; color: rgba(245,247,251,0.5); white-space: nowrap; }
.vp-count span { color: #ED7029; font-weight: 600; }

/* A-Z */
.vp-az {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 32px;
    padding: 14px 18px;
    background: #0F1B2C;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
.vp-az-btn {
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 7px; border: none;
    background: transparent;
    color: rgba(245,247,251,0.4);
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
    cursor: pointer; transition: all .15s;
    display: flex; align-items: center; justify-content: center;
}
.vp-az-btn:hover { background: rgba(255,255,255,0.06); color: #F5F7FB; }
.vp-az-btn.active { background: #ED7029; color: #08182B; }
.vp-az-btn.disabled { opacity: .2; cursor: default; pointer-events: none; }
.vp-az-all { width: auto; padding: 0 12px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }

/* LETTER GROUP */
.vp-letter-group { margin-bottom: 40px; }
.vp-letter-label { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; color: #ED7029; text-transform: uppercase; letter-spacing: 3px; padding-bottom: 10px; border-bottom: 1px solid rgba(237,112,41,0.2); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.vp-letter-label::after { content: ''; flex: 1; height: 1px; background: rgba(237,112,41,0.12); }

/* GRID */
.vp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }

/* CARD */
.vp-card { background: #0F1B2C; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, transform .2s; box-sizing: border-box; min-width: 0; }
.vp-card:hover { border-color: rgba(237,112,41,0.35); transform: translateY(-2px); color: inherit; text-decoration: none; }
.vp-card-top { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }

/* LOGO */
.vp-logo { width: 72px; height: 72px; min-width: 72px; border-radius: 10px; background: #fff; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; box-sizing: border-box; }
.vp-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; box-sizing: border-box; }
.vp-logo-bg-light { background:#fff; }
.vp-logo-bg-dark { background:#08182B; border-color:rgba(237,112,41,0.18); }
.vp-logo-bg-none { background:transparent; border-color:rgba(255,255,255,0.08); }
.vp-logo-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }

/* NAME */
.vp-info { flex: 1; min-width: 0; overflow: hidden; }
.vp-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: #F5F7FB; line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }

/* KATEGORIE-BADGE: outline only — klar als Branche erkennbar, nicht als Auszeichnung */
.vp-branch {
    display: inline-block;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: rgba(245,247,251,0.55);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 3px 10px;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.5;
}

/* BADGE ROW: Auszeichnungen unter dem Info-Block */
.vp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.vp-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    border-radius: 100px;
    padding: 3px 10px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}
.vp-badge-item .vp-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
}
.vp-badge-empfohlen   { color: #b45309; background: rgba(180,83,9,0.12);   border: 1px solid rgba(180,83,9,0.3); }
.vp-badge-persoenlich { color: #ED7029; background: rgba(237,112,41,0.12); border: 1px solid rgba(237,112,41,0.35); }

/* DESC */
.vp-desc { font-size: 13px; color: rgba(245,247,251,0.65); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* CARD FOOTER: aufgeräumt zweizeilig */
.vp-card-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.vp-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}
.vp-url {
    font-size: 11px; color: rgba(245,247,251,0.3);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    flex: 1; min-width: 0;
}
.vp-plz-city {
    font-size: 11px; color: rgba(245,247,251,0.35);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    flex: 1; min-width: 0;
}
.vp-arrow { font-size: 12px; font-weight: 700; color: #ED7029; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.5px; }

/* EMPTY */
.vp-empty { text-align: center; padding: 60px 20px; color: rgba(245,247,251,0.5); }
.vp-empty span { font-size: 32px; display: block; margin-bottom: 12px; }

/* CTA */
.vp-cta { background: #0F1B2C; border: 1px solid rgba(237,112,41,0.2); border-top: 2px solid #ED7029; border-radius: 14px; padding: 36px 32px; text-align: center; margin-top: 48px; }
.vp-cta h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: #F5F7FB; margin-bottom: 10px; }
.vp-cta p { font-size: 14px; color: rgba(245,247,251,0.65); line-height: 1.75; max-width: 480px; margin: 0 auto 22px; }
.vp-btn { display: inline-flex; align-items: center; gap: 8px; background: #ED7029; color: #08182B !important; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 28px; border-radius: 100px; text-decoration: none !important; transition: opacity .2s; }
.vp-btn:hover { opacity: .88; color: #08182B !important; text-decoration: none !important; }

/* RESPONSIVE */
@media (max-width: 600px) {
    #vp-wrap { overflow-x: hidden; }
    .vp-controls { flex-direction: column; align-items: stretch; }
    .vp-az { gap: 4px; padding: 10px; }
    .vp-az-btn { width: 30px; height: 30px; font-size: 11px; border-radius: 6px; }
    .vp-az-all { width: auto; padding: 0 10px; }
    .vp-grid { grid-template-columns: 1fr; }
    .vp-cta { padding: 24px 20px; }
}
@media (max-width: 400px) {
    .vp-az-btn { width: 26px; height: 26px; font-size: 10px; border-radius: 5px; }
    .vp-az { gap: 3px; padding: 8px; }
}

/* REGISTRATION FORM */
.vp-request-form { max-width: 640px; margin: 0 auto; }
.vp-form { display: flex; flex-direction: column; gap: 18px; }
.vp-form-row { display: flex; flex-direction: column; gap: 6px; }
.vp-form-row label, .vp-form-row label * { font-size: 13px; font-weight: 600; color: #F5F7FB !important; font-family: 'Poppins', sans-serif; display: block; }
.vp-form-row label a { color: #ED7029 !important; text-decoration: underline !important; display: inline !important; }
.vp-form-row input, .vp-form-row select, .vp-form-row textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #F5F7FB !important; font-family: 'Poppins', sans-serif; font-size: 14px; padding: 12px 16px; outline: none; width: 100%; transition: border-color .2s; box-sizing: border-box; }
.vp-form-row input:focus, .vp-form-row select:focus, .vp-form-row textarea:focus { border-color: rgba(237,112,41,0.5); }
.vp-form-row input::placeholder, .vp-form-row textarea::placeholder { color: rgba(245,247,251,0.3); }
.vp-form-note { font-size: 12px; color: rgba(245,247,251,0.4); margin-top: 8px; font-family: 'Poppins', sans-serif; }
.vp-form-success { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); border-radius: 10px; padding: 16px 20px; font-size: 14px; color: #86efac; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.vp-form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: 10px; padding: 16px 20px; font-size: 14px; color: #fca5a5; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.vp-form-row-2col { display: grid !important; grid-template-columns: 140px 1fr; gap: 12px; }
.vp-form-row-2col label { font-size: 13px; font-weight: 600; color: #F5F7FB !important; display: block; margin-bottom: 6px; }
@media (max-width: 480px) { .vp-form-row-2col { grid-template-columns: 1fr; } }
.vp-form-row-check { margin-top: 4px; }
.vp-check-label { display: flex !important; align-items: flex-start; gap: 10px; cursor: pointer; }
.vp-check-label input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 1px; accent-color: #ED7029; cursor: pointer; flex-shrink: 0; display: block !important; }
.vp-check-label span { font-size: 13px; color: rgba(245,247,251,0.75) !important; line-height: 1.5; display: inline !important; font-weight: 400; }
.vp-check-label span a { color: #ED7029 !important; display: inline !important; }
.vp-plz-wrap { position: relative; }
.vp-plz-wrap input { background: #0F1B2C; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #F5F7FB; font-family: 'Poppins', sans-serif; font-size: 13px; padding: 12px 16px; outline: none; width: 180px; transition: border-color .2s; box-sizing: border-box; }
.vp-plz-wrap input:focus { border-color: rgba(237,112,41,0.5); }
.vp-plz-wrap input::placeholder { color: rgba(245,247,251,0.45); }
@media (max-width: 600px) { .vp-plz-wrap input { width: 100%; } }

/* ── TYPE TABS ── */
.vp-type-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.vp-type-tab {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 8px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15);
    background: transparent; color: rgba(245,247,251,0.5);
    cursor: pointer; transition: all .15s; font-family: 'Poppins', sans-serif;
}
.vp-type-tab:hover { border-color: rgba(237,112,41,0.4); color: #F5F7FB; }
.vp-type-tab.active { background: #ED7029; border-color: #ED7029; color: #08182B; }

/* ── SOCIAL ICONS ── */
.vp-social-icons {
    display: flex; align-items: center; gap: 4px;
    flex-wrap: wrap;
}
.vp-social-icons {
    display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.vp-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; min-width: 26px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: background .15s, border-color .15s;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
}
.vp-social-link:hover { background: rgba(237,112,41,0.18); border-color: rgba(237,112,41,0.4); }
.vp-social-link svg { width: 14px; height: 14px; display: block; flex-shrink: 0; }
/* Touch-Fläche auf Mobile vergrößern */
@media (max-width: 768px) {
    .vp-social-link { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; }
    .vp-social-link svg { width: 20px; height: 20px; }
    .vp-social-icons { gap: 6px; }
}

/* ── CREATOR CARD LOGO ── */
.vp-logo-creator {
    width: 72px; height: 72px; min-width: 72px;
    border-radius: 50%;
    border: 3px solid #ED7029;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
    background: #1a2a3a;
    position: relative;
    box-sizing: border-box;
}
.vp-logo-creator img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.vp-logo-creator.vp-logo-bg-light { background:#fff; }
.vp-logo-creator.vp-logo-bg-dark { background:#08182B; }
.vp-logo-creator.vp-logo-bg-none { background:transparent; }

/* CREATOR Badge auf Bild */
.vp-creator-type-badge {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
    color: #fff; background: #7c3aed;
    border-radius: 100px; padding: 2px 7px;
    white-space: nowrap; font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

/* Creator branch in Lila */
.vp-branch-creator {
    display: inline-block;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: #c084fc;
    background: transparent;
    border: 1px solid rgba(192,132,252,0.35);
    border-radius: 100px;
    padding: 3px 10px;
    white-space: normal; word-break: break-word; max-width: 100%; line-height: 1.5;
}

/* Social-Zeile im Card-Footer (wird jetzt inline in footer-meta gerendert) */
.vp-footer-social { display: none; } /* deprecated — Social Icons sind jetzt in .vp-social-icons */

/* Creator Form social-required hint */
.vp-social-hint { font-size: 11px; color: rgba(245,247,251,0.4); margin-top: 4px; font-family: 'Poppins', sans-serif; }

/* v2.1.1: valide Kartenstruktur – keine verschachtelten Links mehr */
.vp-card { cursor: default; }
.vp-card-footer { gap: 10px; }
.vp-social-icons { display:flex; align-items:center; gap:7px; flex-wrap:wrap; margin-top:2px; }
.vp-website-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  align-self:flex-start;
  margin-top:2px;
  color:#ED7029 !important;
  text-decoration:none !important;
  font-family:Poppins,sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.vp-website-link:hover { color:#ff8a4c !important; text-decoration:none !important; }


/* v2.1.4: echte Social Brand Icons ohne Inline-SVG im JS
   Die Icons kommen als CSS-Masken. Dadurch bleiben die Cards stabil und die Logos sehen sauber aus. */
.vp-social-link {
    color: #fff !important;
    line-height: 1;
    position: relative;
    overflow: hidden;
}
.vp-social-link .vp-social-glyph {
    display:block;
    width:18px;
    height:18px;
    background:#fff;
    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;
    -webkit-mask-position:center;
    mask-position:center;
    -webkit-mask-size:contain;
    mask-size:contain;
}
.vp-social-instagram { background:#E4405F !important; border-color:rgba(228,64,95,.42) !important; }
.vp-social-tiktok { background:#010101 !important; border-color:rgba(255,255,255,.22) !important; }
.vp-social-linkedin { background:#0A66C2 !important; border-color:rgba(10,102,194,.42) !important; }
.vp-social-facebook { background:#1877F2 !important; border-color:rgba(24,119,242,.42) !important; }
.vp-social-instagram .vp-social-glyph {
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5A4.5 4.5 0 1 1 12 16.5 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 12 14.5 2.5 2.5 0 0 0 12 9.5ZM17.75 6.6a1.15 1.15 0 1 1-1.15 1.15 1.15 1.15 0 0 1 1.15-1.15Z'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5A4.5 4.5 0 1 1 12 16.5 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 12 14.5 2.5 2.5 0 0 0 12 9.5ZM17.75 6.6a1.15 1.15 0 1 1-1.15 1.15 1.15 1.15 0 0 1 1.15-1.15Z'/%3E%3C/svg%3E");
}
.vp-social-tiktok .vp-social-glyph {
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.6 2c.35 3.1 2.1 4.95 5.1 5.15v3.45a8.3 8.3 0 0 1-5.05-1.55v6.55c0 4.2-2.75 6.4-6.15 6.4-3.75 0-6.2-2.6-6.2-5.85 0-3.55 2.7-5.95 6.45-5.95.45 0 .88.04 1.3.13v3.58a4.1 4.1 0 0 0-1.28-.2c-1.72 0-2.82.98-2.82 2.35 0 1.37 1.03 2.3 2.38 2.3 1.55 0 2.6-.87 2.6-2.85V2h3.67Z'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.6 2c.35 3.1 2.1 4.95 5.1 5.15v3.45a8.3 8.3 0 0 1-5.05-1.55v6.55c0 4.2-2.75 6.4-6.15 6.4-3.75 0-6.2-2.6-6.2-5.85 0-3.55 2.7-5.95 6.45-5.95.45 0 .88.04 1.3.13v3.58a4.1 4.1 0 0 0-1.28-.2c-1.72 0-2.82.98-2.82 2.35 0 1.37 1.03 2.3 2.38 2.3 1.55 0 2.6-.87 2.6-2.85V2h3.67Z'/%3E%3C/svg%3E");
}
.vp-social-tiktok .vp-social-glyph {
    width: 22px !important;
    height: 22px !important;
}

.vp-social-linkedin .vp-social-glyph {
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5a2.5 2.5 0 1 1-.02 5 2.5 2.5 0 0 1 .02-5ZM3 9.5h4v11H3v-11Zm6 0h3.85v1.5h.05c.54-.95 1.86-1.95 3.82-1.95 4.08 0 4.83 2.68 4.83 6.17v5.28h-4v-4.68c0-1.12-.02-2.56-1.56-2.56-1.56 0-1.8 1.22-1.8 2.48v4.76H10v-11Z'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5a2.5 2.5 0 1 1-.02 5 2.5 2.5 0 0 1 .02-5ZM3 9.5h4v11H3v-11Zm6 0h3.85v1.5h.05c.54-.95 1.86-1.95 3.82-1.95 4.08 0 4.83 2.68 4.83 6.17v5.28h-4v-4.68c0-1.12-.02-2.56-1.56-2.56-1.56 0-1.8 1.22-1.8 2.48v4.76H10v-11Z'/%3E%3C/svg%3E");
}
.vp-social-facebook .vp-social-glyph {
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.1 8.7V7.05c0-.8.53-.98.9-.98h2.28V2.15L14.14 2.14c-3.49 0-4.28 2.61-4.28 4.28V8.7H7.1v4.05h2.76V22h4.24v-9.25h3.16l.42-4.05H14.1Z'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.1 8.7V7.05c0-.8.53-.98.9-.98h2.28V2.15L14.14 2.14c-3.49 0-4.28 2.61-4.28 4.28V8.7H7.1v4.05h2.76V22h4.24v-9.25h3.16l.42-4.05H14.1Z'/%3E%3C/svg%3E");
}
@media (max-width:768px){
  .vp-social-link .vp-social-glyph { width:20px; height:20px; }
}


/* v2.1.7: TikTok-Button optisch angleichen – grauen Rand entfernen, keine Technikänderung */
.vp-social-tiktok,
.vp-social-tiktok:hover,
.vp-social-tiktok:focus,
.vp-social-tiktok:active {
    background: #010101 !important;
    border-color: #010101 !important;
    box-shadow: none !important;
}
.vp-social-tiktok .vp-social-glyph {
    width: 23px !important;
    height: 23px !important;
}


/* v2.1.8: Mobile Social Icons optisch kleiner, aber weiterhin fingerfreundlich.
   Nur Optik/Responsive-CSS, keine Technikänderung. */
@media (max-width: 768px) {
    .vp-social-icons {
        gap: 8px !important;
        margin-top: 4px !important;
    }
    .vp-social-link {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        border-radius: 10px !important;
    }
    .vp-social-link .vp-social-glyph {
        width: 18px !important;
        height: 18px !important;
    }
    .vp-social-tiktok .vp-social-glyph {
        width: 21px !important;
        height: 21px !important;
    }
}

@media (max-width: 380px) {
    .vp-social-icons {
        gap: 7px !important;
    }
    .vp-social-link {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
    }
}


/* v2.4.0: interne SEO-Detailseiten */
.vp-detail-card-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  align-self:flex-start;
  margin-top:2px;
  color:#F5F7FB !important;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:100px;
  padding:7px 13px;
  text-decoration:none !important;
  font-family:Poppins,sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.vp-detail-card-link:hover { color:#ED7029 !important; border-color:rgba(237,112,41,.35); text-decoration:none !important; }
