/*
Theme Name: haf
Theme URI: http://www.hannah-arendt-fellowships.de
Author: KMD Medien GmbH
Author URI: https://www.kmd.de
Description: Hannah Arendt Fellowships WordPress-Theme
Version: 1.0.2

------------------------------------------------------------------------
Build in: 03.2026
Last update: 19.03.2026
Copyright: KMD Medien GmbH – www.kmd.de
Made and Maintained with ♥ by KMD®
------------------------------------------------------------------------
*/


/*----------------------------------------------------------------------
Fonts
----------------------------------------------------------------------*/

/* archivo-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/archivo-v25-latin-regular.woff2') format('woff2');
    }

/* archivo-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/archivo-v25-latin-600.woff2') format('woff2');
    }


/*----------------------------------------------------------------------
colors
----------------------------------------------------------------------*/

:root {
    --haf-orange: #be4623;
    --haf-darkblue: #283c46;
    --haf-light: #d7c89b;
    --haf-white: #ffffff;
    
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --border-radius: 50px;
    }


/*----------------------------------------------------------------------
global structure & normalize
----------------------------------------------------------------------*/

html {
    font-size: 10px;
    line-height: 1.6;
    scroll-behavior: smooth;
    }

*, *::before, *::after {
    box-sizing: border-box;
    }

body {
    margin: 0;
    border: 0 none;
    padding: 0;
    color: var(--haf-darkblue);
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 1.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    }

p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form, fieldset, legend, img {
    margin: 0;
    border: 0 none;
    padding: 0;
    }

p, h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    }
 
button, input, input[type="submit"], select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    text-transform: none;
    }

button, input[type="submit"], select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    }

textarea {
    overflow: auto;
    }

a {
    color: var(--haf-orange);
    text-decoration: none;
    transition: all 0.5s ease;
    }

a:hover, a:active {
    color: var(--haf-darkblue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-style: solid;
    outline-width: 0;
    }

a:focus-visible {
    outline: 1px solid var(--haf-orange);
    outline-offset: 5px;
    }

mark {
    background-color: var(--haf-orange);
    color: var(--haf-white);
    padding: 1px 3px;
    border-radius: var(--border-radius);
    }

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }

sub {
    bottom: -0.25em;
    }

sup {
    top: -0.5em;
    }
    
strong {
    font-weight: var(--font-weight-bold);
    }

.wrapper {
    margin: 0px auto;
    max-width: 1440px;
    padding: 0 25px;
    }

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    }

.skip-link:focus {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 10px;
    background: var(--haf-orange);
    color: var(--haf-white);
    text-decoration: none;
    z-index: 4000;
    display: inline-block;
    clip: auto;
    overflow: visible; 
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        }
}


/*----------------------------------------------------------------------
Forms
----------------------------------------------------------------------*/

.button-first,
a.button-first,
a span.button-first,
span.button-first a {
    color: var(--haf-white);
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: var(--font-weight-bold);
    background: var(--haf-orange);
    border: 2px solid var(--haf-orange);
    padding: 8px 20px 8px 20px;
    transition: all 0.5s ease;
    }

.button-first:hover,
a.button-first:hover,
a:hover span.button-first,
span.button-first a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    background-color: var(--haf-white);
    border: 2px solid var(--haf-orange);
    color: var(--haf-orange) !important;
    } 

.button-second,
a.button-second,
a span.button-second,
span.button-second a {
    color: var(--haf-orange);
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: var(--font-weight-bold);
    background-color: var(--haf-white);
    border: 2px solid var(--haf-orange);
    padding: 8px 20px 8px 20px;
    transition: all 0.5s ease;
    }

.button-second:hover,
a.button-second:hover,
a:hover span.button-second,
span.button-second a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-style: solid;
    outline-width: 0;
    background-color: var(--haf-orange);
    border: 2px solid var(--haf-orange);
    color: var(--haf-white) !important;
    }
    
form * {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 1px solid var(--haf-orange);
    outline-offset: 5px;
    box-shadow: none;
    }


