*{
    box-sizing:border-box;
}

:root{
    --agh-bg:#ffffff;
    --agh-surface:#ffffff;
    --agh-surface-strong:#ffffff;
    --agh-text:#1f1e1b;
    --agh-muted:#7b7369;
    --agh-line:rgba(79,66,48,.08);
    --agh-line-strong:rgba(79,66,48,.13);
    --agh-accent:#1f5f78;
    --agh-accent-soft:#f1f7f8;
    --agh-shadow:0 10px 24px rgba(44,37,27,.055);
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--agh-text);
    background:#ffffff;
    line-height:1.7;
}

a{
    color:var(--agh-accent);
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ==============================
   Layout
   ============================== */

.agh-site{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.agh-main{
    flex:1;
    padding:52px 0 60px;
}

.agh-wrap,
.oesp-wrap{
    max-width:1100px;
    margin:0 auto;
    padding:0 18px;
}

/* ==============================
   Header
   ============================== */

.agh-header{
position:sticky;
top:0;
background:rgba(255,255,253,.94);
backdrop-filter:blur(14px);
border-bottom:1px solid var(--agh-line);
box-shadow:0 8px 22px rgba(50,38,22,.035);
z-index:100;
}

.agh-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:86px;
}

.agh-logo-link img{
    height:48px;
}

.agh-nav-area{
    display:flex;
    align-items:center;
    gap:16px;
}

.agh-nav{
    display:flex;
    gap:18px;
    align-items:center;
}

.agh-nav a{
    font-weight:600;
    color:#332f29;
    padding:8px 2px;
}

.agh-nav a:hover{
    color:var(--agh-accent);
    text-decoration:none;
}

.agh-nav a.active{
    color:var(--agh-accent);
}

.agh-search input{
    border:1px solid var(--agh-line-strong);
    border-radius:999px;
    padding:9px 15px;
    font-size:.9rem;
    background:rgba(255,255,255,.94);
}

/* ==============================
   Burger
   ============================== */

.agh-burger{
    display:none;
    flex-direction:column;
    gap:4px;
    border:0;
    background:none;
    cursor:pointer;
    padding:0;
}

.agh-burger span{
    width:22px;
    height:2px;
    background:#333;
    display:block;
}

/* ==============================
   Mobile Menü
   ============================== */

.agh-mobile-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.4);
    opacity:0;
    pointer-events:none;
    transition:.2s;
    z-index:150;
}

.agh-mobile-panel{
    position:fixed;
    top:0;
    right:0;
    width:280px;
    height:100%;
    background:var(--agh-surface-strong);
    padding:24px;
    transform:translateX(100%);
    transition:.25s;
    z-index:200;
    display:flex;
    flex-direction:column;
    gap:20px;
    box-shadow:-8px 0 24px rgba(0,0,0,.08);
}

.agh-mobile-nav{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.agh-mobile-nav a{
    font-weight:600;
    font-size:1rem;
    color:#332f29;
}

.agh-mobile-nav a.active{
    color:var(--agh-accent);
}

.agh-mobile-close{
    border:0;
    background:none;
    font-size:1.6rem;
    cursor:pointer;
    align-self:flex-end;
    line-height:1;
}

.agh-mobile-search input{
    border:1px solid var(--agh-line-strong);
    border-radius:999px;
    padding:8px 10px;
    width:100%;
}

.mobile-open .agh-mobile-panel{
    transform:translateX(0);
}

.mobile-open .agh-mobile-overlay{
    opacity:1;
    pointer-events:auto;
}

/* ==============================
   Seiten / Hero
   ============================== */

.agh-page-hero{
    padding:40px 0 22px;
}

.agh-page-hero--compact{
    padding-top:4px;
}

.agh-page-hero-inner{
    position:relative;
    padding:28px 30px 14px 0;
}

.agh-page-hero-inner::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:86px;
    height:3px;
    border-radius:999px;
    background:linear-gradient(90deg, #b68954, var(--agh-accent));
}

.agh-page-kicker{
    margin:0 0 10px;
    font-size:.82rem;
    line-height:1.3;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--agh-muted);
}

