/* =========================================================
   Gedankenplanet
   ========================================================= */


/* ---------------------------------------------------------
   GRUNDLAGEN
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}


html {
    background: #f2efe9;
}


body {
    margin: 0;

    min-height: 100vh;

    background: #f2efe9;

    color: #302e2a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.05rem;

    line-height: 1.75;
}


/* =========================================================
   SEITE
   ========================================================= */

.page {
    width: min(100%, 1080px);

    min-height: 100vh;

    margin: 0 auto;

    background: #ffffff;
}


/* =========================================================
   INHALT
   ========================================================= */

.content {
    width: calc(100% - 8rem);

    max-width: 880px;

    margin: 0 auto;

    background: #ffffff;
}


/* =========================================================
   SEITEN-HEADER
   ========================================================= */

.content > header {
    padding-top: 42px;
}


/* ---------------------------------------------------------
   SITE-TITEL
   --------------------------------------------------------- */

.site_title {
    margin: 0;

    color: #665f54;

    font-size: 1.35rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.01em;
	
	font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* ---------------------------------------------------------
   SITE-BESCHREIBUNG
   --------------------------------------------------------- */

.site_description {
    max-width: 760px;

    margin: 8px 0 0;

    color: #958d81;

    font-size: 0.86rem;

    line-height: 1.55;
	
	font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.content > nav {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}


/* ---------------------------------------------------------
   NAVIGATIONSBUTTONS
   --------------------------------------------------------- */

.content > nav a,
.content > footer nav a {
    display: inline-block;

    padding: 8px 15px;

    background: #eee9df;

    border: 1px solid #d5cec1;

    border-radius: 7px;

    color: #514b43;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;

    line-height: 1.25;

    text-decoration: none;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}


.content > nav a:hover,
.content > footer nav a:hover {
    color: #292621;

    background: #e4ddd1;

    border-color: #bdb4a6;

    transform: translateY(-1px);
}


.content > nav a:focus-visible,
.content > footer nav a:focus-visible {
    outline: 3px solid #b8c7b1;

    outline-offset: 2px;
}


/* =========================================================
   TRENNUNG ZWISCHEN NAVIGATION UND INHALT
   ========================================================= */

.content > nav:last-of-type {
    padding-bottom: 30px;

    border-bottom: 2px solid #B49B73;
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    padding-top: 0;

    padding-bottom: 70px;
}


main > article {
    width: 100%;
}


/* =========================================================
   ARTIKEL-HEADER
   ========================================================= */

main > article > header {
    max-width: 760px;

    margin-top: 58px;
}


/* ---------------------------------------------------------
   SUMMARY
   --------------------------------------------------------- */

.article_summary {
    margin: 0 0 26px;

    color: #837b70;

    font-size: 0.92rem;

    line-height: 1.7;
	
	
}


/* ---------------------------------------------------------
   TITEL
   --------------------------------------------------------- */

.article_title {
    margin: 0;

    color: #24221f;
	
	font-size: clamp(2.3rem, 5vw, 3.8rem);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.025em;
	
	text-shadow: 3px 3px 3px #c8c8c8;
}


/* ---------------------------------------------------------
   BESCHREIBUNG
   --------------------------------------------------------- */

.article_description {
    max-width: 760px;

    margin: 18px 0 0;

    color: #665f56;

    font-size: 1.18rem;

    line-height: 1.55;
	
	text-shadow: 1px 1px 1px #c8c8c8;
}


/* ---------------------------------------------------------
   FEINE TRENNUNG
   --------------------------------------------------------- */

main > article > header::after {
    display: block;

    width: 55px;

    height: 2px;

    margin-top: 34px;

    background: #b49b73;

    content: "";
}


/* =========================================================
   ARTIKELTEXT
   ========================================================= */

main > article > section {
    max-width: 760px;

    margin-top: 48px;
}


main > article > header + section {
    margin-top: 58px;
}


main > article > section + section {
    margin-top: 64px;
}


/* ---------------------------------------------------------
   ÜBERSCHRIFTEN
   --------------------------------------------------------- */

main > article > section h2 {
    margin: 0 0 20px;

    color: #3d3933;
	
	font-size: 1.65rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.01em;
	
	text-shadow: 2px 2px 2px #c8c8c8;
}


/* ---------------------------------------------------------
   ABSÄTZE
   --------------------------------------------------------- */

main > article > section p {
    margin: 0 0 1.15em;
}


main > article > section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LISTEN
   ========================================================= */

main ul,
main ol {
    margin-top: 1.15em;
    margin-bottom: 1.15em;
    list-style: none;
}

main li {
    margin-bottom: 0.35em;
}

main li::before {
    content: "\1F4D9";
    margin-right: 0.5em;
}

main li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ZITATE
   ========================================================= */

main > article blockquote {
    margin: 30px 0;

    padding: 18px 24px 18px 28px;

    background: #f0ece4;

    border-left: 3px solid #b49b73;

    color: #5d574e;
}


/* =========================================================
   LINKS
   ========================================================= */

main > article a {
    color: #685b4b;

    text-decoration: underline;

    text-decoration-color: #b8a991;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;
}


main > article a:hover {
    color: #302a23;
}


/* =========================================================
   FOOTER
   ========================================================= */

.content > footer {
    padding-top: 28px;

    padding-bottom: 42px;

    border-top: 2px solid #B49B73;
}


.content > footer nav {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


/* =========================================================
   RSS-FEED
   ========================================================= */

.feed-box {
    max-width: 760px;

    margin-top: 48px;

    padding: 28px 30px;

    background: #f0ece4;

    border: 1px solid #ddd5c8;

    border-radius: 8px;
}


.feed-box p {
    margin: 0 0 1.15em;
}


.feed-box p:last-child {
    margin-bottom: 0;
}


.feed-url {
    margin: 26px 0;

    padding: 16px 20px;

    overflow-wrap: anywhere;

    background: #faf8f4;

    border: 1px solid #d5cec1;

    border-radius: 6px;
}


.feed-url a {
    color: #5f5548;

    font-family:
        "Courier New",
        Courier,
        monospace;

    font-size: 0.95rem;

    font-weight: 600;

    text-decoration: none;
}


.feed-url a:hover {
    color: #302a23;

    text-decoration: underline;

    text-decoration-color: #b8a991;

    text-underline-offset: 3px;
}


.feed-note {
    color: #837b70;

    font-size: 0.88rem;

    line-height: 1.6;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
    max-width: 760px;

    margin: 58px auto 70px;
}


.newsletter h1 {
    margin: 0 0 18px;

    color: #24221f;

    font-size: clamp(2.3rem, 5vw, 3.8rem);

    line-height: 1.1;
}


.newsletter form {
    margin-top: 38px;
}


.newsletter .field {
    margin-bottom: 1.35rem;
}


.newsletter label {
    display: block;

    margin-bottom: 0.45rem;

    color: #3d3933;

    font-weight: 700;
}


.newsletter input,
.newsletter select {
    width: 100%;

    padding: 10px 12px;

    background: #faf8f3;

    border: 1px solid #d5cec1;

    border-radius: 7px;

    color: #302e2a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;

    line-height: 1.5;
}


.newsletter input:focus,
.newsletter select:focus {
    outline: none;

    background: #ffffff;

    border-color: #b8a991;

    box-shadow: 0 0 0 3px rgba(184, 169, 145, 0.18);
}


.newsletter button {
    padding: 8px 15px;

    background: #eee9df;

    border: 1px solid #d5cec1;

    border-radius: 7px;

    color: #514b43;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;

    cursor: pointer;
}


.newsletter button:hover {
    color: #292621;

    background: #e4ddd1;

    border-color: #bdb4a6;
}


.newsletter button:focus-visible {
    outline: 3px solid #b8c7b1;

    outline-offset: 2px;
}


.newsletter .message,
.newsletter .error {
    padding: 16px 18px;

    border-radius: 7px;

    line-height: 1.6;
}


.newsletter .message {
    color: #53604f;

    background: #eef2ea;

    border: 1px solid #cbd5c5;
}


.newsletter .error {
    color: #70544e;

    background: #f4ece8;

    border: 1px solid #ddc9c1;
}


.newsletter .privacy {
    margin-top: 2rem;

    color: #837b70;

    font-size: 0.86rem;

    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .content {
        width: calc(100% - 2rem);
    }


    .content > header {
        padding-top: 26px;
    }


    .site_title {
        font-size: 1.18rem;
    }


    .site_description {
        font-size: 0.82rem;
    }


    .content > nav {
        margin-top: 23px;
    }


    .content > nav a,
    .content > footer nav a {
        padding: 7px 11px;

        font-size: 0.78rem;
    }


    main > article > header {
        margin-top: 42px;
    }


    .article_summary {
        margin-bottom: 21px;

        font-size: 0.88rem;
    }


    .article_title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }


    .article_description {
        margin-top: 15px;

        font-size: 1.05rem;
    }


    main > article > section {
        max-width: none;
    }


    main > article > header + section {
        margin-top: 45px;
    }


    main > article > section + section {
        margin-top: 50px;
    }


    main > article > section h2 {
        margin-bottom: 16px;

        font-size: 1.45rem;
    }


    .feed-box {
        padding: 22px 20px;
    }


    .newsletter {
        margin-top: 42px;

        margin-bottom: 50px;
    }


    .newsletter h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }


    .newsletter form {
        margin-top: 32px;
    }


    .newsletter input,
    .newsletter select {
        padding: 9px 11px;
    }

}


/* =========================================================
   SEHR KLEINE BILDSCHIRME
   ========================================================= */

@media (max-width: 420px) {

    .content {
        width: calc(100% - 1.25rem);
    }


    .site_description {
        font-size: 0.79rem;
    }


    .article_title,
    .newsletter h1 {
        font-size: 1.9rem;
    }


    .article_description {
        font-size: 1rem;
    }


    main > article > section h2 {
        font-size: 1.35rem;
    }


    .feed-box {
        padding: 20px 16px;
    }


    .feed-url {
        padding: 13px 12px;
    }


    .feed-url a {
        font-size: 0.8rem;
    }


    .newsletter {
        margin-top: 35px;
    }


    .newsletter .privacy {
        font-size: 0.79rem;
    }

}