/*----------------------------------------------------------------------
Header
----------------------------------------------------------------------*/

header * {
    transition: color 0.5s ease, background 0.5s ease;
    }

.header-items {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.0);
    transition: all 0.5s ease;
    }

.header-items .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0px 25px 40px 25px;
    transition: all 0.5s ease;
    }
 
.portal-logo {
    font-size: 0;
    line-height: 0;
    background: url(img/haf-logo.svg) left center no-repeat;
    background-size: auto 200px;
    }

.header-items .portal-logo a {
    display: block;
    width: 200px;
    height: 200px;
    }
 
.header-items .nav-and-info {
    text-align: right;
    list-style: none;
    margin: 40px 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    }

.meta-navigation {
    margin: 0 0 20px 0;
    }

.meta-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

.meta-navigation li {
    display: inline-block;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0 20px;
    }

.meta-navigation li a {
    color: var(--haf-orange);
    display: block;
    }

.meta-navigation li a:hover {
    color: var(--haf-orange);
    }

.meta-search {
    padding: 0 0 0 30px;
    background: url(img/icon-search-orange.svg) no-repeat center left;
    background-size: 20px 20px;
    }

.meta-language {
    padding: 0 0 0 30px;
    background: url(img/icon-language-orange.svg) no-repeat center left;
    background-size: 20px 20px;
    }

.meta-contact {
    padding: 0 0 0 30px;
    background: url(img/icon-contact-orange.svg) no-repeat center left;
    background-size: 20px 20px;
    }

.nav-and-info nav {
    transition: none;
    }

.nav-and-info nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

.nav-and-info nav li {
    position: relative;
    }

.nav-and-info nav a {
    display: block;
    color: var(--haf-darkblue);
    font-weight: var(--font-weight-bold);
    padding: 10px 0;
    }

.nav-and-info nav a:hover,
.nav-and-info nav a:focus {
    color: var(--haf-orange);
    }

.nav-and-info #menu-toggle {
    display: none;
    }

.nav-and-info nav div > ul {
    display: flex;
    gap: 30px;
    }

.nav-and-info nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--haf-white);
    border: 1px solid var(--haf-light);
    min-width: 200px;
    text-align: left;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    }

.nav-and-info nav li ul a {
    padding: 5px 10px;
    }

.nav-and-info nav li ul li {
    border-bottom: 1px solid var(--haf-light);
    }

.nav-and-info nav li ul li:last-child {
    border-bottom: 0;
    }

.nav-and-info nav li ul li ul {
    left: 100%;
    top: calc(0% - 1px);
    }

.nav-and-info nav li:hover > ul,
.nav-and-info nav li:focus-within > ul {
    display: block;
    }