.agh-page-hero h1,
.oesp-wrap > h1{
    margin:0;
    font-family:Georgia, "Times New Roman", serif;
    font-size:2.4rem;
    line-height:1.08;
    font-weight:700;
    letter-spacing:-.02em;
    color:#181511;
}

.agh-page-section{
    padding:12px 0 30px;
}

.agh-page-card{
    position:relative;
    border:1px solid var(--agh-line);
    border-radius:24px;
    background:rgba(255,255,255,.88);
    padding:28px 30px;
    box-shadow:var(--agh-shadow);
    backdrop-filter:blur(6px);
}

.agh-page-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.08) 42%, transparent 72%);
}

.agh-page-content{
    max-width:860px;
}

.agh-structured-page{
    display:grid;
    gap:32px;
}

.agh-structured-block{
    display:grid;
    gap:14px;
}

.agh-structured-panel{
    padding:18px 22px;
    border:1px solid var(--agh-line);
    border-radius:18px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
}

.agh-structured-feature{
    display:grid;
    grid-template-columns:minmax(140px, 180px) minmax(0, 1fr);
    gap:22px;
    align-items:start;
    padding:18px 22px;
    border:1px solid var(--agh-line);
    border-radius:20px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
}

.agh-structured-feature-media img{
    width:100%;
    max-width:180px;
    margin:0;
}

.agh-structured-feature-copy{
    display:grid;
    gap:12px;
}

.agh-structured-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.agh-structured-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(244,249,250,.82);
    color:var(--agh-accent);
    border:1px solid rgba(31,95,120,.10);
    font-weight:700;
    text-decoration:none;
}

.agh-structured-links a:hover{
    background:rgba(236,245,247,.95);
    text-decoration:none;
}

.agh-structured-list{
    display:grid;
    gap:14px;
}

.agh-structured-list-item{
    display:grid;
    grid-template-columns:84px minmax(0, 1fr);
    gap:18px;
    align-items:start;
    padding:18px 20px;
    border:1px solid var(--agh-line);
    border-radius:18px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
}

.agh-structured-list-item--full{
    grid-template-columns:minmax(0, 1fr);
}

.agh-structured-list-year{
    font-size:1rem;
    font-weight:700;
    color:var(--agh-accent);
    line-height:1.2;
}

.agh-structured-list-copy{
    min-width:0;
}

.agh-structured-list-copy--full{
    min-width:0;
}

.agh-structured-list-copy p:last-child{
    margin-bottom:0;
}

.page-kontakt .agh-block-page{
    gap:24px;
}

.page-kontakt .agh-structured-block{
    gap:12px;
}

