.bio-section {
    padding: 40px 20px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.bio-title {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
}

.bio-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease,
        opacity 0.8s ease;
    opacity: 0; 
    transform: translateY(150px);
}

.job:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.job-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bio-position {
    font-size: 24px;
    font-weight: 800;
    margin: 5px 0;
}

.bio-company {
    font-style: italic;
    color: #777;
    font-size: 18px;
}

.bio-dates {
    font-style: italic;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.bio-description {
    margin-bottom: 10px;
    color: #555;
}

.job-media {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.bio-image {
    width: 350px;
    height: auto;
    border-radius: 2px;
}

.bio-link-button {
    padding: 8px 12px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.bio-link-button:hover {
    background-color: #005bb5;
}

.bio-tasks {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}

.bio-tasks h2 {
    font-weight: 600;
    font-size: 24px;
}

.bio-tasks li {
    margin: 5px 0;
    line-height: 1.6;
}

.bio-tasks strong {
    font-weight: bold;
    color: #333;
}

.job.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .bio-image {
        width: 250px;
        height: auto;
        border-radius: 2px;
    } 
}

@media (max-width: 600px) {
    .job-header {
        flex-direction: column-reverse;
        align-items: center;
    }

    .bio-image {
        width: 100%;
        height: auto;
    }

    .bio-link-button {
        text-align: center;
    }
}