.while-scrolling {
    background-color: rgba(255, 255, 255, 1.0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2001;
    }

.while-scrolling .wrapper {
    padding: 20px 25px;
    align-items: center;
    }

.while-scrolling .portal-logo {
    background: url(img/haf-logo.svg) left center no-repeat;
    background-size: auto 120px;
    margin: 0;
    }

.while-scrolling .portal-logo a {
    width: 120px;
    height: 120px;
    }

.while-scrolling .nav-and-info {
    margin: 0;
    }

.scroll-up {
    top: -250px;
    }


/*----------------------------------------------------------------------
Stage
----------------------------------------------------------------------*/

.hero-image {
    line-height: 0;
    max-height: 70vh;
    overflow: hidden;
    }

.hero-image img {
    width: 100%;
    height: auto;
    }

.hero-teaser {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 40px;
    margin-top: -80px;
    }

.info-teaser {
    position: relative;
    width: 50%;
    padding: 40px;
    border: 2px solid var(--haf-orange);
    margin-top: 120px;
    }

.topic-teaser {
    position: relative;
    width: 50%;
    background: var(--haf-orange);
    color: var(--haf-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    padding: 40px;
    }

.topic-teaser .button-first{
    background: var(--haf-orange);
    border: 2px solid var(--haf-white);
    }

.topic-teaser .button-first:hover {
    border: 2px solid var(--haf-white);
    } 

.info-teaser .is-headline {
    display: block;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 0;
    }

.topic-teaser .is-headline {
    display: block;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 0 0 20px 0;
    }

.hero-teaser p {
    margin: 0 0 40px 0;
    }


/*----------------------------------------------------------------------
Main
----------------------------------------------------------------------*/

main {
    margin-top: 160px;
    }

.main-content h1 {
    font-size: 4.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 40px 0 20px 0;
    }
    
.main-content h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 40px 0 20px 0;
    }

.main-content h3 {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h4 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h5 {
    font-size: 2.0rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }
    
.main-content h6 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    margin: 40px 0 20px 0;
    }

.main-content p {
    margin: 0 0 40px 0;
    }

.main-content ul,
.main-content ol {
    margin: 0 0 40px 0;
    padding: 0 0 0 20px;
    }

.main-content ul li,
.main-content ol li {
    margin: 0 0 5px 0;
    }

.main-content img,
.main-content .wp-caption {
    max-width: 100%;
    height: auto;
    }

.main-content .alignleft {
    float: left;
    margin: 40px 40px 40px 0;
    }

.main-content .alignright {
    float: right;
    margin: 40px 0 40px 40px;
    }

.main-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    }

.main-content .responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    }
    
.main-content table {
    border: 0 none;
    border-collapse: collapse;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-header {
    background: var(--haf-orange) !important;
    transition: all 0.5s ease;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-header:hover {
    background: var(--haf-darkblue) !important;
    }

.main-content .sow-accordion .sow-accordion-panel .sow-accordion-panel-content .sow-accordion-panel-border {
    background: var(--haf-light) !important;
    }
    
.notfound-content {
	background: var(--haf-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    padding: 40px 40px 1px 40px;
    }

.notfound-content img {
    width: 100px;
    max-width: 100%;
    height: auto;
    }
    

/*----------------------------------------------------------------------
Fellows
----------------------------------------------------------------------*/

.fellows-area {
    background: var(--haf-light);
    padding: 60px 0 0 0;
    }

.fellows-area h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 0 0 20px 0;
    }

.fellows-grid {
    position: relative;
    margin: -80px 0 0 0;
    top: 80px;
    }

.fellows-grid ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 40px;
    }

.fellows-grid li {
    }

.fellows-item {
    position: relative;
    display: block;
    min-height: 260px;
    text-decoration: none;
  	overflow: hidden;
    }

.fellows-item-bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    }

.fellows-item-content {
  	position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-height: 260px;
    width: 100%;
    background-color: transparent;
    padding: 20px;
    color: transparent;
    transition: all 0.5s ease;
    }

.fellows-item:hover {
    text-decoration: none;
    }

.fellows-item:hover .fellows-item-content {
    background-color: var(--haf-orange);
    color: var(--haf-white);
    }

.fellows-item .fellows-item-name {
    display: inline-block;
    font-weight: var(--font-weight-bold);
    padding: 20px;
    transition: all 0.5s ease;
    }


/*----------------------------------------------------------------------
News
----------------------------------------------------------------------*/
    
.news-area {
    margin: 160px 0 0 0;
    }

.news-area h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: var(--font-weight-normal);
    margin: 0 0 20px 0;
    }

.here-news-items {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; 
    gap: 40px;
    width: 100%;
    }   