.page-kontakt .agh-structured-panel{
    max-width:none;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.page-kontakt .agh-structured-list{
    gap:0;
}

.page-kontakt .agh-structured-list-item{
    grid-template-columns:1fr;
    align-items:start;
    gap:10px;
    padding:18px 0;
    border:0;
    border-top:1px solid var(--agh-line);
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.page-kontakt .agh-structured-list-item:first-child{
    padding-top:0;
    border-top:0;
}

.page-kontakt .agh-structured-list-year{
    font-size:.82rem;
    line-height:1.35;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#6e675f;
}

.page-kontakt .agh-structured-list-copy p:first-child{
    margin-bottom:8px;
}

.page-kontakt .agh-contact-role{
    margin:0 0 6px;
    font-size:.82rem;
    line-height:1.35;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#6e675f;
}

.page-kontakt .agh-contact-line{
    margin:0 0 4px;
    color:#544d46;
    line-height:1.65;
}

.page-kontakt .agh-contact-line:last-child{
    margin-bottom:0;
}

.page-kontakt .agh-contact-line--mail{
    margin-top:6px;
}

.page-kontakt .agh-structured-list-copy strong{
    color:#181511;
}

.page-kontakt .agh-structured-list-copy p{
    margin:0 0 8px;
}

.page-kontakt .agh-structured-list-copy p:last-child{
    margin-bottom:0;
    color:#544d46;
    line-height:1.7;
}

.page-aktuell .agh-page-content,
.page-kontakt .agh-page-content,
.page-tagungen .agh-page-content,
.page-impressum .agh-page-content{
    max-width:none;
}

.agh-search-result-note{
    margin:12px 0 0;
    color:var(--agh-muted);
    font-size:.95rem;
}

.agh-footer-links{
    display:inline-flex;
    gap:14px;
    margin-left:20px;
    flex-wrap:wrap;
}

.agh-footer-links a{
    color:var(--agh-accent);
}

.oesp-cover-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:14px;
    text-align:center;
    padding:12px;
}

/* ==============================
   Inhaltsbereich aus Editor
   ============================== */

.oesp-intro{
    margin-top:4px;
    font-size:1.04rem;
    color:#37322b;
    line-height:1.82;
}

.oesp-intro p{
    margin:0 0 18px;
}

.oesp-intro h2,
.oesp-intro h3,
.oesp-intro h4{
    margin:40px 0 16px;
    font-family:Georgia, "Times New Roman", serif;
    line-height:1.2;
    letter-spacing:-.01em;
    color:#181511;
}

.oesp-intro h2{
    font-size:1.8rem;
}

.oesp-intro h3{
    font-size:1.48rem;
}

.oesp-intro h4{
    font-size:1.18rem;
}

.oesp-intro h2:first-child,
.oesp-intro h3:first-child,
.oesp-intro h4:first-child{
    margin-top:0;
}

.oesp-intro strong,
.oesp-intro b{
    font-weight:700;
    color:#201d18;
}

.oesp-intro em,
.oesp-intro i{
    font-style:italic;
}

.oesp-intro ul,
.oesp-intro ol{
    margin:0 0 24px 0;
    padding:0;
    list-style:none;
}

.oesp-intro li{
    position:relative;
    margin:0 0 14px;
    padding-left:22px;
}

.oesp-intro ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:1.02em;
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg, #b68954, var(--agh-accent));
    transform:translateY(-50%);
}

.oesp-intro ol{
    counter-reset:agh-counter;
}

.oesp-intro ol li{
    counter-increment:agh-counter;
}

.oesp-intro ol li::before{
    content:counter(agh-counter) ".";
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
    color:var(--agh-accent);
}

.oesp-intro hr{
    margin:34px 0;
    border:0;
    border-top:1px solid var(--agh-line);
}

.oesp-intro blockquote{
    margin:18px 0;
    padding:12px 16px;
    border-left:4px solid #c8d8e1;
    background:#f7fafb;
    color:#444;
}

.oesp-intro a{
    color:var(--agh-accent);
    text-decoration:underline;
    font-weight:600;
    word-break:break-word;
}

.oesp-intro a:hover{
    color:#194c5f;
    text-decoration:underline;
}

.oesp-intro .agh-structured-links a,
.oesp-intro .agh-structured-links a:hover{
    text-decoration:none;
}

.agh-page-content img,
.oesp-intro img{
    max-width:100%;
    height:auto;
    display:block;
    margin:22px 0;
    border-radius:14px;
    border:1px solid var(--agh-line);
    box-shadow:0 10px 24px rgba(38,34,28,.05);
}

.page-aktuell .oesp-intro > p:has(img) img{
    max-width:180px;
    margin:0;
}

.page-aktuell .oesp-intro > h3:nth-of-type(2) + p,
.page-tagungen .oesp-intro > h3:first-child + p{
    margin-top:4px;
    padding:18px 22px;
    border:1px solid var(--agh-line);
    border-radius:18px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
}

.page-aktuell .oesp-intro ul,
.page-tagungen .oesp-intro ul{
    display:grid;
    gap:12px;
}

.page-aktuell .oesp-intro ul li,
.page-tagungen .oesp-intro ul li{
    padding:16px 18px 16px 34px;
    margin:0;
    border:1px solid var(--agh-line);
    border-radius:18px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
}

.page-tagungen .oesp-intro ul li{
    padding-left:34px;
}

