/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1a1a1a;
  color: #e0e0e0;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#main {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Author Header */
.author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.author__logo {
  display: block;
  flex-shrink: 0;
}

.author__logo img {
  display: block;
  border-radius: 8px;
  border: 2px solid #444;
}

.author__site-text {
  display: flex;
  flex-direction: column;
}

.author__site-title {
  font-family: 'Neucha', cursive;
  font-size: 32px;
  color: #f0f0f0;
  text-decoration: none;
  line-height: 1.2;
}

.author__site-title:hover {
  color: #ff8a80;
}

.author__my-name {
  font-size: 15px;
  color: #999;
  margin-top: 2px;
}

.author__elsewhere {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.author__elsewhere a {
  display: block;
  width: 20px;
  height: 20px;
}

.author__elsewhere svg {
  width: 20px;
  height: 20px;
  fill: #888;
  transition: fill 0.2s;
}

.author__elsewhere a:hover svg {
  fill: #ff8a80;
}

.author__post-date {
  display: none;
}

/* Content */
#main > p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #ccc;
}

a {
  color: #ff8a80;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ff5252;
  text-decoration: underline;
}

/* Post List */
.postlist {
  list-style: none;
  margin-top: 10px;
}

.postlist li {
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}

.postlist li:last-child {
  border-bottom: none;
}

.postlist li a {
  font-size: 16px;
  color: #ff8a80;
  display: block;
  line-height: 1.4;
}

.postlist li a:hover {
  color: #ff5252;
}

.postlist__date {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 500px) {
  .author {
    flex-direction: column;
    text-align: center;
  }

  .author__elsewhere {
    justify-content: center;
  }

  .author__site-title {
    font-size: 26px;
  }
}

/* Section Headings */
h2 {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f0f0f0;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid #333;
}

/* Experience / Education Entries */
.section {
  margin-bottom: 10px;
}

.entry {
  margin-bottom: 24px;
}

.entry__title {
  font-size: 16px;
  font-weight: 700;
  color: #e0e0e0;
}

.entry__meta {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
  margin-bottom: 8px;
}

.entry__detail {
  font-size: 15px;
  color: #ccc;
}

.entry__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.entry__list li {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 6px;
  line-height: 1.5;
}

.entry__title a {
  color: #ff8a80;
  text-decoration: none;
}

.entry__title a:hover {
  color: #ff5252;
  text-decoration: underline;
}
