/* Apple-inspired minimal design inspired by peruki.dev */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1d1d1f;
    background-color: #ffffff;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

section {
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 12px;
    padding-left: 0;
    line-height: 1.6;
}

ul li::before {
    content: none;
}

ul li:last-child {
    margin-bottom: 0;
}

a {
    color: #0071e3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section borders */
section {
    border-top: 1px solid #e5e5e7;
}

section:first-child {
    border-top: none;
}

/* Social media icon links */
a[href*="x.com"]:hover,
a[href*="github.com"]:hover,
a[href*="bsky.app"]:hover {
    opacity: 1 !important;
}

/* Header component styling */
section:first-child {
    text-align: center;
}

/* Column layout: 37% left, 63% right */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Skip header section (first section without border-top in inline style) */
.row[style*="border-top"] > .col:first-child {
    flex: 0 0 36% !important;
    max-width: 36% !important;
}

.row[style*="border-top"] > .col:last-child {
    flex: 0 0 64% !important;
    max-width: 64% !important;
}

/* Mobile responsive: stack columns vertically on small screens */
@media (max-width: 768px) {
    .row[style*="border-top"] > .col:first-child,
    .row[style*="border-top"] > .col:last-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .row[style*="border-top"] > .col:first-child {
        margin-bottom: 16px;
    }
}