.page-tagungen .oesp-intro ul li::before{
    left:18px;
    top:30px;
    width:8px;
    height:8px;
    transform:translateY(-50%);
}

.page-tagungen .oesp-intro ul li strong:first-child{
    color:#4d473f;
}

.page-aktuell .oesp-intro ul li::before{
    left:18px;
    top:30px;
    transform:translateY(-50%);
}

.page-kontakt .agh-page-card{
    padding-bottom:28px;
}

.page-agh .agh-block-page,
.page-aktuell .agh-block-page,
.page-tagungen .agh-block-page{
    gap:24px;
}

.page-agh .agh-structured-block,
.page-aktuell .agh-structured-block,
.page-tagungen .agh-structured-block{
    gap:12px;
}

.page-agh .agh-structured-panel,
.page-aktuell .agh-structured-panel,
.page-tagungen .agh-structured-panel{
    max-width:none;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.page-agh .agh-structured-feature,
.page-aktuell .agh-structured-feature,
.page-tagungen .agh-structured-feature{
    padding:18px 0;
    border:0;
    border-top:1px solid var(--agh-line);
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.page-agh .agh-structured-feature:first-child,
.page-aktuell .agh-structured-feature:first-child,
.page-tagungen .agh-structured-feature:first-child{
    padding-top:0;
    border-top:0;
}

.page-agh .agh-structured-list,
.page-aktuell .agh-structured-list,
.page-tagungen .agh-structured-list{
    gap:0;
}

.page-agh .agh-structured-list-item,
.page-aktuell .agh-structured-list-item,
.page-tagungen .agh-structured-list-item{
    padding:18px 0;
    border:0;
    border-top:1px solid var(--agh-line);
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.page-agh .agh-structured-list-item:first-child,
.page-aktuell .agh-structured-list-item:first-child,
.page-tagungen .agh-structured-list-item:first-child{
    padding-top:0;
    border-top:0;
}

.page-kontakt .oesp-intro{
    display:block;
}

.page-kontakt .oesp-intro > h3,
.page-kontakt .oesp-intro > h4,
.page-kontakt .oesp-intro > p,
.page-kontakt .oesp-intro > ul{
    margin:0 0 18px;
}

.page-kontakt .oesp-intro > ul{
    display:grid;
    gap:14px;
    padding:0;
}

.page-kontakt .oesp-intro > ul li{
    padding:18px 20px 18px 34px;
    border:1px solid var(--agh-line);
    border-radius:18px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--agh-shadow);
    margin:0;
}

.page-kontakt .oesp-intro > ul li::before{
    left:18px;
    top:29px;
    transform:translateY(-50%);
}

.agh-page-content figure,
.oesp-intro figure{
    margin:22px 0;
}

.agh-page-content figcaption,
.oesp-intro figcaption{
    margin-top:8px;
    font-size:.92rem;
    color:var(--agh-muted);
}

/* ==============================
   Publikationen
   ============================== */

.oesp-list{
    display:grid;
    gap:28px;
}

.oesp-card{
    position:relative;
    border:1px solid var(--agh-line);
    border-radius:24px;
    background:rgba(255,255,255,.97);
    padding:28px 30px;
    transition:.2s;
    box-shadow:0 10px 24px rgba(44,37,27,.055);
}

.oesp-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(255,255,255,.34), transparent 40%);
}

.oesp-card:hover{
    box-shadow:0 14px 30px rgba(44,37,27,.065);
}

.oesp-row{
    display:flex;
    align-items:flex-start;
    gap:34px;
    flex-wrap:wrap;
}

.oesp-cover{
    flex:0 0 auto;
    width:144px;
}

.oesp-coverbox{
    width:144px;
    aspect-ratio:2/3;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
    background:#fcfaf6;
    box-shadow:0 12px 26px rgba(44,37,27,.08);
}

.oesp-coverbox img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .25s ease, box-shadow .25s ease;
}

