/* Minimal styling - system defaults with basic structure */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: underline;
}

nav {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
}

nav a {
    margin-right: 20px;
}

main {
    margin-top: 20px;
}

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

article video {
    max-width: 100%;
    height: auto;
}

.profile-pic {
    display: block;
    margin: 20px 0;
}

h1 {
    margin: 20px 0 10px 0;
}

h2 {
    margin: 30px 0 10px 0;
}

h3 {
    margin: 20px 0 5px 0;
}

p {
    margin: 10px 0;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

hr {
    margin: 40px 0;
}

.post {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.post:last-child {
    border-bottom: none;
}

.post-preview {
    margin: 10px 0;
}

.preview-line {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-date {
    color: #666;
    display: inline-block;
    width: 180px;
    flex-shrink: 0;
}

.preview-title {
    font-weight: normal;
}

.post h3 {
    margin: 0 0 10px 0;
}

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

.post h3 a:hover {
    text-decoration: underline;
}

.post-date {
    display: block;
    margin: 10px 0 5px 0;
    color: #666;
}

.post-thumbnail {
    display: block;
}


.post-thumbnail {
    margin: 10px 0;
    max-width: 100%;
}

.post-thumbnail img,
.post-thumbnail video {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-excerpt {
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    margin-top: 5px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.pagination button {
    padding: 10px 20px;
    cursor: pointer;
    background: none;
    border: 1px solid;
    font-family: inherit;
    font-size: inherit;
}

.pagination button:hover {
    background: #f0f0f0;
}

.page-info {
    color: #666;
}

@media (max-width: 600px) {
    .profile-header {
        flex-direction: column;
    }
    
    .profile-pic {
        width: 100%;
        height: auto;
        max-width: 200px;
    }
}

