/**
 * Header Component
 * Prylfynda Core
 */

.pfl-header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.pfl-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.pfl-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.pfl-header__logo-image {
    display: block;
    height: 80px;
    width: auto;
    max-width: 100%;
}

.pfl-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pfl-header__action {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #222;
    text-decoration: none;

    transition: background-color .2s ease,
                color .2s ease;
}

.pfl-header__action:hover {
    background: #f5f5f5;
}

.pfl-header__action .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

@media (max-width: 768px) {

    .pfl-header__inner {
        padding: 14px 16px;
    }

    .pfl-header__logo-image {
        height: 36px;
    }

    .pfl-header__action {
        width: 40px;
        height: 40px;
    }

}