﻿.about-section {
    background: #0d1117;


    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: var(--space-section);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #8b949e;
    margin-bottom: 16px;
}

.about-highlight {
    margin-top: 24px;
    padding-left: 16px;
    border-left: 3px solid #58a6ff;
    color: #e6edf3;
    font-weight: 500;
}

/* RIGHT SIDE */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-6px);
        border-color: #388bfd;
        background: #1b222c;
    }

.about-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #58a6ff;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 14px;
    color: #8b949e;
}


