/*
Theme Name: Retro LJ
Theme URI: https://your-site.com
Author: You
Description: Tiny emotionally exhausted LiveJournal-style theme.
Version: 1.0
*/

body {
    background: #000;
    color: #ccc;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    padding: 20px;
}

.site-container {
    width: 800px;
    margin: 0 auto;
}

.site-title {
    font-size: 32px;
    margin-bottom: 20px;
	color: #ffccff;
}

.site-title a {
    color: #ffccff;
    text-decoration: none;
}

.post {
    border: 1px solid #000;
    margin-bottom: 20px;
}

.featured-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.post-header {
    background: #ffccff;
    border-bottom: 1px solid #000;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-title {
    margin: 0;
    font-size: 24;
    font-weight: normal;
}

.post-title a {
    text-decoration: none;
    color: #000;
}

.post-date {
    white-space: nowrap;
	color: #000;
}

.post-content {
    background: #cccccc;
    padding: 14px;
	color: #000;
}

.post-footer {
    background: #ffccff;
    border-top: 1px solid #000;
    padding: 8px 12px;
    text-align: right;
}

.post-footer a {
    text-decoration: none;
}

a {
    color: #990099;
}

a:hover {
    text-decoration: underline;
}

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

.comments-area {
    margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 20px;
    padding: 10px;
    background: #cccccc;
    border: 1px solid #000;
}

.footer-widgets {
    margin-top: 40px;
    border: 1px solid #000;
    background: #ffccff;
    padding: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-grid h3 {
    margin-top: 0;
    font-size: 20px;
}

.widget ul {
    list-style: none;
    padding-left: 0;
}

.widget li {
    margin-bottom: 6px;
}

.navigation-links {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

textarea,
input[type="text"],
input[type="email"],
input[type="url"] {
    width: 100%;
    border: 1px solid #000;
    padding: 8px;
    font-family: inherit;
    font-size: inherit;
}

input[type="submit"] {
    border: 1px solid #000;
    background: #ffccff;
    padding: 8px 12px;
    font-family: inherit;
    cursor: pointer;
}

.single-featured-image {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
}

.single-featured-image img.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 850px) {
    .site-container {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 18px;
    }
}