/* =========================================
   HayMe Premium-Profil – Final
========================================= */

body.single-hayme-profil {
    background: #000000;
}

body.single-hayme-profil #footer,
body.single-hayme-profil #bottom-bar {
    display: none;
}

.hayme-profile {
    width: 100%;
    max-width: 470px;
    margin: 58px auto 85px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hayme-profile__card {
    width: 100%;
    text-align: center;
}

.hayme-profile__header {
    padding: 5px 0 36px;
}

.hayme-profile__logo {
    display: block;
    width: 132px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 34px;
}

.hayme-profile__header h1 {
    margin: 0;
    color: #ffffff !important;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.hayme-profile__position {
    margin: 16px 0 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

.hayme-profile__company {
    margin: 0;
    color: #cfcfcf;
    font-size: 16px;
    font-weight: 400;
}

.hayme-profile__divider {
    width: 100%;
    height: 1px;
    margin: 0 0 24px;
    background: rgba(255, 255, 255, 0.11);
}

.hayme-profile__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 26px;
}

.hayme-profile__button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 12px 17px;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.035);
    color: #ffffff !important;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;

    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.hayme-profile__button:hover {
    border-color: #c72528;
    background: rgba(199, 37, 40, 0.08);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.hayme-profile__button--primary {
    border-color: #c72528;
    background: #c72528;
}

.hayme-profile__button--primary:hover {
    border-color: #ffffff;
    background: #c72528;
}

.hayme-profile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;

    width: 36px;
    height: 36px;
    margin-right: 14px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.hayme-profile__icon svg,
.hayme-profile__address-icon svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hayme-profile__button-text {
    flex: 1;
    text-align: left;
}

.hayme-profile__chevron {
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.hayme-profile__address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;

    margin: 0;
    padding: 5px 0 34px;

    color: #b8b8b8;
    font-size: 15px;
    font-style: normal;
    line-height: 1.55;
}

.hayme-profile__address div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hayme-profile__address-icon {
    display: inline-flex;
    margin-top: 2px;
    color: #c72528;
}

.hayme-profile__footer {
    padding: 18px 0 34px;
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
}

.hayme-profile__footer p {
    margin: 0 0 4px;
    color: #777777;
}

.hayme-profile__footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.hayme-profile__footer-links a {
    color: #8f8f8f !important;
    text-decoration: none !important;
}

.hayme-profile__footer-links a:hover {
    color: #ffffff !important;
}

@media (max-width: 480px) {

    .hayme-profile {
        margin-top: 32px;
        padding: 0 16px;
    }

    .hayme-profile__logo {
        width: 124px;
        margin-bottom: 30px;
    }

    .hayme-profile__header {
        padding-bottom: 31px;
    }

    .hayme-profile__header h1 {
        font-size: 34px;
    }

    .hayme-profile__button {
        min-height: 62px;
    }
}