/* About Page - Founder and Medal Section Fixes */

/* Fix for founder image container */
.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Medal Recognition Section Styles */
.medal-recognition {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.medal-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.medal-image {
    flex-shrink: 0;
}

.medal-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.medal-text h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.medal-text p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* Founder's LinkedIn Section */
.founder-linkedin {
    margin-top: 2rem;
    text-align: center;
}

.founder-linkedin a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.2);
}

.founder-linkedin a:hover {
    background-color: #084D8F;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
    transform: translateY(-2px);
}

.founder-linkedin i {
    font-size: 1.2rem;
}

/* Responsive styles for medal section on mobile */
@media (max-width: 768px) {
    .medal-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .medal-image img {
        width: 100px;
        height: 100px;
    }
}