/* Header */
.header {
    background-color: #eb1801;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
}

@media screen and (min-width: 450px) {
    .header {
        padding: 1rem 1.5rem;
    }
}

.logo {
    width: 78px;
    height: 24px;
}

@media screen and (min-width: 450px) {
    .logo {
        width: 154px;
        height: 48px;
    }
}

.header__item {
    position: relative;
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 700;
    padding-left: 1.125rem;
    margin-left: 1.125rem;
    border-left: 1px solid #fff;
}

@media screen and (min-width: 450px) {
    .header__item {
        padding-block: 0.875rem;
    }
}

.header__account {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    text-decoration: none;
}

@media screen and (min-width: 450px) {
    .header__account {
        flex-direction: row-reverse;
        gap: 0.5rem;
    }
}

.header__account__text {
    color: #fff;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1rem;
}

@media screen and (min-width: 450px) {
    .header__account__text {
        font-size: 1rem;
        font-weight: 700;
    }
}

.header__account__icon {
    color: #fff;
    height: 18px;
    width: 18px;
}

@media screen and (min-width: 450px) {
    .header__account__icon {
        height: 24px;
        width: 24px;
    }
}
