/* Profile CSS */
.profile-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

.profile-pic {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.profile-description {
    max-width: 350px;
    text-align: left;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .profile-section {
        flex-direction: column;
        gap: 24px;
    }
    .profile-description {
        max-width: 100%;
        text-align: center;
    }
}

/* Profile Picture Column */
.profile-pic-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-link-btn {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
}

