/* ===== About Page ===== */
.about {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.interest-tag {
    background: #ffffff;
    color: #334155;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.interest-tag:hover {
    transform: translateY(-1px);
    background: #eff6ff;
    color: #1e40af;
    border-color: #93c5fd;
}

.why-list {
    list-style: none;
    margin-top: 1.5rem;
}

.why-list li {
    font-size: 1.05rem;
    color: #475569;
    padding: 0.7rem 0;
    line-height: 1.6;
}

.about-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.info-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-sidebar {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        justify-content: center;
    }
}
