/* Thoughts Section */
.thoughts-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.thought-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(26, 58, 46, 0.08);
    border-left: 4px solid #1a3a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thought-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 46, 0.15);
}

.thought-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.thought-link {
    color: #1a3a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thought-link:hover {
    color: #2d5a45;
    text-decoration: underline;
}

.thought-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}