/* Notes Page Styles */

.notes-main {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 200px;
  padding-top: 140px;
}

.notes-container {
  max-width: 600px;
  width: 100%;
}

.notes-title {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ddd;
}

.timeline-entry {
  position: relative;
  margin-bottom: 40px;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 12px;
  width: 5px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 50%;
}

.timeline-header {
  margin-bottom: 8px;
}

.timeline-date {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

.timeline-separator {
  color: #ccc;
  margin: 0 6px;
}

.timeline-title {
  font-size: 11px;
  font-weight: normal;
  color: #999;
  letter-spacing: 1px;
}

.timeline-content {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.timeline-content p {
  margin: 0;
}

.timeline-loading,
.timeline-error {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

/* Read more button */
.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #1a1a1a;
}

/* Mobile */
@media (max-width: 768px) {
  .notes-main {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 120px;
  }

  .notes-container {
    max-width: 100%;
  }

  .notes-title {
    font-size: 12px;
    margin-bottom: 40px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-entry::before {
    left: -23px;
  }

  .timeline-date,
  .timeline-title {
    font-size: 10px;
  }

  .timeline-content {
    font-size: 11px;
  }
}
