.my-picture {
    width: 100%; 
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
    display: block;
}

.about-picture {
    display: flex;
    justify-content: flex-end; /* Clean right-alignment on wide layouts */
    align-items: flex-start;
}

.full-quote {
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;

}

.quote {
    display: flex;
    justify-content: center;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-btns {
    display: flex;
    gap: 1rem;
}

.about-intro-text p {
    margin-bottom: 0;
}

.intro-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10rem;
    
}

.no-margin {
    margin: 0;
}

.about-social-icons {
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    gap: 1rem;
}

/* Experience */
.exp-row {
    display: flex;
    padding: 40px 0;
    gap: 2rem;
    max-width: 60%;
    margin: auto;
}

.co-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-year {
    color: var(--text-secondary);
    align-self: flex-start;
    font-size: 0.85rem;
}

.co-title {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exp-icon {
    font-size: 2rem;
    color: var(--text-secondary);
}

.exp-details h4 {
    margin-bottom: 10px;
}

.exp-details p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* ==========================================================================
   Card-Style Awards Grid 
   ========================================================================== */
.awards-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Base interactive card container styling */
.award-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none; /* Strip standard anchor styles */
    color: inherit;
    min-height: 280px;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-6px);
}

/* Card Header Components */
.award-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.award-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 215, 0, 0.15); /* Soft transparent gold */
    color: var(--yellow);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.award-tag.tag-runner {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.award-icon {
    font-size: 3rem;
    color: var(--yellow);
}


/* Card Body Typography */
.award-card-body {
    flex-grow: 1;
}

.award-year-badge {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.award-card-body h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.award-card-body p {
    color: var(--text-secondary);
    margin: 0;
}

/* Card Footer Actions */
.award-card-footer {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.view-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}



.view-link i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

/* Mini micro-interaction shift on arrow */
@media (max-width: 1024px) {
    .intro-col { display: flex; flex-direction: column-reverse; gap: 4rem;}
    .about-picture { justify-content: center;}
    .my-picture { width: 50%; max-width: 100%;}
    .exp-row { max-width: 100%;}
    .exp-icon { font-size: 3rem;}
    .co-title { font-size: 1.25rem; padding-bottom: 0.25rem;}
    .exp-year { font-size: 1.25rem;}
    .awards-grid { grid-template-columns: repeat(2, 1fr)}
    .award-year-badge { font-size: 1.25rem;}
    .view-link { font-size: 1.25rem;}
    .award-icon { font-size: 4rem;}
}

/* Responsive Structural Breakpoints */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr; /* Switch to full width vertical stacks on mobile frames */
        gap: 1.25rem;
    }
    .award-card {
        min-height: auto;
        padding: 1.75rem;
        text-align: center;
    }

    .award-card-header { justify-content: center;}

    .my-picture { width: 80%;}
    .intro-btns { flex-direction: column; gap: 1rem;}
    .about-intro-text { align-items: center; text-align: center;}
    .full-quote { max-width: 80%;}
    .exp-row { flex-direction: column; text-align: center;}

}