.here-news-items article {
    position: relative;
    width: calc((100% - 80px) / 3);
    background: var(--haf-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    padding: 0 0 60px 0;
    }

.news-item-image { 
    display: block;
    overflow: hidden;
    }

.single-item-image {
    display: block;
    height: 300px;
    width: 100.1%;
    font-size: 0;
    line-height: 0;
    will-change: transform;
    transition: transform 1s ease;
    }

.single-item-image img {
    width: 100%;
    height: auto;
    }

.news-item-image:hover .single-item-image {
    transform: scale(1.05);
    }

.ni-header .ni-aside {
    position: relative;
    width: 100%;
    margin: -40px 0 0 0;
    text-align: right;
    z-index: 1;
    }

.ni-category a {
    display: inline-block;
    background: var(--haf-white);
    padding: 15px 20px;
    }

.ni-body {
    position: relative;
    padding: 0 40px 40px 40px;
    }

.ni-body h3 {
    font-weight: var(--font-weight-normal);
    font-size: 2.8rem;
    line-height: 1.3;
    padding: 20px 0 20px 0;
    }

.ni-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    }

.ni-bottom time {
    display: block;
    font-weight: var(--font-weight-bold);
    }

.news-bottom {
    width: 100%;
    text-align: center;
    padding: 40px 0 0 0;
    }

/*----------------------------------------------------------------------
Footer
----------------------------------------------------------------------*/

footer {
    color: var(--haf-white);
    margin: 90px 0 0 0;
    }

.footer-ground {
    background: var(--haf-darkblue);
    }

.footer-top-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 60px 0;
    }

.footer-ground-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 0 0 60px 0;
    }

.footer-top-items article,
.footer-ground-items article {
    width: 50%;
    }

.footer-logo {
    font-size: 0;
    line-height: 0;
    background: url(img/haf-text-logo.svg) left center no-repeat;
    background-size: 180px auto;
    width: 180px;
    margin: 0 auto;
    }

.footer-logo a {
    display: block;
    width: 180px;
    height: 110px;
    }

.footer-sponsor ul {
    list-style: none;
    text-align: right;
    }

.footer-sponsor li {
    display: inline-block;
    margin: 0 0 0 40px;
    }

.footer-sponsor a {
    display: block;
    line-height: 0;
    }

.footer-sponsor img {
    width: auto;
    height: 60px;
    }

.footer-menu ul {
    list-style: none;
    margin: 0 0 20px 0;
    }

.footer-menu li {
    display: inline-block;
    margin: 0 20px 0 0;
    }

.footer-menu li a {
    display: inline-block;
    font-weight: var(--font-weight-bold);
    color: var(--haf-white);
    }

.footer-copyright {
    text-align: right;
    }


