@import url('/assets/bootstrap/css/bootstrap.min.css');
@import url('/vendor/leftorcms/css/icons.css');

.bg-gradient-primary {
    background-color: rgba(var(--bs-primary-rgb), 1);
    background-image: linear-gradient(65deg, rgba(var(--bs-primary-rgb), 1) 0%, rgba(var(--bs-dark-rgb), 0.4) 20%, rgba(var(--bs-primary-rgb), 1) 40%, rgba(var(--bs-dark-rgb), 0.4) 60%, rgba(var(--bs-primary-rgb), 1) 70%, rgba(var(--bs-dark-rgb), 0.4) 100%);
}

a {
    text-decoration: none;
}

.bg-skeleton-line {
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: skeleton-loading 1.5s infinite;
}

#instagramAltCover {
    background-color: #e0e0e0;
    border-radius: 4px;
}

#instagramPpAltCover {
    background-color: #e0e0e0;
    animation: skeleton-loading 1.5s infinite;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer {
    position: relative;
}

.col-lg-body-2 {
    flex: 0 0 auto;
    width: 16.666667vw;
}
/* navbar */
header .icon-magnifying-glass {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.loader-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaded .loader-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: all .8s ease-out;
}

.loader-wrapper .loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-page_color, #2b84d8);
    background: linear-gradient(90deg, var(--bs-page_color, #2b84d8) 10%, transparent 42%);
    -webkit-animation: loading 1.4s linear infinite;
    animation: loading 1.4s linear infinite;
    transform: translateZ(0);
}

.loader-wrapper .loader.loader:before {
    width: 50%;
    height: 50%;
    background: var(--bs-page_color, #2b84d8);
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.loader-wrapper .loader.loader:after {
    background: #f9fafb;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes skeleton-loading {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #c0c0c0;
    }
    100% {
        background-color: #e0e0e0;
    }
}

@keyframes skeleton-loading {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #c0c0c0;
    }
    100% {
        background-color: #e0e0e0;
    }
}

@-webkit-keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.ohr-section-layout {
    display: flex;
    flex-direction: column;
    background: #fff;
    min-height: calc(100vh - 210px);
    margin-left: -12px;
    margin-right: -12px;
}

.ohr-section-sidebar {
    background: #1B3061;
    color: #fff;
}

.ohr-section-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
}

.ohr-section-sidebar-link,
.ohr-section-sidebar-button {
    display: block;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 8px 10px 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ohr-section-sidebar-link:hover,
.ohr-section-sidebar-button:hover,
.ohr-section-sidebar-link.active,
.ohr-section-sidebar-button.active {
    color: #fff;
    opacity: 1;
    transform: translateX(2px);
}

.ohr-section-sidebar-link:not(.active),
.ohr-section-sidebar-button:not(.active) {
    opacity: 0.9;
}

.ohr-section-sidebar-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-top: 6px;
}

.ohr-section-sidebar-divider {
    width: 100%;
    max-width: 220px;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    margin: 6px 0 2px;
}

.ohr-section-sidebar-button {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 10px 16px;
    text-align: center;
}

.ohr-section-content {
    background: #fff;
    padding: 28px 32px 36px 24px;
    min-height: 520px;
}

.ohr-section-page-title {
    color: #1b1f2a;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 28px;
}

@media (min-width: 992px) {
    .ohr-section-layout {
        flex-direction: row;
        align-items: stretch;
        margin-left: -16px;
        margin-right: -16px;
    }

    .ohr-section-sidebar {
        width: 310px;
        flex: 0 0 310px;
    }

    .ohr-section-sidebar-inner {
        padding: 42px 48px 48px;
        gap: 14px;
    }

    .ohr-section-content {
        flex: 1 1 auto;
        padding: 42px 56px 56px 42px;
    }
}


.ohr-post-article {
    max-width: 980px;
}

.ohr-post-topbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.ohr-post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B3061;
    font-size: 0.95rem;
    font-weight: 600;
}

.ohr-post-back:hover {
    color: #1B3061;
}

.ohr-post-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ohr-post-share-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4dae4;
    background: #fff;
    color: #1B3061;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ohr-post-share-button:hover {
    background: #eef3fb;
    border-color: #1B3061;
    color: #1B3061;
}

.ohr-post-share-button i {
    font-size: 1rem;
    line-height: 1;
}

.ohr-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ohr-news-list-item {
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid #dfe5ef;
}

.ohr-news-list-item:last-child {
    margin-bottom: 0;
}

.ohr-news-list-title {
    margin: 0 0 10px;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
}

.ohr-news-list-title a:hover {
    color: #1B3061 !important;
}

.ohr-news-list-date {
    color: #5d6470;
    font-size: 0.95rem;
    margin: 0 0 12px;
}

.ohr-news-list-excerpt {
    color: #1b1f2a;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.ohr-news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ohr-news-page-link {
    text-decoration: none;
}

.ohr-news-page-link.active {
    background: #eef3fb;
    border-color: #1B3061;
    color: #1B3061;
}

