.page-content {
    padding-top: 3rem;
    max-width: 700px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
}

.thoughts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.thought-preview {
    display: block;
    text-decoration: none;
    padding: 1.75rem 0;
    border-bottom: 1px solid #3e4155;
    transition: opacity 0.2s ease;
}

.thought-preview:first-child {
    padding-top: 0;
}

.thought-preview:hover {
    opacity: 0.75;
}

.thought-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.thought-excerpt {
    font-size: 0.95rem;
    color: #a0a4b8;
    line-height: 1.6;
}

/* Article page styles */
.article-content {
    padding-top: 3rem;
    max-width: 680px;
}

.article-back {
    display: inline-block;
    text-decoration: none;
    color: #8a8ea0;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.article-back:hover {
    color: #ffffff;
}

.article-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-body p {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body a {
    color: #e0e0e0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.article-body a:hover {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .page-title,
    .article-title {
        font-size: 2.2rem;
    }

    .thought-title {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 480px) {
    .page-title,
    .article-title {
        font-size: 1.8rem;
    }
}
