/* Creative-IT Solutions — main.css
   CI: #404041 #555557 #343435 #F87A00 #BEE729 */

:root {
      --bg-site: #404041;
      --bg-general: #555557;
      --bg-dark: #343435;
      --accent: #F87A00;
      --accent-hover: #e06b00;
      --accent-glow: rgba(248,122,0,0.15);
      --green: #BEE729;
      --green-hover: #a8cf1e;
      --green-glow: rgba(190,231,41,0.15);
      --light-bg: #f0f0f0;
      --white: #ffffff;
      --text-dark: #333333;
      --text-light: #d0d0d0;
      --heading-light: #ffffff;
      --heading-dark: #1a1a1a;
      --border: rgba(248,122,0,0.18);
      --font-body: 'IBM Plex Sans', system-ui, sans-serif;
      --font-mono: 'IBM Plex Mono', monospace;
    }
    *,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{font-family:var(--font-body);color:var(--text-dark);line-height:1.7;background:var(--light-bg);-webkit-font-smoothing:antialiased}

    /* NAV */
    .nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(52,52,53,0.96);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
    .nav-inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:68px}
    .nav-logo{display:flex;align-items:center;text-decoration:none}
    .nav-logo img{height:42px;width:auto}
    .nav-links{display:flex;gap:1.8rem;align-items:center;list-style:none}
    .nav-links a{color:var(--text-light);text-decoration:none;font-size:.88rem;font-weight:500;transition:color .2s}
    .nav-links a:hover{color:var(--accent)}
    .nav-cta{background:var(--accent)!important;color:#fff!important;padding:.45rem 1.1rem;border-radius:6px;font-weight:600!important;transition:background .2s!important}
    .nav-cta:hover{background:var(--accent-hover)!important}
    .nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem}
    .nav-toggle span{display:block;width:22px;height:2px;background:var(--text-light);margin:5px 0;transition:.3s}

    /* HERO */
    .hero{min-height:min(100vh,1040px);background:linear-gradient(170deg,var(--bg-dark) 0%,var(--bg-site) 50%,var(--bg-general) 100%);display:flex;align-items:center;position:relative;overflow:hidden;padding:100px clamp(1.5rem,4vw,4rem) 4rem}
    .hero::before{content:'';position:absolute;top:-30%;right:-15%;width:min(65vw,1100px);height:min(65vw,1100px);background:radial-gradient(circle,rgba(248,122,0,0.11) 0%,transparent 70%);pointer-events:none}
    .hero::after{content:'';position:absolute;bottom:-25%;left:-12%;width:min(50vw,820px);height:min(50vw,820px);background:radial-gradient(circle,rgba(190,231,41,0.07) 0%,transparent 70%);pointer-events:none}
    .hero-inner{max-width:1520px;margin:0 auto;width:100%;min-width:0;display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(2rem,4vw,5rem);align-items:center}
    .hero-eyebrow{font-family:var(--font-mono);font-size:clamp(.82rem,.9vw,1.05rem);color:var(--accent);margin-bottom:1.2rem;letter-spacing:.08em}
    .hero-eyebrow::before{content:'> ';opacity:.5}
    .hero h1{font-size:clamp(2.2rem,4.4vw,5.2rem);color:var(--heading-light);font-weight:700;line-height:1.1;letter-spacing:-.03em;margin-bottom:1.5rem;text-wrap:balance}
    .hero h1 em{font-style:normal;background:linear-gradient(90deg,var(--accent),#ffb347);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
    .hero-sub{font-size:clamp(1.05rem,1.15vw,1.35rem);color:var(--text-light);max-width:min(100%,clamp(30rem,34vw,40rem));line-height:1.75;margin-bottom:2.4rem}
    .hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
    .hero-inner>*{min-width:0}
    .btn-primary{display:inline-flex;align-items:center;gap:.5rem;background:var(--accent);color:#fff;padding:.85rem 1.8rem;border-radius:8px;text-decoration:none;font-weight:600;font-size:.95rem;transition:background .2s,transform .15s;border:none;cursor:pointer}
    .hero-actions .btn-primary,.hero-actions .btn-secondary{font-size:clamp(.95rem,1vw,1.1rem);padding:clamp(.85rem,1vw,1.1rem) clamp(1.8rem,2.2vw,2.6rem)}
    .btn-primary:hover{background:var(--accent-hover);transform:translateY(-1px)}
    .btn-green{background:var(--green);color:var(--bg-dark)}
    .btn-green:hover{background:var(--green-hover)}
    .btn-secondary{display:inline-flex;align-items:center;gap:.5rem;background:transparent;color:var(--text-light);padding:.85rem 1.8rem;border-radius:8px;text-decoration:none;font-weight:500;font-size:.95rem;border:1px solid rgba(255,255,255,.2);transition:border-color .2s,color .2s}
    .btn-secondary:hover{border-color:var(--accent);color:var(--accent)}

    /* Hero visual: photo + code images */
    .hero-visual{position:relative;display:flex;justify-content:center}
    .hero-photo{width:clamp(280px,21vw,440px);aspect-ratio:28/38;height:auto;object-fit:cover;border-radius:16px;border:3px solid var(--border);box-shadow:0 20px 50px rgba(0,0,0,.4);position:relative;z-index:2}
    .hero-code-img{position:absolute;width:clamp(180px,14vw,300px);height:auto;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.5);opacity:.85;z-index:1}
    .hero-code-1{top:-20px;right:-30px;transform:rotate(3deg)}
    .hero-code-2{bottom:-10px;left:-20px;transform:rotate(-2deg)}

    /* SECTIONS */
    .section{padding:5rem 2rem}
    .section-site{background:var(--bg-site);color:var(--text-light)}
    .section-dark{background:var(--bg-dark);color:var(--text-light)}
    .section-general{background:var(--bg-general);color:var(--text-light)}
    .section-light{background:var(--light-bg)}
    .section-white{background:var(--white)}
    .container{max-width:1200px;margin:0 auto}
    .section-label{font-family:var(--font-mono);font-size:.78rem;color:var(--accent);text-transform:uppercase;letter-spacing:.12em;margin-bottom:.6rem}
    .section-title{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:700;line-height:1.25;letter-spacing:-.02em;margin-bottom:1rem}
    .section-dark .section-title,.section-site .section-title,.section-general .section-title{color:var(--heading-light)}
    .section-light .section-title,.section-white .section-title{color:var(--heading-dark)}
    .section-intro{font-size:1.05rem;max-width:640px;line-height:1.8;margin-bottom:3rem}

    /* Hinweis zu width/height an <img>: Die Attribute verhindern Layout-Sprünge,
       gelten dem Browser aber auch als Größenangabe. Wo das CSS nur eine Dimension
       setzt, muss die andere darum ausdrücklich auf auto stehen. */

    /* PRODUCTS */
    .products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem}
    .product-card{background:var(--bg-site);border:1px solid var(--border);border-radius:14px;position:relative;overflow:hidden;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
    .product-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.3)}
    .product-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px}
    .product-tag{display:inline-block;font-family:var(--font-mono);font-size:.72rem;padding:.25rem .7rem;border-radius:20px;margin-bottom:1rem;font-weight:500;letter-spacing:.04em}
    .product-card h3{font-size:1.3rem;font-weight:700;color:var(--heading-light);margin-bottom:.7rem}
    .product-card p{font-size:.9rem;color:var(--text-light);line-height:1.7;margin-bottom:1.2rem}
    .product-features{list-style:none;margin-bottom:1.5rem}
    .product-features li{font-size:.84rem;color:var(--text-light);padding:.3rem 0;padding-left:1.3rem;position:relative}
    .product-features li::before{content:'✓';position:absolute;left:0;font-weight:700}
    .product-link{font-size:.88rem;font-weight:600;text-decoration:none;transition:color .2s}
    .product-link:hover{text-decoration:underline}

    /* SERVICES */
    .services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.5rem}
    .service-card{background:#fff;border:1px solid #e0e0e0;border-radius:12px;padding:2rem;transition:border-color .2s,box-shadow .2s}
    .service-card:hover{border-color:var(--accent);box-shadow:0 8px 30px var(--accent-glow)}
    .service-icon{width:48px;height:48px;background:var(--accent-glow);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;font-size:1.3rem}
    .service-card h3{font-size:1.1rem;font-weight:600;color:var(--heading-dark);margin-bottom:.6rem}
    .service-card p{font-size:.92rem;line-height:1.7;color:#6b7280}

    /* ABOUT */
    .about-grid{display:grid;grid-template-columns:1fr .85fr;gap:3.5rem;align-items:center}
    .about-text p{margin-bottom:1rem}
    .about-stats{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2rem}
    .stat-card{background:var(--bg-site);border:1px solid var(--border);border-radius:10px;padding:1.2rem}
    .stat-number{font-size:2rem;font-weight:700;color:var(--accent);line-height:1;font-family:var(--font-mono)}
    .stat-label{font-size:.82rem;color:var(--text-light);margin-top:.3rem}

    /* ABOUT PHOTO ROW */
    .about-photo-row{display:flex;gap:1.5rem;margin-top:2.5rem;align-items:flex-end}
    .about-photo-row img{border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.3);border:2px solid var(--border)}

    /* PROCESS */
    .process-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem}
    .process-card{padding:1.8rem;border-left:3px solid var(--accent);background:#fff;border-radius:0 10px 10px 0}
    .process-card h3{font-size:1rem;font-weight:600;color:var(--heading-dark);margin-bottom:.5rem}
    .process-card p{font-size:.9rem;color:#6b7280;line-height:1.7}

    /* TESTIMONIALS */
    .testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
    .testimonial{background:var(--bg-site);border:1px solid var(--border);border-radius:12px;padding:2rem;display:flex;flex-direction:column}
    .testimonial-quote{font-size:.93rem;color:var(--text-light);line-height:1.8;margin-bottom:1.2rem;font-style:italic;flex:1}
    .testimonial-quote::before{content:'„';font-size:2rem;color:var(--accent);line-height:0;vertical-align:-.4em;margin-right:.1em}
    .testimonial-footer{display:flex;align-items:center;gap:.8rem}
    .testimonial-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;border:2px solid var(--accent)}
    .testimonial-initials{width:40px;height:40px;border-radius:50%;background:var(--bg-general);display:flex;align-items:center;justify-content:center;font-weight:600;font-size:.85rem;color:var(--accent);border:2px solid var(--border)}
    .testimonial-author{font-size:.88rem;font-weight:600;color:var(--heading-light)}
    .testimonial-role{font-size:.75rem;color:var(--accent);font-family:var(--font-mono)}

    /* CONTACT */
    .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
    .contact-method{display:flex;gap:1rem;align-items:flex-start;padding:1.2rem 0;border-bottom:1px solid #e0e0e0}
    .contact-method:last-child{border-bottom:none}
    .contact-icon{width:44px;height:44px;flex-shrink:0;background:var(--accent-glow);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.1rem}
    .contact-method h4{font-size:.82rem;font-weight:500;color:#9ca3af;margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.06em}
    .contact-method a,.contact-method p{font-size:1rem;color:var(--heading-dark);text-decoration:none;font-weight:500}
    .contact-method a:hover{color:var(--accent)}
    .contact-cta-card{background:linear-gradient(135deg,var(--bg-dark) 0%,var(--bg-site) 100%);border-radius:16px;padding:2.5rem;color:var(--text-light)}
    .contact-cta-card h3{font-size:1.4rem;color:var(--heading-light);font-weight:700;margin-bottom:1rem}
    .contact-cta-card p{margin-bottom:2rem;line-height:1.8}

    /* FOOTER */
    .footer{background:var(--bg-dark);border-top:1px solid var(--border);padding:2rem;text-align:center}
    .footer-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
    .footer p{font-size:.82rem;color:var(--text-light)}
    .footer-links{display:flex;gap:1.5rem}
    .footer-links a{font-size:.82rem;color:var(--text-light);text-decoration:none;transition:color .2s}
    .footer-links a:hover{color:var(--accent)}

    /* RESPONSIVE */
    @media(max-width:900px){
      .hero-inner{grid-template-columns:1fr;text-align:center}
      .hero-sub{margin-left:auto;margin-right:auto}
      .hero-actions{justify-content:center}
      .hero-visual{margin-top:1rem}
      .hero-code-img{display:none}
      .about-grid{grid-template-columns:1fr;gap:2rem}
      .contact-grid{grid-template-columns:1fr}
      .about-photo-row{justify-content:center}
    }
    @media(max-width:860px){
      .nav-links{display:none;position:absolute;top:68px;left:0;right:0;background:rgba(52,52,53,.98);flex-direction:column;padding:1.5rem 2rem;gap:1.2rem;border-bottom:1px solid var(--border)}
      .nav-links.open{display:flex}
      .nav-toggle{display:block}
    }
    @media(max-width:700px){
      .hero{min-height:auto;padding:90px 1.5rem 3rem}
      .section{padding:3.5rem 1.5rem}
      .products-grid,.services-grid,.process-grid,.testimonials-grid{grid-template-columns:1fr}
      .footer-inner{flex-direction:column;text-align:center}
      .hero-photo{width:200px;height:270px}
    }
    @media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
    a:focus-visible,button:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

    /* ---------- PRODUKT-SCREENSHOTS ---------- */
    .product-shot{background:var(--bg-dark);border-bottom:1px solid var(--border);aspect-ratio:16/9;overflow:hidden}
    .product-shot img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block;transition:transform .4s ease}
    .product-card:hover .product-shot img{transform:scale(1.03)}
    .product-body{padding:1.8rem 2rem 2rem;display:flex;flex-direction:column;flex:1}
    .product-body .product-link{margin-top:auto}

    /* ---------- SPLIT: TEXT NEBEN BILD ---------- */
    .split-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center}
    .split-reverse .split-media{order:2}
    .split-media img{width:100%;height:auto;border-radius:14px;display:block;box-shadow:0 18px 50px rgba(0,0,0,.28)}
    .split-text p{margin-bottom:1rem;line-height:1.8}
    .section-light .split-text p,.section-white .split-text p{color:#4b5563}

    /* ---------- ABSCHNITTSFOTO ---------- */
    .section-photo{margin:0 0 3rem}
    .section-photo img{width:100%;max-height:440px;object-fit:cover;border-radius:14px;display:block;box-shadow:0 18px 50px rgba(0,0,0,.22)}
    .section-photo figcaption{font-size:.85rem;color:#6b7280;margin-top:.8rem;font-style:italic}
    .section-photo-wide{margin:3.5rem 0 0}
    .section-photo-wide img{max-height:420px;object-position:left center}
    .section-dark .section-photo figcaption,.section-general .section-photo figcaption,.section-site .section-photo figcaption{color:var(--text-light)}

    /* ---------- HAKENLISTE ---------- */
    .check-list{list-style:none;margin:1.5rem 0 2rem}
    .check-list li{position:relative;padding:.4rem 0 .4rem 1.7rem;font-size:.94rem;line-height:1.7}
    .check-list li::before{content:'✓';position:absolute;left:0;color:var(--accent);font-weight:700}

    /* ---------- MEIN WEG (BILDBAND) ---------- */
    .journey{background-size:cover;background-position:center;background-attachment:fixed;padding:6rem 2rem;color:var(--text-light);text-align:center}
    .journey-inner{max-width:760px}
    .journey .section-title{color:var(--heading-light)}
    .journey-text{font-size:1.08rem;line-height:1.85;margin:0 auto}
    .process-grid-narrow{grid-template-columns:1fr 1fr}

    @media(max-width:900px){
      .products-grid{grid-template-columns:1fr}
      .split-grid{grid-template-columns:1fr;gap:2rem}
      .split-reverse .split-media{order:0}
      .journey{background-attachment:scroll;padding:4rem 1.5rem}
      .process-grid-narrow{grid-template-columns:1fr}
      .section-photo img{max-height:300px}
    }
    @media(max-width:700px){
      .product-body{padding:1.4rem 1.5rem 1.6rem}
    }

    /* ---------- KONTAKTFORMULAR ---------- */
    .contact-form-card{background:#fff;border:1px solid #e0e0e0;border-radius:16px;padding:2rem}
    .contact-form-card h3{font-size:1.25rem;font-weight:700;color:var(--heading-dark);margin-bottom:1.4rem}
    .feld-reihe{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
    .feld{display:flex;flex-direction:column;margin-bottom:1rem}
    .feld label{font-size:.85rem;font-weight:600;color:#374151;margin-bottom:.35rem}
    .feld input[type=text],.feld input[type=email],.feld input[type=tel],.feld textarea{
      font:inherit;font-size:.95rem;color:var(--text-dark);background:#fbfbfc;
      border:1px solid #d5d7db;border-radius:8px;padding:.7rem .85rem;width:100%;
      transition:border-color .15s,box-shadow .15s}
    .feld textarea{resize:vertical;min-height:120px;line-height:1.65}
    .feld input:focus,.feld textarea:focus{outline:none;border-color:var(--accent);
      box-shadow:0 0 0 3px var(--accent-glow);background:#fff}
    .feld input[aria-invalid],.feld textarea[aria-invalid]{border-color:#c0392b;background:#fdf6f5}
    .feld-fehler{font-size:.82rem;color:#c0392b;margin-top:.35rem}
    .form-fehler-box{background:#fdf1ef;border:1px solid #e8c4be;color:#a13527;
      border-radius:8px;padding:.8rem 1rem;font-size:.88rem;margin-bottom:1.2rem}
    .feld-check{margin:1.2rem 0}
    .feld-check label{display:flex;gap:.7rem;align-items:flex-start;font-weight:400;
      font-size:.86rem;color:#4b5563;line-height:1.6;cursor:pointer}
    .feld-check input{margin-top:.2rem;width:17px;height:17px;flex-shrink:0;accent-color:var(--accent);cursor:pointer}
    .feld-check a{color:var(--accent)}
    .feld-hinweis{font-size:.78rem;color:#6b7280;margin-top:.9rem;line-height:1.6}
    .contact-form-card .btn-primary{width:100%;justify-content:center}
    /* Honeypot: für Menschen unsichtbar, für Bots ein Köder.
       Nicht display:none — manche Bots erkennen das und lassen das Feld dann leer. */
    .honigtopf{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
    .form-erfolg{padding:.5rem 0}
    .form-erfolg h3{color:var(--heading-dark);margin-bottom:.7rem}
    .form-erfolg p{font-size:.95rem;color:#4b5563;line-height:1.75}
    .form-erfolg a{color:var(--accent);font-weight:600}

    @media(max-width:700px){
      .feld-reihe{grid-template-columns:1fr;gap:0}
      .contact-form-card{padding:1.5rem}
    }

    /* ---------- RECHTSTEXTE (Impressum, Datenschutz) ---------- */
    .rechtstext .container{max-width:760px}
    .rechtstext h1{margin-bottom:1.5rem}
    .rechtstext h2{font-size:1.12rem;font-weight:700;color:var(--heading-dark);
      margin:2.2rem 0 .7rem;line-height:1.4}
    .rechtstext p{margin-bottom:1rem;line-height:1.8;color:#3f4650}
    .rechtstext ul{margin:0 0 1rem 1.3rem;line-height:1.8;color:#3f4650}
    .rechtstext li{margin-bottom:.3rem}
    .rechtstext a{color:var(--accent);overflow-wrap:anywhere}
    .rechtstext-vorspann{background:#fff;border-left:3px solid var(--accent);
      border-radius:0 10px 10px 0;padding:1.1rem 1.3rem;font-size:.95rem;margin-bottom:2rem}

    /* ---------- ÜBER MICH: FOTO IN DER SPALTE ---------- */
    .about-media img{width:100%;border-radius:14px;display:block;
      box-shadow:0 18px 50px rgba(0,0,0,.3);object-fit:cover;max-height:460px;object-position:left center}

    /* ---------- STIMMEN AUS DER AUSBILDUNG ---------- */
    .lernstimmen{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-top:3rem;
      padding-top:2.2rem;border-top:1px solid #dcdcdc}
    .lernstimme{background:#fff;border:1px solid #e3e3e3;border-radius:12px;padding:1.4rem 1.6rem;margin:0}
    .lernstimme blockquote{margin:0 0 1rem;font-size:.92rem;line-height:1.75;color:#4b5563;font-style:italic}
    .lernstimme blockquote::before{content:'„';color:var(--accent);font-size:1.6rem;
      line-height:0;vertical-align:-.35em;margin-right:.08em;font-style:normal}
    .lernstimme blockquote::after{content:'"';color:var(--accent);font-style:normal}
    .lernstimme figcaption{display:flex;align-items:center;gap:.7rem}
    .lernstimme figcaption img{width:36px;height:36px;border-radius:50%;object-fit:cover;
      border:2px solid var(--accent);flex-shrink:0}
    .lernstimme figcaption span{display:flex;flex-direction:column;font-size:.78rem;color:#6b7280;line-height:1.45}
    .lernstimme figcaption b{font-size:.86rem;color:var(--heading-dark);font-weight:600}

    @media(max-width:900px){
      .about-grid{grid-template-columns:1fr}
      .about-media img{max-height:340px}
      .lernstimmen{grid-template-columns:1fr}
    }

    /* ---------- AUS DER PRAXIS ---------- */
    .praxis-liste{display:grid;gap:1.4rem;max-width:860px}
    .praxis-fall{background:#fafafa;border:1px solid #e4e4e4;border-left:3px solid var(--accent);
      border-radius:0 12px 12px 0;padding:1.8rem 2rem}
    .praxis-rolle{font-family:var(--font-mono);font-size:.75rem;color:var(--accent);
      letter-spacing:.06em;text-transform:uppercase;margin-bottom:.5rem;line-height:1.5}
    .praxis-fall h3{font-size:1.18rem;font-weight:700;color:var(--heading-dark);
      margin-bottom:1.1rem;line-height:1.35}
    .praxis-details{display:grid;grid-template-columns:auto 1fr;gap:.5rem 1.4rem;margin-bottom:1.1rem}
    .praxis-details dt{font-size:.72rem;font-weight:700;color:#9099a5;text-transform:uppercase;
      letter-spacing:.08em;padding-top:.2rem}
    .praxis-details dd{margin:0;font-size:.94rem;line-height:1.75;color:#454c56}
    .praxis-warum{font-size:.92rem;line-height:1.75;color:#5a6270;font-style:italic;
      border-top:1px solid #e6e6e6;padding-top:1rem;margin:0}

    @media(max-width:700px){
      .praxis-fall{padding:1.4rem 1.5rem}
      .praxis-details{grid-template-columns:1fr;gap:.2rem 0}
      .praxis-details dt{padding-top:.7rem}
    }