.ohr-news-page-link.disabled {
    opacity: 0.7;
}

.ohr-decisions-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1B3061;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
}

.ohr-decisions-back-link::before {
    content: "\2190";
    font-size: 1rem;
    line-height: 1;
}

.ohr-decisions-back-link:hover {
    color: #0f234b;
    text-decoration: underline;
}

.ohr-decisions-fields-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ohr-decisions-field-link {
    display: block;
    padding: 0.9rem 1rem;
    border: 1px solid #d9e2f0;
    background: #f8fafd;
    color: #1B3061;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ohr-decisions-field-link:hover {
    background: #eef3fb;
    border-color: #bfcde3;
    color: #1B3061;
    text-decoration: none;
}

.ohr-decisions-field-link.active {
    background: #1B3061;
    border-color: #1B3061;
    color: #ffffff;
    text-decoration: none;
}

.ohr-decisions-filters {
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: #f5f7fb;
    border: 1px solid #dfe5ef;
}

.ohr-decisions-filters-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.ohr-decisions-filter-label {
    display: block;
    margin-bottom: 0.4rem;
    color: #1B3061;
    font-size: 0.92rem;
    font-weight: 700;
}

.ohr-decisions-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.ohr-decisions-list {
    display: flex;
    flex-direction: column;
}

.ohr-decisions-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0 1.5rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid #dfe5ef;
}

.ohr-decisions-item:last-child {
    margin-bottom: 0;
}

.ohr-decisions-item-main {
    min-width: 0;
}

.ohr-decisions-item-date {
    color: #5d6470;
    font-size: 0.95rem;
    margin: 0 0 0.55rem;
}

.ohr-decisions-item-title {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
}

.ohr-decisions-item-title a:hover {
    color: #1B3061 !important;
}

.ohr-decisions-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ohr-post-figure {
    margin: 0 0 22px;
}

.ohr-post-image {
    width: 100%;
    height: auto;
    display: block;
}

.ohr-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    color: #5d6470;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.ohr-post-meta-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.ohr-post-meta-separator {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #98a2b3;
}

.ohr-post-title {
    color: #1b1f2a;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 26px;
}

.ohr-post-content {
    color: #1b1f2a;
    font-size: 1.06rem;
    line-height: 1.85;
}

