/* ===================================
   About Page Specific Styles
   =================================== */

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container-narrow {
        padding: 0 24px;
    }
}

/* About Hero */
.about-hero {
    padding: 120px 0 80px;
    background-color: #fff;
    text-align: left;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 40px;
    }

    .about-hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
}

/* Sections */
.about-section {
    padding: 40px 0;
    background-color: #fff;
}

.about-section.bg-light {
    background-color: #fafafa;
}

.about-section.bg-dark {
    background-color: #1a1a1a;
}

.text-white {
    color: #fff !important;
}

.about-section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 32px;
    display: block;
}

.about-text-block p {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 32px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-text-block p {
        font-size: 18px;
    }
}

/* Experience List */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.experience-item {
    padding: 32px 0;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
}

.experience-item:last-child {
    border-bottom: none;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.exp-title {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
}

.exp-date {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .exp-header {
        flex-direction: column;
        gap: 4px;
    }

    .exp-title {
        font-size: 18px;
    }
}

/* Education */
.education-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.edu-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.edu-detail {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

/* Personal Grid */
.personal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.personal-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.personal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(25, 118, 210, 0.4);
}

.personal-icon {
    font-size: 32px;
    opacity: 0.9;
}

.personal-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 1024px) {
    .personal-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}