main {
padding: 180px var(--screen-pad) 100px var(--screen-pad);
width: 100%;
display: flex;
flex-direction: column;
}

.thoughts-header {
margin-bottom: 5rem;
}

.page-title {
font-size: 3rem;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text-main);
margin-bottom: 0.5rem;
}

.page-subtitle {
font-size: 1.1rem;
color: var(--text-muted);
font-weight: 400;
}

.thoughts-list-container {
display: flex;
flex-direction: column;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thought-row {
display: flex;
align-items: baseline;
padding: 2rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
text-decoration: none;
transition: var(--transition-smooth);
}

.thought-date {
width: 150px;
flex-shrink: 0;
font-size: 0.9rem;
color: var(--text-muted);
font-weight: 400;
letter-spacing: 0.05em;
transition: color 0.3s ease;
}

.thought-content {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.thought-title {
font-size: 1.5rem;
color: var(--text-main);
font-weight: 500;
transition: color 0.3s ease, transform 0.3s ease;
}

.thought-excerpt {
font-size: 1rem;
color: var(--text-muted);
line-height: 1.5;
opacity: 0.7;
}

.thought-row:hover {
background-color: rgba(255, 255, 255, 0.02);
padding-left: 1rem;
padding-right: 1rem;
margin-left: -1rem;
margin-right: -1rem;
border-radius: 8px;
border-bottom-color: transparent;
}

.thought-row:hover .thought-title {
color: #4ade80;
transform: translateX(5px);
}

.thought-row:hover .thought-date {
color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
main { padding-top: 140px; }
.thought-row {
flex-direction: column;
gap: 0.75rem;
padding: 1.5rem 0;
}
.thought-date {
width: 100%;
font-size: 0.8rem;
}
.thought-title {
font-size: 1.3rem;
}
.thought-row:hover {
padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;
background-color: transparent;
}
.thought-row:hover .thought-title {
transform: none;
}
}