.page-header {
    background: #024735;
    /*background: linear-gradient(135deg, #024735 50%, #2d7a5f 100%);*/
    color: #fff;
    padding: 40px 0;
}
.page-header__container {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
}
.page-header__main { 
    display: flex;
    gap: 20px;
    align-items: center;
}
.page-header__visual { 
    display: flex;
    flex-direction: column;
    gap: 20px; 
}
.page-header__avatar {
    display: flex;
    flex-shrink: 0;
    background-color: #333;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    border: 3px solid #fff;
}
.page-header__initials {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.page-header__title {
    text-align: left;
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 700;
}
.page-header__title.desktop {
    display: block;
}
.page-header__title.mobile {
    display:none;
}
.page-header__actions {
    display: flex;
    gap: 15px;
}
.page-header__stats {
    display: flex;
    gap: 10px;
    margin-left: auto;
}
.page-header__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 90px;
    gap: 12px;
}
.page-header__stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.page-header__stat-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.page-header__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    word-wrap: break-word;
}
.page-header__stat-value {
    font-weight: 700;
}
.page-header__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}
@media (min-width: 641px) and (max-width: 1024px) {
    .page-header__actions {
        flex-direction: row;
    }
    .page-header__stats {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .page-header__stat-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    .page-header__stat-details {
        align-items: flex-start;
    }
    .page-header__stat-divider {
        display: none;
    }
}
@media (max-width: 640px) {
    .page-header__container {
        flex-direction: column;
        gap: 20px;
    }
    .page-header__main { 
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-header__visual {
        align-items: center;
    }
    .page-header__stats {
        padding: 15px 5px;
        gap: 5px;
        margin-left: 0;
    }
    .page-header__stat-icon {
        width: 35px;
        height: 35px;
    }
}