.about {

    position: relative;

    overflow: hidden;
}

/* ====================== */
/* BG */
/* ====================== */

.about-bg-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(108, 92, 231, .18),
            transparent 70%);

    top: -250px;
    right: -150px;

    pointer-events: none;
}

/* ====================== */
/* WRAPPER */
/* ====================== */

.about-wrapper {

    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 30px;

    align-items: stretch;
}

/* ====================== */
/* PROFILE CARD */
/* ====================== */

.about-profile-card {

    position: relative;

    background:
        var(--glass-bg);

    border:
        1px solid var(--border);

    border-radius: 34px;

    padding: 30px;

    backdrop-filter: blur(30px);

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.about-profile-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 35px 60px rgba(108, 92, 231, .18);
}

.about-profile-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .14),
            transparent);

    top: -110px;
    left: -110px;
}

/* ====================== */
/* PROFILE TOP */
/* ====================== */

.about-profile-top {

    display: flex;

    align-items: center;

    gap: 18px;
}

.about-avatar {

    width: 90px;
    height: 90px;

    border-radius: 28px;

    overflow: hidden;

    border:
        1px solid var(--border);

    flex-shrink: 0;
}

.about-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-profile-top h3 {

    font-size: 28px;

    margin-bottom: 6px;
}

.about-profile-top span {

    color: var(--text-muted);

    font-size: 14px;
}

/* ====================== */
/* DIVIDER */
/* ====================== */

.about-divider {

    width: 100%;

    height: 1px;

    background:
        var(--border);

    margin:
        28px 0;
}

/* ====================== */
/* INFO */
/* ====================== */

.about-info-list {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.about-info-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .05);

    color: var(--text-secondary);

    transition:
        transform .35s ease,
        background .35s ease;
}

.about-info-item:hover {

    transform:
        translateX(6px);

    background:
        rgba(255, 255, 255, .08);
}

.about-info-item i {

    width: 42px;
    height: 42px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 15px;

    flex-shrink: 0;
}

/* ====================== */
/* CONTENT CARD */
/* ====================== */

.about-content-card {

    position: relative;

    background:
        var(--glass-bg);

    border:
        1px solid var(--border);

    border-radius: 34px;

    padding: 45px;

    backdrop-filter: blur(30px);

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .1);
}

.about-content-card::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(108, 92, 231, .14),
            transparent);

    bottom: -130px;
    right: -130px;
}

/* ====================== */
/* CONTENT */
/* ====================== */

.about-quote {

    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid var(--border);

    margin-bottom: 24px;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 600;
}

.about-content-card h2 {

    font-size: 42px;

    line-height: 1.3;

    margin-bottom: 24px;

    max-width: 760px;
}

.about-content-card p {

    color: var(--text-secondary);

    line-height: 2;

    font-size: 16px;

    max-width: 850px;
}

/* ====================== */
/* TAGS */
/* ====================== */

.about-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}

.about-tags span {

    padding: 12px 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid var(--border);

    color: var(--text-secondary);

    font-size: 14px;

    transition:
        transform .35s ease,
        background .35s ease;
}

.about-tags span:hover {

    transform:
        translateY(-5px);

    background:
        rgba(255, 255, 255, .1);
}

/* ====================== */
/* LIGHT MODE */
/* ====================== */

[data-theme="light"] .about-profile-card,
[data-theme="light"] .about-content-card {

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .05);
}

[data-theme="light"] .about-info-item {

    background:
        rgba(0, 0, 0, .02);

    border:
        1px solid rgba(0, 0, 0, .04);
}

[data-theme="light"] .about-info-item:hover {

    background:
        rgba(0, 0, 0, .04);
}

[data-theme="light"] .about-tags span {

    background:
        rgba(0, 0, 0, .03);
}

[data-theme="light"] .about-tags span:hover {

    background:
        rgba(0, 0, 0, .06);
}

/* ====================== */
/* MOBILE */
/* ====================== */

@media(max-width:768px) {

    .about-wrapper {

        grid-template-columns: 1fr;

        gap: 24px;
    }

    .about-profile-card,
    .about-content-card {

        border-radius: 28px;
    }

    .about-content-card {

        padding: 30px 24px;
    }

    .about-content-card h2 {

        font-size: 30px;

        line-height: 1.4;
    }

    .about-content-card p {

        font-size: 14px;

        line-height: 1.9;
    }

    .about-profile-top h3 {

        font-size: 24px;
    }

    .about-avatar {

        width: 75px;
        height: 75px;
    }

    .about-tags {

        gap: 10px;
    }

    .about-tags span {

        font-size: 12px;

        padding: 10px 14px;
    }
}