/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
/* Pimnora - Blutdruck-Lifestyle-Portal */ @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap'); :root { --wp-primary: #1e40af; --wp-primary-dark: #1e3a8a; --wp-bg: #0f172a; --wp-bg-light: #1e293b; --wp-text: #f1f5f9; --wp-text-muted: #cbd5e1; --wp-accent: #3b82f6; --wp-border: #334155; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Work Sans', sans-serif; background: var(--wp-bg); color: var(--wp-text); line-height: 1.7; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: var(--wp-bg-light); border-bottom: 2px solid var(--wp-border); padding: 20px 0; position: sticky; top: 0; z-index: 100; } .wp-header-inner { display: flex; justify-content: space-between; align-items: center; } .wp-logo { font-size: 28px; font-weight: 700; color: var(--wp-accent); text-decoration: none; } .wp-nav { display: flex; gap: 30px; } .wp-nav a { color: var(--wp-text); text-decoration: none; font-weight: 500; transition: color 0.3s; } .wp-nav a:hover { color: var(--wp-accent); } .wp-breadcrumbs { padding: 15px 0; font-size: 14px; color: var(--wp-text-muted); } .wp-breadcrumbs a { color: var(--wp-accent); text-decoration: none; } .wp-main { display: grid; grid-template-columns: 1fr 350px; gap: 40px; padding: 40px 0; } .wp-content { background: var(--wp-bg-light); border-radius: 12px; padding: 40px; } .wp-hero { margin-bottom: 30px; } .wp-hero-img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 25px; } .wp-category { display: inline-block; background: var(--wp-primary); color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; } .wp-title { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--wp-text); } .wp-meta { display: flex; gap: 20px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--wp-border); font-size: 14px; color: var(--wp-text-muted); flex-wrap: wrap; } .wp-meta-item { display: flex; align-items: center; gap: 6px; } .wp-lead { font-size: 20px; font-weight: 500; color: var(--wp-text); margin-bottom: 30px; line-height: 1.6; border-left: 4px solid var(--wp-accent); padding-left: 20px; } .wp-article p { margin-bottom: 20px; font-size: 17px; } .wp-article h2 { font-size: 32px; font-weight: 700; margin: 40px 0 20px; color: var(--wp-text); } .wp-article h3 { font-size: 24px; font-weight: 600; margin: 30px 0 15px; color: var(--wp-text); } .wp-blockquote { background: var(--wp-bg); border-left: 4px solid var(--wp-accent); padding: 25px 30px; margin: 30px 0; font-style: italic; font-size: 18px; color: var(--wp-text-muted); border-radius: 6px; } .wp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--wp-border); } .wp-tag { background: var(--wp-bg); color: var(--wp-text-muted); padding: 8px 16px; border-radius: 20px; font-size: 14px; text-decoration: none; transition: all 0.3s; border: 1px solid var(--wp-border); } .wp-tag:hover { background: var(--wp-primary); color: white; border-color: var(--wp-primary); } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: var(--wp-bg-light); border-radius: 12px; padding: 25px; margin-bottom: 25px; border: 1px solid var(--wp-border); } .wp-sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--wp-text); } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid var(--wp-border); } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item a { color: var(--wp-text); text-decoration: none; display: block; transition: color 0.3s; } .wp-sidebar-item a:hover { color: var(--wp-accent); } .wp-sidebar-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; } .wp-sidebar-item p { font-size: 14px; color: var(--wp-text-muted); } .wp-form { background: var(--wp-bg); padding: 30px; border-radius: 8px; margin-top: 30px; border: 1px solid var(--wp-border); } .wp-form h3 { font-size: 22px; margin-bottom: 20px; color: var(--wp-text); } .wp-form input { width: 100%; padding: 14px; margin-bottom: 15px; border: 1px solid var(--wp-border); border-radius: 6px; font-size: 16px; background: var(--wp-bg-light); color: var(--wp-text); font-family: 'Work Sans', sans-serif; } .wp-form input:focus { outline: none; border-color: var(--wp-accent); } .wp-form button { width: 100%; background: var(--wp-primary); color: white; padding: 14px; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; font-family: 'Work Sans', sans-serif; } .wp-form button:hover { background: var(--wp-primary-dark); } .wp-related { margin-top: 50px; padding-top: 40px; border-top: 2px solid var(--wp-border); } .wp-related h3 { font-size: 28px; font-weight: 700; margin-bottom: 25px; color: var(--wp-text); } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .wp-related-item { background: var(--wp-bg); padding: 20px; border-radius: 8px; border: 1px solid var(--wp-border); transition: transform 0.3s; } .wp-related-item:hover { transform: translateY(-5px); } .wp-related-item a { color: var(--wp-text); text-decoration: none; } .wp-related-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; } .wp-related-item p { font-size: 14px; color: var(--wp-text-muted); } .wp-footer { background: var(--wp-bg-light); border-top: 2px solid var(--wp-border); padding: 40px 0 30px; margin-top: 60px; } .wp-footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; } .wp-footer h4 { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: var(--wp-text); } .wp-footer-links { display: flex; flex-direction: column; gap: 10px; } .wp-footer-links a { color: var(--wp-text-muted); text-decoration: none; transition: color 0.3s; } .wp-footer-links a:hover { color: var(--wp-accent); } .wp-footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--wp-border); color: var(--wp-text-muted); font-size: 14px; } .wp-disclaimer { background: var(--wp-bg); padding: 20px; border-radius: 6px; margin-top: 20px; font-size: 13px; color: var(--wp-text-muted); border: 1px solid var(--wp-border); } .wp-policy-content { background: var(--wp-bg-light); border-radius: 12px; padding: 40px; max-width: 900px; margin: 0 auto; } .wp-policy-content h1 { font-size: 38px; margin-bottom: 30px; color: var(--wp-text); } .wp-policy-content h2 { font-size: 28px; margin: 35px 0 20px; color: var(--wp-text); } .wp-policy-content p { margin-bottom: 20px; font-size: 16px; line-height: 1.7; } .wp-policy-content ul { margin: 20px 0 20px 25px; } .wp-policy-content li { margin-bottom: 12px; font-size: 16px; } .wp-success { text-align: center; padding: 60px 20px; } .wp-success-icon { width: 80px; height: 80px; background: var(--wp-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; } .wp-success h1 { font-size: 36px; margin-bottom: 20px; color: var(--wp-text); } .wp-success p { font-size: 18px; color: var(--wp-text-muted); margin-bottom: 15px; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--wp-bg-light); padding: 25px; border-top: 2px solid var(--wp-border); z-index: 1000; display: none; } .wp-cookie-banner.wp-active { display: block; } .wp-cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; } .wp-cookie-text { font-size: 15px; color: var(--wp-text-muted); } .wp-cookie-btn { background: var(--wp-primary); color: white; padding: 12px 30px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: 'Work Sans', sans-serif; } .wp-cookie-btn:hover { background: var(--wp-primary-dark); } .wp-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--wp-accent); z-index: 1001; transition: width 0.1s; } @media (max-width: 968px) { .wp-main { grid-template-columns: 1fr; } .wp-sidebar { position: static; } .wp-related-grid { grid-template-columns: 1fr; } .wp-footer-content { grid-template-columns: 1fr; } .wp-cookie-inner { flex-direction: column; } .wp-title { font-size: 32px; } }