/* --- ABOUT HERO --- */
.about-hero {
    background-color: var(--bg-white);
    overflow: hidden;
}

.align-center { align-items: center; }

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 500px;
}

/* Profile Image Frame */
.profile-frame {
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--radius);
    border: var(--border-thick);
    position: relative;
    z-index: 2;
    background-color: #eee; /* Placeholder color */
}

.frame-decor {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--brand-cyan);
    border: var(--border-thick);
    border-radius: var(--radius);
    z-index: 1;
}

/* --- STORY SECTION --- */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* --- SKILLS GRID --- */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.skill-card {
    background: white;
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: transform 0.3s;
}

.skill-card:hover { transform: translateY(-5px); }

.dark-card {
    background: var(--brand-black);
    color: white;
}

.dark-card h3 { color: var(--brand-cyan); }
.dark-card p { color: #ccc; }
.dark-card .skill-list li { border-bottom: 1px solid #444; }

.skill-list {
    margin-top: 1.5rem;
    list-style: none;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.skill-list li:last-child { border-bottom: none; }

/* --- TIMELINE --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-left: 2px solid #ddd;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 5px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--brand-black);
    border-radius: 50%;
}

.red-dot { border-color: var(--brand-red); background: var(--brand-red); }

.date {
    display: inline-block;
    background: var(--brand-black);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: white;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.featured-content {
    border: var(--border-thick);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

/* --- AWARDS BOX --- */
.awards-box {
    margin-top: 1.5rem;
    background: #fff5f5; /* Light red tint */
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--brand-red);
}

.award {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.award:last-child { margin-bottom: 0; }

.award-icon { font-size: 1.5rem; }

/* --- TESTIMONIALS --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.testimonial-card {
    background: white;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--radius);
    font-style: italic;
}

.author {
    margin-top: 1rem;
    display: block;
    font-style: normal;
}

.author span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .skills-grid, .grid-2 { grid-template-columns: 1fr; }
    .profile-frame { margin-top: 0; margin-bottom: 2rem; }
    .col-half { text-align: center; }
    .frame-decor { display: none; } /* Simplify on mobile */
}