﻿
body {
    background-color: #D1C9EC;
    margin: 0;
    padding: 0;
    font-family: 'PT Serif';
    font-size: 20px;
}

.surrounding-posts-group {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    margin-left: 39.5vw;
    margin-right: 25vw;
}

.surrounding-posts {
    display: block;
    line-height: 1.8rem;
}

.surrounding-posts:link {
    color: #6b5c9c;
}

.surrounding-posts strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: -0.3rem;
    text-decoration: none;
}

.surrounding-posts strong span {
    display: none;
}

a.surrounding-posts {
    text-decoration: none;
    margin-bottom: 0.5rem;
}





header {
    min-height: 15vh;
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-height: 320px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
    background-color: rgba(255, 255, 255, 0.25);
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}



nav {
    position: absolute;
    left: 39.5vw;
    bottom: 2rem;
}

nav a {
    background-color: white;
    transition: opacity 0.2s;
    opacity: 0.8;
    color: #555;
    padding: 0.35rem;
    padding-top: 0.3rem;
    font-size: 0.8rem;
    border-radius: 0.6rem;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07);
}

nav a + a {
    margin-left: 1rem;
}

nav a:hover {
    opacity: 0.95;
    transition: opacity 0.2s;
    }

header h1 {
    font-family: 'PiqueWeb';
    font-weight: normal;
    font-size: 48pt;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 35vw;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-bottom: 1rem;
}

header h1 span {
    background: linear-gradient(190deg, #6b5c9c, #3f5cec);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-transform: lowercase;
}

article a:link {
    color: #6b5c9c;
}


article {
    display: grid;
    grid-template-areas: "gutter gutter header" "aside gutter2 txt";
    grid-template-columns: 35vw 4.5vw 1fr;
}


article h2 {
    grid-area: header;
    margin: 0;
    padding: 0;
    font-size: 1.85rem;
    text-rendering: optimizeLegibility;
    line-height: 1.35em;
    margin-top: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
    max-width: 40rem;
    margin-right: 2rem;
}

article aside {
    grid-area: aside;
    text-align: right;
    opacity: 0.45;
}


article aside a:link {
    text-decoration: none;
}

article aside:hover {
    opacity: 0.55;
}

article p {
    margin: 0;
    padding: 0;
    line-height: 1.85rem;
}

article p + p, article li + li {
    margin-top: 0.9rem;
}

article {
    margin-bottom: 2rem;
}

blockquote {
    border-left: 2px solid rgba(0, 0, 0, 0.12);
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

article section {
    grid-area: txt;
    max-width: 40rem;
    margin-right: 2rem;
    /*background-color: #f1f1f1;
		padding: 1rem;
box-shadow: 0 1px 2px rgba(0,0,0,0.07), 
            0 2px 4px rgba(0,0,0,0.07), 
            0 4px 8px rgba(0,0,0,0.07), 
            0 8px 16px rgba(0,0,0,0.07),
            0 16px 32px rgba(0,0,0,0.07), 
            0 32px 64px rgba(0,0,0,0.07);*/
}

footer {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.10));
    padding: 1rem;
    padding-left: 39.5vw;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    color: #928CA5;
    text-align: left;
    font-size: 16px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #6b5c9c;
}


@media all and (max-width: 736px) {
    article {
        grid-template-areas: "header" "aside" "txt";
        grid-template-columns: 1fr;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    nav {
        right: 1rem;
        bottom: 2rem;
        left: auto;
    }

    header h1 {
        text-align: left;
        padding-left: 1rem;
    }

    article aside {
        text-align: left;
        margin-bottom: 1rem;
    }

    footer {
        padding-left: 1rem;
        text-align: center;
    }

    .surrounding-posts-group {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

}