/* -------------------- Reset & Base -------------------- */ *, *::before, *::after {     box-sizing: border-box;     margin: 0;     padding: 0; }  body {     font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;     line-height: 1.6;     color: #1e1e2a;     background: #fafafa;     padding: 1.5rem;     max-width: 900px;     margin: 0 auto; }  /* -------------------- Header & Navigation -------------------- */ header {     margin-bottom: 3rem; }  nav {     display: flex;     justify-content: space-between;     align-items: center;     flex-wrap: wrap;     border-bottom: 1px solid #e2e2e8;     padding-bottom: 0.75rem; }  .logo {     font-size: 1.4rem;     font-weight: 600;     text-decoration: none;     color: #1e1e2a;     letter-spacing: -0.5px; }  nav ul {     list-style: none;     display: flex;     gap: 2rem; }  nav a {     text-decoration: none;     color: #3a3a4a;     font-weight: 500;     transition: color 0.2s; }  nav a:hover {     color: #0b0b1a; }  .resume-link {     background: #1e1e2a;     color: #fafafa !important;     padding: 0.4rem 1rem;     border-radius: 20px;     font-weight: 600;     transition: background 0.2s; }  .resume-link:hover {     background: #3a3a4a !important; }  /* -------------------- Hero Section -------------------- */ .hero {     padding: 2rem 0 3rem;     text-align: center; }  h1 {     font-size: 3rem;     font-weight: 700;     letter-spacing: -1.5px;     line-height: 1.1;     margin-bottom: 0.25rem; }  .tagline {     font-size: 1.4rem;     font-weight: 400;     color: #5a5a6a;     margin-bottom: 1.5rem; }  .intro {     font-size: 1.15rem;     max-width: 600px;     margin: 0 auto 2rem;     color: #2e2e3e; }  .cta-button {     display: inline-block;     background: #1e1e2a;     color: #fafafa;     padding: 0.75rem 2rem;     border-radius: 40px;     text-decoration: none;     font-weight: 600;     transition: background 0.25s, transform 0.1s; }  .cta-button:hover {     background: #3a3a4a;     transform: scale(1.02); }  /* -------------------- Footer -------------------- */ footer {     margin-top: 4rem;     padding-top: 1.5rem;     border-top: 1px solid #e2e2e8;     text-align: center;     font-size: 0.9rem;     color: #6a6a7a; }  .heart {     color: #d65a6a; }  /* -------------------- Responsive tweaks -------------------- */ @media (max-width: 600px) {     nav {         flex-direction: column;         gap: 0.75rem;     }      h1 {         font-size: 2.4rem;     }      .tagline {         font-size: 1.1rem;     } }
Sun 09 Aug 2026 02:40:09 PM  - Me: /* Blog Index Page */
.blog-index {
    padding: 2rem 0 3rem;
}

.blog-index h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 0.25rem;
}

.blog-index .subtitle {
    font-size: 1.15rem;
    color: #5a5a6a;
    margin-bottom: 2.5rem;
}

.post-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
}

.post-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eaeaf0;
}

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

.post-list a {
    text-decoration: none;
    color: #1e1e2a;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.post-list a:hover {
    color: #0055cc;
    padding-left: 0.5rem;
}

nav a.active {
    color: #1e1e2a;
    font-weight: 600;
    border-bottom: 2px solid #1e1e2a;
}
