/* ABOUT US DESKTOP - Layout con imagen a la izquierda */

.about-us-desktop {
    display: none;
    position: relative;
    width: 100%;
    background: var(--color-primary-dark);
    padding: var(--spacing-4xl) var(--spacing-lg);
}

.about-us-desktop__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-desktop__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-accent);
    margin: 0 0 3rem 0;
    text-align: center;
}

.about-us-desktop__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-us-desktop__image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-us-desktop__image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-accent);
}

.about-us-desktop__image {
    width: 100%;
    box-shadow: var(--shadow-lg);
    object-position: 0 -65px;
}

.about-us-desktop__credentials {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-us-desktop__credential {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-accent);
}

.about-us-desktop__credential:last-child {
    border-bottom: none;
}

.about-us-desktop__text-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-us-desktop__description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-us-desktop__description p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-style: italic;
}

.about-us-desktop__description p:first-of-type {
    font-weight: 600;
    color: var(--color-white);
}

.mentor-name {
    color: var(--color-accent);
    font-weight: 700;
}

.mentor-highlight {
    color: var(--color-accent);
    font-weight: 600;
}

/* Media queries */
@media (max-width: 1023px) {
    .about-us-desktop {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .about-us-desktop {
        display: block;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .about-us-desktop__title {
        font-size: 2rem;
    }

    .about-us-desktop__content {
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .about-us-desktop__title {
        font-size: 2.5rem;
    }
}
