.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 6rem;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 6rem;
    align-items: start;
}

/* Left Column */
.left-column {
    position: sticky;
    top: 8rem;
    overflow-y: auto;
}

/* Profile Section */
.profile-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: left;
    max-width: 280px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.profile-titles h1 {
    font-family: "ABC Diatype Edu Medium", sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #002147;
}

.profile-titles h2 {
    font-family: "ABC Diatype Edu Regular", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #002147;
}

.profile-titles h3 {
    font-family: "ABC Diatype Edu Regular", sans-serif;
    font-size: 2rem;
    color: #002147;
}

/* Email Display */
.email-display {
    display: flex;
    align-items: left;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-left: 1rem;
}

.email-display i {
    color: #002147;
    font-size: 1.2rem;
}

.email-display a {
    color: #002147;
    text-decoration: none;
    font-family: "ABC Diatype Edu Regular", sans-serif;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.email-display a:hover {
    opacity: 0.7;
}

/* Social Icons Container */
.social-icons-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.social-icon {
    color: #002147;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Right Column Content */
.right-column {
    padding-top: 1rem;
}

.basic-bio,
.main-component {
    margin-bottom: 3rem;
}

.basic-bio p,
.main-component p {
    font-family: "ABC Diatype Edu Regular", sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #002147;
}

/* Responsive Design */
@media (max-width: 968px) {
    .site-main {
        padding: 3rem 1rem;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .left-column {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-container {
        align-items: center;
        text-align: center;
    }

    .profile-image {
        width: 200px;
    }

    #reduced-profile-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .basic-bio p,
    .main-component p {
        font-size: 1.2rem;
    }

    .profile-social-icons {
        justify-content: center;
    }

    .email-display,
    .social-icons-container {
        justify-content: center;
        padding-left: 0;
    }
}

/* Add an even smaller breakpoint for very small screens */
@media (max-width: 480px) {
    .site-main {
        padding: 2rem 1rem;
    }

    .profile-titles h1 {
        font-size: 2.5rem;
    }

    .profile-titles h2 {
        font-size: 1.8rem;
    }

    .profile-titles h3 {
        font-size: 1.5rem;
    }
}

.full-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.full-profile .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* Ensure the reduced profile part aligns well within the full profile */
.full-profile .reduced-profile {
    width: 100%;
} 