.ohr-post-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    footer {
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 -14px 30px rgba(10, 22, 48, 0.12);
    }

    footer > div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.25rem;
        padding: 1.4rem 1rem 1.6rem !important;
    }

    footer img[alt="Logo"] {
        max-width: 100%;
    }

    footer ul {
        margin: 0;
        padding: 0;
    }

    footer ul li {
        line-height: 1.55;
    }

    .ohr-navbar-wrapper {
        padding-bottom: 0.75rem !important;
    }

    .ohr-topbar .container-fluid,
    .ohr-menu-bar .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .ohr-branding {
        gap: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .ohr-brand-mark {
        width: min(72vw, 320px) !important;
        height: auto;
    }

    .ohr-brand-emblem {
        width: min(18vw, 72px) !important;
        height: auto;
    }

    .ohr-menu-bar > .col-2 {
        display: none;
    }

    .ohr-menu-bar .navbar {
        width: 100%;
    }

    .ohr-menu-bar .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 10px 24px rgba(5, 12, 30, 0.18);
        margin: 0.65rem 0;
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .ohr-menu-bar .navbar-toggler:hover,
    .ohr-menu-bar .navbar-toggler:focus-visible,
    .ohr-menu-bar .navbar-toggler.is-open {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.48);
        transform: translateY(-1px);
    }

    .ohr-menu-bar .navbar-toggler:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.45);
        outline-offset: 3px;
    }

    .ohr-menu-bar .navbar-toggler-icon {
        position: relative;
        width: 22px;
        height: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ohr-menu-bar .navbar-toggler-icon::before,
    .ohr-menu-bar .navbar-toggler-icon::after,
    .ohr-menu-bar .navbar-toggler-icon span {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease, bottom 0.24s ease;
    }

    .ohr-menu-bar .navbar-toggler-icon::before {
        top: 0;
    }

    .ohr-menu-bar .navbar-toggler-icon::after {
        bottom: 0;
    }

    .ohr-menu-bar .navbar-toggler-icon span {
        top: 7px;
    }

    .ohr-menu-bar .navbar-toggler.is-open .navbar-toggler-icon::before {
        top: 7px;
        transform: rotate(45deg);
    }

    .ohr-menu-bar .navbar-toggler.is-open .navbar-toggler-icon::after {
        bottom: 7px;
        transform: rotate(-45deg);
    }

    .ohr-menu-bar .navbar-toggler.is-open .navbar-toggler-icon span {
        opacity: 0;
    }

    .ohr-menu-bar .navbar-collapse {
        display: none;
        width: 100%;
        padding: 0.9rem 0 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border-radius: 14px;
        box-shadow: 0 14px 28px rgba(8, 16, 38, 0.18);
    }

    .ohr-menu-bar .navbar-collapse.show {
        display: block;
    }

    .ohr-menu-bar .navbar-nav {
        gap: 0;
        padding: 0 0.9rem 0.65rem;
    }

    .ohr-menu-bar .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .ohr-menu-bar .nav-item:last-child {
        border-bottom: 0;
    }

    .ohr-menu-bar .nav-link {
        display: block;
        padding: 1rem 0.15rem;
        font-size: 1.12rem;
        line-height: 1.45;
        letter-spacing: 0.01em;
    }

    .ohr-menu-bar .nav-link.active {
        color: #fff;
        font-weight: 700;
    }

    .ohr-menu-bar .navbar-collapse > .d-flex {
        padding: 0.75rem 0.9rem 0 0.9rem;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        gap: 0.85rem !important;
    }

    .ohr-menu-bar select.form-select {
        width: 100% !important;
        max-width: 132px;
        min-height: 48px;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.28) !important;
        background-color: rgba(255, 255, 255, 0.14);
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.2;
        padding: 0.7rem 2.2rem 0.7rem 0.95rem;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .ohr-menu-bar select.form-select:focus {
        border-color: rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.14) !important;
    }

    .ohr-menu-bar select.form-select option {
        color: #1b1f2a;
    }

    .ohr-search {
        width: 100%;
    }

    .ohr-search .input-group {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        min-height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 22px rgba(8, 16, 38, 0.12);
        overflow: hidden;
    }

    .ohr-search input.form-control {
        width: 100% !important;
        min-width: 0;
        height: 48px;
        padding: 0.7rem 0.95rem 0.7rem 0.1rem;
        font-size: 1rem;
        line-height: 1.2;
        background: transparent;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .ohr-search input.form-control::placeholder {
        color: #6b7280;
    }

    .ohr-search .input-group-text {
        display: inline-flex;
        align-items: center;
        min-width: 44px;
        justify-content: center;
        background: transparent !important;
        color: #1B3061;
        border: 0 !important;
        border-radius: 0 !important;
        padding: 0 0.35rem 0 0.8rem;
        flex: 0 0 44px;
    }

    .ohr-search .icon-magnifying-glass {
        color: #1B3061 !important;
    }

    .ohr-section-layout {
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .ohr-section-sidebar-inner {
        padding: 20px 18px;
    }

    .ohr-section-content {
        min-height: auto;
        padding: 22px 18px 28px;
    }

    .ohr-section-page-title {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .ohr-news-list-item {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .ohr-news-list-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .ohr-news-list-excerpt {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .ohr-post-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    .ohr-post-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .ohr-post-share {
        gap: 6px;
    }

    .ohr-post-share-button {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    footer {
        margin-top: 1.5rem;
    }

    footer > div {
        gap: 1rem;
        padding: 1.15rem 0.85rem 1.35rem !important;
    }

    .ohr-topbar .container-fluid,
    .ohr-menu-bar .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .ohr-branding {
        align-items: flex-start !important;
    }

    .ohr-brand-mark {
        width: min(76vw, 260px) !important;
    }

    .ohr-brand-emblem {
        width: min(16vw, 56px) !important;
    }

    .ohr-menu-bar .nav-link {
        font-size: 1.04rem;
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .ohr-menu-bar .navbar-collapse {
        border-radius: 12px;
    }

    .ohr-menu-bar .navbar-nav,
    .ohr-menu-bar .navbar-collapse > .d-flex {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .ohr-menu-bar select.form-select {
        max-width: 100%;
    }

    .ohr-search .input-group {
        min-height: 46px;
    }

    .ohr-search input.form-control {
        height: 46px;
    }

    .ohr-section-sidebar-inner {
        padding: 18px 14px;
    }

    .ohr-section-content {
        padding: 18px 14px 24px;
    }

    .ohr-section-page-title {
        font-size: 1.45rem;
    }

    .ohr-news-list-title {
        font-size: 1.12rem;
        line-height: 1.3;
    }

    .ohr-news-pagination {
        gap: 6px;
    }

    .ohr-news-page-link {
        width: 36px;
        height: 36px;
    }

    .ohr-post-title {
        font-size: 1.6rem;
    }

    .ohr-post-meta {
        font-size: 0.88rem;
    }
}

@media (min-width: 992px) {
    .ohr-decisions-fields-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .ohr-decisions-filters-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) auto;
        align-items: end;
    }

    .ohr-decisions-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    .ohr-decisions-item-actions {
        flex: 0 0 auto;
    }

    .ohr-section-layout {
        flex-direction: row;
        align-items: stretch;
        margin-left: -16px;
        margin-right: -16px;
    }

    .ohr-section-sidebar {
        width: 310px;
        flex: 0 0 310px;
    }

    .ohr-section-sidebar-inner {
        padding: 42px 48px 48px;
        gap: 14px;
    }

    .ohr-section-content {
        flex: 1 1 auto;
        padding: 42px 56px 56px 42px;
    }

    .ohr-post-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .ohr-post-share {
        justify-content: flex-end;
    }

      .ohr-post-meta {
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .ohr-decisions-fields-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
