.reduced-profile {
    width: 100%;
    max-width: 280px;
}

.reduced-profile-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

/* Add media query for small screens */
@media (max-width: 968px) {
    .reduced-profile-container {
        align-items: center;  /* Centers the content horizontally */
        text-align: center;   /* Centers the text */
    }

    .reduced-profile {
        display: flex;
        flex-direction: column;
        align-items: center;  /* Centers the profile content */
    }

    .reduced-social {
        justify-content: center;  /* Centers the social icons */
    }
}

.reduced-profile-info h2 {
    font-family: "ABC Diatype Edu Medium", sans-serif;
    font-size: 1.5rem;
    color: #002147;
    margin-bottom: 0.25rem;
}

.reduced-profile-info h3 {
    font-family: "ABC Diatype Edu Regular", sans-serif;
    font-size: 1rem;
    color: #002147;
    margin-bottom: 0.5rem;
}

.reduced-social {
    display: flex;
    gap: 1rem;
}

.social-icon-img {
    margin-top: -0.5rem;
    width: 1em;  /* Match font-awesome icon size */
    height: 1em;
    vertical-align: middle;
    filter: invert(14%) sepia(36%) saturate(1407%) hue-rotate(186deg) brightness(97%) contrast(102%);
} 