.oesp-card:hover .oesp-coverbox img{
    transform:scale(1.04);
    box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.oesp-content{
    flex:1 1 400px;
    min-width:260px;
}

.oesp-series{
    margin:0 0 4px 0;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#8a8379;
}

.oesp-band{
    margin:0 0 14px;
    color:var(--agh-accent);
    font-size:.92rem;
    font-weight:600;
}

.oesp-title-wrap{
    margin:0 0 14px;
}

.oesp-title{
    margin:0;
    font-family:Georgia, "Times New Roman", serif;
    font-size:1.65rem;
    line-height:1.22;
    font-weight:700;
    color:#111;
}

.oesp-subtitle{
    display:block;
    margin-top:6px;
    margin-bottom:10px;
    font-size:1.05rem;
    font-weight:600;
    color:#333;
}

.oesp-editors{
    margin:0 0 16px;
    font-size:.98rem;
    color:#5b554d;
}

.oesp-links{
    margin:14px 0 18px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.oesp-links a{
    display:inline-block;
    padding:9px 14px;
    border:1px solid rgba(31,95,120,.10);
    border-radius:999px;
    background:rgba(244,249,250,.82);
    color:var(--agh-accent);
    font-weight:700;
    font-size:.9rem;
    text-decoration:none;
}

.oesp-links a:hover{
    background:rgba(236,245,247,.95);
    text-decoration:none;
}

.oesp-excerpt{
    max-width:56ch;
    font-size:1rem;
    color:#4a443d;
}

.oesp-meta{
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid var(--agh-line);
    display:grid;
    gap:6px;
}

.oesp-meta-item{
    display:block;
    padding:0;
    border-radius:0;
    background:none;
    color:#625b53;
    font-size:.92rem;
}

.oesp-meta-label{
    display:inline;
    margin-right:6px;
    font-size:.92rem;
    font-weight:600;
    letter-spacing:0;
    text-transform:none;
    color:#7a7268;
}

/* ==============================
   Footer
   ============================== */

footer{
    margin-top:40px;
    padding:38px 0;
    border-top:1px solid var(--agh-line);
    font-size:.9rem;
    color:var(--agh-muted);
    text-align:center;
    background:rgba(255,255,252,.72);
}

/* ==============================
   Responsive
   ============================== */

@media (max-width:900px){
    .agh-nav{
        display:none;
    }

    .agh-search{
        display:none;
    }

    .agh-burger{
        display:flex;
    }
}

@media (max-width:700px){
    .agh-page-hero{
        padding:18px 0 10px;
    }

    .agh-page-hero h1,
    .oesp-wrap > h1{
        font-size:1.9rem;
    }

    .agh-page-card{
        padding:30px 24px;
        border-radius:18px;
    }

    .page-aktuell .oesp-intro > p:has(img){
        grid-template-columns:1fr;
    }

    .page-kontakt .agh-structured-list-item{
        grid-template-columns:1fr;
        gap:10px;
    }

    .agh-structured-feature,
    .agh-structured-list-item{
        grid-template-columns:1fr;
        gap:16px;
    }
}

@media (max-width:480px){
    .agh-main{
        padding:34px 0 42px;
    }

    .oesp-row{
        gap:20px;
    }

    .oesp-cover{
        width:116px;
    }

    .oesp-coverbox{
        width:116px;
    }

    .oesp-title{
        font-size:1.35rem;
    }

    .oesp-subtitle{
        font-size:.98rem;
    }

    .agh-page-hero h1,
    .oesp-wrap > h1{
        font-size:1.65rem;
    }
}
/* ==============================
   Mobile Optimierung Publikationen
   ============================== */

@media (max-width:650px){

.oesp-row{
flex-direction:column;
align-items:flex-start;
gap:16px;
}

.oesp-cover{
width:124px;
}

.oesp-coverbox{
width:124px;
}

.oesp-content{
width:100%;
}

.oesp-title{
font-size:1.25rem;
}

.oesp-subtitle{
font-size:0.98rem;
}

.oesp-links{
margin-top:6px;
}

.oesp-links a{
font-size:.85rem;
padding:6px 10px;
}
}
