/* ==========================================================
   modules/about/about.css
   ========================================================== */
   .about-content {
    padding: 10px 0;
}

.about-title {
    display: inline-block;
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    border-bottom: 2px solid var(--primary);
}

.about-text {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 2;
    font-size: 14px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.about-tags span {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.about-more {
    display: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
    animation: aboutFade 0.25s ease;
}

.about-more.active {
    display: block;
}

.about-more-btn {
    padding: 0;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.about-more-btn:hover {
    opacity: 0.75;
    text-decoration: underline;
}

@keyframes aboutFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}