/* =========================================
   ABOUT PAGE STYLING
   ========================================= */

/* Intro Layout */
.wd-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.wd-about-visual img {
    border-radius: 24px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.wd-about-visual:hover img {
    transform: rotate(0deg) scale(1.02);
}

.wd-about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #111827;
}

.wd-about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 24px;
}

/* Skills Chips */
.wd-skills-wrapper {
    margin-top: 32px;
}

.wd-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-skill-pill {
    background: #F3F4F6;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.wd-skill-pill:hover {
    background: #fff;
    border-color: #E5E7EB;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: #111827;
}

/* Stats Section */
.wd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: #111827;
    /* Dark Section */
    padding: 64px 40px;
    border-radius: 24px;
    color: white;
    text-align: center;
    margin: 64px 0;
}

.wd-stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(to right, #F7D74A, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.wd-stat-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .wd-about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wd-about-visual {
        order: -1;
        text-align: center;
    }

    .wd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .wd-stats-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .wd-stat-item h3 {
        font-size: 2.5rem;
    }
}