:root {
	font-size: 11px;
	font-variant-numeric: lining-nums;
	scroll-behavior: smooth;
	--sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--mono: monaco, consolas, 'Courier New', monospace;
	--serif: 'Canela Text', georgia, serif;
	--rd: 1rem;
}
body {
	margin: 0;
	overscroll-behavior-y: none;
    background: #181818;
}
*, *::before, *::after {
	box-sizing: border-box;
	position: relative;
}
a {
	color: inherit;
}
p {
	margin-top: 0;
    font-family: var(--sans);
}
img {
	display: block;
	max-width: 100%;
}
nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
[id] {
	scroll-margin-top: 2ex;
}

.row {
	display: flex;
	flex-direction: row;
}
.row.vc {
	align-items: center;
}
.rounded {
	display: block;
	border-radius: 50%;
	height: var(--rd);
	width: var(--rd);
	line-height: var(--rd);
	text-align: center;
}
.caps {
    text-transform: uppercase;
}
.bold {
    font-weight: bold;
}


body * {
    color: #ccc;
}
.thumbnail {
    background-image: var(--background);
    min-height: 150px;
    max-height: 150px;
    min-width: 250px;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    box-shadow: 0 0 10px black;
    background-color: black;
    transform-origin: center left;
    /*transition: transform 0.3s, box-shadow 0.3s, border 0.1s, z-index 0.1s;*/
}
.list[data-state=active] .thumbnail {
    z-index: 2;
}
.thumbnail:hover {
    /*z-index: 3 !important;
    transition-delay: 1s;
    transform: scale(1.8);
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
    border: 2px solid white;*/
}
.post:first-child .thumbnail {
    transform-origin: top left;
}
.post:last-child .thumbnail {
    transform-origin: bottom left;
}
.square .thumbnail {
    min-height: 250px;
}
.post:not(.square) .thumbnail:hover {
    animation: moveUp 0.5s ease-in-out forwards normal 0.5s, moveUpAndDown 3s ease-in-out infinite alternate 1s;
}
.post {
    border-bottom: 0px solid #333;
    padding-bottom: 25px;
    margin-bottom: 25px;
    width: 600px;
}
.content {
    margin-left: 25px;
}
.date {
    margin-bottom: 0;
}
p, h1 {
    margin-bottom: 10px;
}
h1 {
    margin-top: 0;
    color: #ccc;
    font-size: 22px;
    line-height: 1.4;
    font-family: var(--serif);
	-webkit-line-clamp: 3;
    transition: color 0.3s;
    font-weight: normal;
}
.highlight h1 {
    color: #ff732f;
}

a {
    text-decoration: none;
}
a:hover h1 {
    color: rgb(33, 229, 229);
}

#feed-content {
    display: flex;
    height: 100vh;
}
.list {
    padding-left: 50px;
    padding-right: 50px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 50px;
    flex: 1; /* Allow items to grow and shrink equally */
    min-width: 100px; /* Set a minimum width for the items */
}
.list:not(:first-child) {
    box-shadow: -20px 0px 20px -10px rgba(0, 0, 0, 0.3); /* Create a left-side shadow */
    border-left: 1px solid #222;
}
.list:first-child {
    box-shadow: none !important;
}
.list:last-child {
    border-right: 0;
    margin-right: 0;
}


.list[data-state=active] {
	outline: none;
    z-index: 10;
    flex: 0 0 700px;
    box-shadow: -60px 0px 50px -10px rgba(0, 0, 0, 0.5); /* Create a left-side shadow */
}
.list[data-state=active] .post {
    opacity: 1;
}
.list:not([data-state=active]) .post {
    pointer-events: none;
    filter: blur(8px);
	-webkit-filter: blur(8px);
}


.list .post {
    opacity: 0.3;
    transition: opacity 0.3s;
}
.list:hover .post {
    opacity: 1;
}

.post .desc {
	font-size: 12px;
	line-height: 1.4;
	-webkit-line-clamp: 4;
}
.post .slug {
	-webkit-line-clamp: 1;
}

.clamp {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.italics h1 {
	font-style: italic;
}

@keyframes slide {
    0% {
        opacity: 0.5;
        flex: 1;
    }
    100% {
        opacity: 1;
        flex: 0 0 700px;
    }

}

@keyframes moveUpAndDown {
    0% {
        background-position: center top;
    }
    100% {
        background-position: center bottom;
    }
}


@keyframes moveUp {
    0% {
        background-position: center center;
    }
    100% {
        background-position: center top;
    }
}



#loading {
    color: #aaa;
    position: absolute;
    top: 50px;
    left: 50px;
}
#loading h1 {
    font-size: 20px;
    font-weight: bold;
    font-family: var(--sans);
}


.post:not(.today) .date {
    color: #666;
}




@media only screen and (max-width: 800px) {
    .post, #feed-content, .list {
        height: auto;
        display: block;
    }
    .list {
        padding: 0;
        border-left: 0 !important;
        overflow-y: visible;
        box-shadow: none !important;
    }
    .list:not(:last-child)::after {
        content: '';
        display: block;
        height: 5px;
        width: 100px;
        background: #ccc;
        z-index: 100;
        margin: 0 auto;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    .thumbnail {
        padding-top: 50%; /* (2/3) * 100% */
        border-radius: 0;
    }
    .post {
        width: 100%;
        opacity: 1 !important;
        filter: none !important;
		-webkit-filter: none !important;
    }
    .content {
        margin: 25px;
        margin-bottom: 0;
    }
    .thumbnail:hover {
        animation: none !important;
        transform: none;
        border: 0;
        transition: none;
    }
    .post:not(.today) {
        display: none;
    }
    h1 {
        -webkit-line-clamp: none;
    }
}