/* About Page Styles - refreshed */

.page-about .about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-about .header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-about .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text, #e5e7eb);
    margin-bottom: 0.5rem;
}

/* From Me Section - Featured Card */
.from-me-section {
    margin-bottom: 2rem;
}

.from-me-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--card-bg, rgba(255,255,255,0.03));
    border: 1px solid var(--color-border, #333);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.avatar-wrap {
    flex: 0 0 140px;
}

.avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    border: 3px solid var(--color-primary, #3b82f6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.from-me-text h2 {
    margin: 0 0 0.75rem 0;
    font-size: 1.4rem;
    color: var(--color-primary, #3b82f6);
    font-weight: 600;
}

.from-me-text p {
    color: var(--color-text, #e5e7eb);
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
}

.social-link {
    margin-top: 1rem;
    font-size: 1rem;
}

.twitter-link {
    color: var(--color-primary, #3b82f6);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.twitter-link:hover {
    border-bottom-color: var(--color-primary, #3b82f6);
    color: #60a5fa;
}

/* Regular About Sections */
.about-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border, #333);
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-section h2 {
    color: var(--color-primary, #3b82f6);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-section p {
    color: var(--color-text, #e5e7eb);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1rem 1.5rem;
}

.about-section ul li {
    color: var(--color-text-secondary, #9ca3af);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.about-section ul li::before {
    content: "•";
    color: var(--color-primary, #3b82f6);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.about-section a {
    color: var(--color-primary, #3b82f6);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.about-section a:hover {
    border-bottom-color: var(--color-primary, #3b82f6);
}

.about-section strong {
    color: var(--color-text, #e5e7eb);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .from-me-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .avatar-wrap {
        flex: none;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    .from-me-text h2 {
        font-size: 1.25rem;
    }

    .page-about .about-content {
        padding: 1rem;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .page-about .title {
        font-size: 1.5rem;
    }
}

