.personal-information {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.avatar {
    height: 112px;
    width: 112px;
    border-radius: 100px;
    object-fit: cover;
}

.about-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.name {
    color: var(--titleist);
}

.role {
    color: var(--textual);
}

.location-box {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.city {
    color: var(--textual);
}

.metrics-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

hr {
    width: 1px;
    border-radius: 100px;
    background: var(--backlighting);
    border: none;
}

.metric-number {
    color: var(--titleist);
}

.metric-text {
    color: var(--textual);
}

.buttons-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.contact-me {
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--background);
    cursor: pointer;
    box-shadow: 0px 2px 12px rgba(83, 67, 209, 0.24), inset 0px 2px 1px var(--accent);
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-me:hover {
    box-shadow: 0px 2px 16px rgba(83, 67, 209, 0.46), inset 0px 2px 1px var(--accent);
}

.view-cv {
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--accent);
    cursor: pointer;
    filter: drop-shadow(0px 2px 12px rgba(83, 67, 209, 0.24));
    border: 1.5px solid var(--accent);
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-cv::after {
    content: attr(data-full);
}

.view-cv:hover {
    background-color: var(--accent);
    color: var(--background);
}

@media (max-width: 480px) {
    .view-cv::after {
        content: attr(data-short);
    }
    .buttons-list {
        gap: 16px;
}
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.title-text {
    color: var(--titleist);
}

.description-text {
    color: var(--textual);
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.project-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-list::-webkit-scrollbar {
    display: none;
}

.project-item {
    flex: 0 0 auto;
    white-space: nowrap;
    height: 180px;
    width: 270px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--content);
    scroll-snap-align: start;
}

.project-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.work-experience-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.work-experience-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-company {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.branding {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.company-logo {
    height: 32px;
    aspect-ratio: 1;
    border-radius: 8px;
}

.work-term {
    color: var(--accent);
    white-space: nowrap;
}

.company-description {
    color: var(--textual);
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whats-done {
    color: var(--black);
}

.done-stroke {
    color: var(--textual);
}

#feedbackPopup {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--blackout);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

#feedbackPopup.active {
    opacity: 1;
    pointer-events: all;
}

#popupElements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

#popupElements.active {
    opacity: 1;
    pointer-events: all;
}

.handlebar {
    display: none;
    height: 4px;
    width: 45%;
    background: var(--overlay-background);
    border-radius: 100px;
}

.popup-model {
    padding: 14px 20px;
    background: var(--overlay-background);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.logo-contact {
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.telegram-color {
    fill: var(--telegram-color);
}

.telegram-background {
    background: var(--telegram-background);
}

.whatsapp-color {
    fill: var(--whatsapp-color);
}

.whatsapp-background {
    background: var(--whatsapp-background);
}

.mail-color {
    fill: var(--mail-color);
}

.mail-background {
    background: var(--mail-background);
}

.phone-color {
    fill: var(--phone-color);
}

.phone-background {
    background: var(--phone-background);
}

.title-contact {
    color: var(--textual);
}