/* 房東中心共用頁首 */
.organizationPageHeader{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    text-align: center;
}

.organizationBreadcrumbs{
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 0;
    margin-bottom: 14px;
    color: #978a77;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: left;
}

.organizationBreadcrumbs a{
    overflow: hidden;
    color: #8e7650;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.organizationBreadcrumbs a:hover,
.organizationBreadcrumbs a:focus-visible{
    color: #aa8d55;
    text-decoration: underline;
    outline: 0;
}

.organizationBreadcrumbs span{
    flex: 0 0 auto;
    color: #c3b5a2;
    font-size: 23px;
    font-weight: 400;
    line-height: 0.7;
}

.organizationBreadcrumbs strong{
    flex: 0 0 auto;
    color: #655b4d;
    font-weight: 700;
}

.organizationPageHeader h1{
    margin: 0;
    color: #655b4d;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.2;
}

.organizationPageHeader__company-name{
    margin: 0;
    color: #5f5547;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.45;
}

.organizationPageHeader h2{
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 50px;
    margin: 13px 0 0;
    color: #aa8d55;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.35;
}

.organizationPageHeader h2::before,
.organizationPageHeader h2::after{
    flex: 1 1 0;
    min-width: 0;
    height: 1px;
    background: #cdb98e4a;
    content: '';
}

@media (max-width: 620px){
    .organizationPageHeader{
        gap: 6px;
        margin-bottom: 26px;
    }

    .organizationPageHeader h1{
        font-size: 25px;
    }

    .organizationBreadcrumbs{
        gap: 7px;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .organizationBreadcrumbs a:nth-of-type(2){
        flex: 1;
    }

    .organizationPageHeader h2{
        gap: 24px;
        font-size: 20px;
    }

    .organizationPageHeader h2::before,
    .organizationPageHeader h2::after{
        min-width: 12px;
    }
}