/*----------------------------------------------------------------------
Tablet-Styles (Landscape) and Touch-Devices
----------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) { 
   
   .wrapper {
        max-width: 100%;
        }

    .while-scrolling .wrapper {
        padding: 0 25px;
        align-items: flex-start;
        }

    .while-scrolling .portal-logo {
        position: relative;
        margin: 0 0 -20px 0;
        }

    .header-items .nav-and-info {
        margin: 40px 80px 0 0;
        }

    main {
        margin-top: 140px;
        }
    
    .here-news-items article {
        width: 100%;
        padding: 0 0 20px 0;
        }
        
    .ni-body {
        padding: 0 20px 0 20px;
        }

    .ni-body h3 {
        padding: 0;
        }        
        
    .ni-bottom {
        position: relative;
        padding: 20px 0 0 0;
        bottom: 0px;
        left: 20px;
        }

    .fellows-item-content {
        color: var(--haf-white);
        padding: 0;
        }

    .fellows-item .fellows-item-name {
        padding: 10px 20px;
        width: 100%;
        background: var(--haf-orange);
        }

    .footer-top-items {
        display: block;
        }
    
    .footer-ground-items {
        display: block;
        }
    
    .footer-top-items article,
    .footer-ground-items article {
        width: auto;
        text-align: center;
        }    
    
    .footer-logo {
        background: url(img/haf-text-logo.svg) center center no-repeat;
        background-size: 180px auto;
        width: 180px;
        margin: 0 auto;
        }
    
    .footer-logo a {
        width: 180px;
        margin: 0 auto;
        }    
    
    .footer-sponsor ul {
        margin: 60px 0 0 0;
        text-align: center;
        }

    .footer-sponsor li {
        display: inline-block;
        margin: 0 20px;
        }

    .footer-menu ul {
        border-bottom: 1px solid var(--haf-white);
        }

    .footer-menu li {
        display: block;
        margin: 0;
        border-top: 1px solid var(--haf-white);
        }

    .footer-menu li a {
        display: block;
        padding: 10px 0;
        }

}


@media only screen and (max-width: 1024px), (hover: none) and (pointer: coarse) {

    .nav-and-info #menu-toggle {
        width: 40px;
        height: 40px;
        background: url(img/icon-menu-orange.svg) no-repeat center center;
        background-size: 40px 40px;
        border: none;
        cursor: pointer;
        display: inline-block;
        z-index: 3000;
        position: absolute;
        top: 35px;
        right: 25px;
        transition: none;
        }
    
    .nav-and-info #menu-toggle[aria-expanded="true"] {
        position: fixed;
        background: url(img/icon-close-orange.svg) no-repeat center center;
        background-size: 40px 40px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: inline-block;
        transition: none;
        }

    .nav-and-info nav {
        position: fixed;
        z-index: 2002;
        background: var(--haf-white);
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        text-align: left;
        left: 0;
        top: 0;
        padding: 120px 25px 0 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        }
    
    .nav-and-info nav.show-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
        }
    
    .nav-and-info nav div > ul {
        display: block;
        gap: 0;
        }
    
    .nav-and-info nav ul {
        display: block;
        border-top: 1px solid var(--haf-darkblue);
        }

    .nav-and-info nav li ul {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        border: 0;
        width: 100%;
        box-shadow: 0px 0px 0px transparent;
        }

    .nav-and-info nav li a {
        padding: 10px 0px;
        border-bottom: 1px solid var(--haf-darkblue);
        }
        
    .nav-and-info nav li ul a {
        padding: 10px 0 10px 10px;
        }

    .nav-and-info nav li ul ul a {
        padding: 10px 0 10px 20px;
        }

    .nav-and-info nav li ul ul ul a {
        padding: 10px 0 10px 30px;
        }

    .nav-and-info nav li ul li {
        border-bottom: 0;
        }

    .nav-and-info nav.show-menu li ul {
        display: block;
        }
        
    .nav-and-info nav li ul li ul {
        left: 0;
        top: 0;
        }
      
}


/*----------------------------------------------------------------------
Mobile-Styles
----------------------------------------------------------------------*/

@media only screen and (max-width: 700px) { 

    html {
        font-size: 9px;
        line-height: 1.5;
        }

    .wrapper {
        padding: 0 20px;
        }

    .header-items .wrapper {
        padding: 0 20px;
        }

     .portal-logo {
        background: url(img/haf-logo.svg) left center no-repeat;
        background-size: auto 120px;
        }
    
    .header-items .portal-logo a {
        width: 120px;
        height: 120px;
        }

    .header-items .nav-and-info {
        margin: 20px 70px 0 0;
        }

    .meta-navigation {
        margin: 0;
        }

    .meta-navigation li {
        margin: 0 0 0 10px;
        }

    .meta-navigation li a {
        font-size: 0;
        line-height: 0;
        width: 30px;
        height: 30px;
        }

    .meta-search,
    .meta-language,
    .meta-contact {
        padding: 0;
        background-size: 30px 30px;
        }

    .nav-and-info #menu-toggle {
        top: 30px;
        right: 20px;
        }

    .nav-and-info nav {
        padding: 100px 20px 0 20px;
        }

    .hero-teaser {
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: -40px;
        }
    
    .topic-teaser {
        margin: 0 0 20px 0;
        padding: 20px;
        width: 100%;
        }

    .info-teaser {
        width: 100%;
        padding: 20px;
        margin-top: 0px;
        }

    main {
        margin-top: 100px;
        }

    .main-content .alignleft,
    .main-content .alignright {
        float: none;
        margin: 0 0 40px 0;
        }
    
    .footer-sponsor li {
        display: block;
        margin: 30px 0;
        }

}
