/* Behind the Barrel Expandable Content */

.profile-details-expandable {
    display: none;
    flex-direction: column;
    gap: 56px;
    margin-top: 56px;
}

.profile-details-expandable.active {
    display: flex;
    width: 100%;
}

/* Hide Read Less link by default, show when expanded */
.read-less-link {
    display: none;
}

.profile-details-expandable.active .read-less-link {
    display: inline;
}

/* Career Path Section */
.career-path-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.career-path-title,
.achievements-title {
    font-family: 'General Sans Variable', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    margin: 0;
}

.career-path-table,
.achievements-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    /* max-width: 701px; */
}

.career-path-row {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.career-path-bullet,
.achievements-bullet {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.career-path-bullet img,
.achievements-bullet img {
    width: 100%;
    height: 100%;
    display: block;
}

.career-path-title-text {
    flex: 1;
    font-family: 'General Sans Variable', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    margin: 0;
    white-space: pre-wrap;
}

.career-path-year {
    font-family: 'General Sans Variable', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #B4B2AD;
    margin: 0;
    text-align: right;
    flex-shrink: 0;
}

.career-path-divider,
.achievements-divider {
    height: 1px;
    background-color: #B4B2AD;
    width: 100%;
}

/* Achievements Section */
.achievements-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.achievements-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.achievements-title {
    flex: 1;
}

.achievements-row {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.achievements-text {
    flex: 1;
    font-family: 'General Sans Variable', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    margin: 0;
    white-space: pre-wrap;
}

/* Read Less Link */
.read-less-link {
    font-family: 'General Sans Variable', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    text-decoration: underline;
    margin: 0;
    cursor: pointer;
    align-self: flex-start;
}

.read-less-link:hover {
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .profile-details-expandable {
        gap: 84px;
    }

    .career-path-title,
    .achievements-title,
    .career-path-title-text,
    .career-path-year,
    .achievements-text,
    .read-less-link {
        font-size: 16px;
    }

    .career-path-table,
    .achievements-table {
        /* max-width: 311px; */
    }
}