/* ---- home / about page ---- */
.content[data-category="home"] {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 96px;
    gap: 28px;
}

.about {
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    color: #d0d0d0;
    text-align: center;
    max-width: 640px;
}

/* ---- tech stack chips ---- */
.stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 620px;
}

.chip {
    font-size: 17px;
    line-height: 1.4;
    color: #d0d0d0;
    background: #101010;
    border: 2px solid #3a3a3a;
    padding: 3px 12px;
    transition: border-color 0.2s ease-out, color 0.2s ease-out;
}

.chip:hover {
    border-color: #d96666;
    color: #f5f5f5;
}

/* ---- follow call-to-action ---- */
.follow-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 620px;
    margin-top: 8px;
    padding-top: 32px;
    border-top: 2px solid #2a2a2a;
}

.follow-text {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    color: #f5f5f5;
    text-align: center;
}

.follow-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.follow-btn {
    font-size: 20px;
    color: #d96666;
    text-decoration: none;
    border: 2px solid #d96666;
    background: rgba(217, 102, 102, 0.08);
    padding: 6px 18px;
    transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.follow-btn:hover {
    background: rgba(217, 102, 102, 0.2);
    transform: translateY(-2px);
}

/* ---- freelance line ---- */
.freelance {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.4;
    color: #9a9a9a;
    text-align: center;
}

.freelance a {
    color: #d96666;
    text-decoration: none;
    border-bottom: 2px solid rgba(217, 102, 102, 0.4);
    transition: border-color 0.2s ease-out;
}

.freelance a:hover {
    border-bottom-color: #d96666;
}

@media (max-width: 600px) {
    .about {
        font-size: 19px;
    }

    .follow-text {
        font-size: 18px;
    }

    .chip {
        font-size: 15px;
    }
}
