/*@import url('https://fonts.googleapis.com/css2?family=Exo:wght@600;700&family=Merriweather:ital,wght@0,300;0,700;1,300&display=swap');*/

@font-face {
    font-family: 'Merriweather';
    src: url('/longreads/fonts/Merriweather-Regular.woff2') format('woff2'),
        url('/longreads/fonts/Merriweather-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/longreads/fonts/Merriweather-Italic.woff2') format('woff2'),
        url('/longreads/fonts/Merriweather-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('/longreads/fonts/Exo-VariableFont_wght.woff2') format('woff2'),
        url('/longreads/fonts/Exo-VariableFont_wght.woff') format('woff');
    font-weight: normal;
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('/longreads/fonts/Exo-Italic-VariableFont_wght.woff2') format('woff2'),
        url('/longreads/fonts/Exo-Italic-VariableFont_wght.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



:root {
    --main-bg-color: #fef9f3;
    --main-text-color: #222;
    --second-color: #ab6e9c;
    --third-color: #028fcf; 
    --font-sans: 'Exo', Helvetica, Arial, sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.3;
}

.jumbotron,
.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2% 0 2.5%;
}

:focus {
    outline: 2px dotted var(--third-color);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

h1, h2, h3 {
    font-family: var(--font-sans);
    font-weight: bold;
}

a {
    color: var(--second-color);
    text-decoration-style: solid;
    text-decoration-color: var(--second-color);
    text-decoration-thickness: 2px;
}

a:hover {
    text-decoration-color: var(--second-color);
}

.right {
    float: right;
}

.left {
    float: left;
}

.center {
    margin: 0 auto;
}

.jumbotron header h1 {
    color: var(--second-color);
    font-size: 3rem;
    font-size: clamp(3rem, 4.5vw, 3.5rem); 
    text-align: center;
    margin: 20px 0;
}

.jumbotron .intro p {
    margin: 2% 0;
    font-weight: bold;
    font-size: 1.8rem;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.jumbotron img {
    text-align: center;
}

article .informatica,
article .maritiem,
article .crossmediale,
article .business {
   columns: 300px 2;
   column-gap: 40px;
   margin-top: 10%;
}

.maritiem img,
.business blockquote {
    column-span: all; 
}

article div p:first-of-type:first-letter {
    color: var(--second-color);
    font-weight: bold;
    font-size: 2rem;
    font-size: clamp(1.8rem, 1.2vw, 2rem); 
}


article h2 {
    color: var(--second-color);
    font-size: 2rem;
    font-size: clamp(1.8rem, 2vw, 2rem);
    border: 5px double var(--second-color);
    padding: 2%;
    display: block;
    text-align: center;
}

article h3 {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    line-height: 1.5;
    margin-top: 15px;

}

article p {
    font-size: 1.3rem;
    font-size: clamp(1.1rem, 1.2vw, 1.3rem); 
    line-height: 1.8;
    margin: 14px 0;
}

article blockquote p {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-size: clamp(1.8rem, 1.5vw, 2.2rem); 
    text-align: center;
    margin: 6% 0;
}
article div blockquote p:first-of-type::first-letter {
    color: var(--main-text-color) !important;
}
article blockquote span {
    color: var(--second-color);
}

.credits {
    display: inline-block;
    margin: 20px 0;
    border-top: 3px solid var(--main-text-color);
    padding-top: 2%;
}

.naschrift {
    display: block;
    border: 3px solid var(--third-color);
    font-family: var(--font-sans);
    margin: 20px 0;
    padding: 2%;
    font-weight: normal;
}