/* ── Latest News Block ──────────────────────────────────────────────── */
main {
    --lnb-accent: #c0392b;
    --lnb-text: #111;
    --lnb-muted: #666;
    --lnb-border: #e0e0e0;
    --lnb-radius: 4px;
    --lnb-gap: 18px;
    color: var(--lnb-text);
    margin-bottom: 40px;
}

/* Header */
.lnb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--lnb-accent);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.lnb-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.lnb-view-all {
    font-size: .72rem;
    color: var(--lnb-accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: opacity .2s;
}

.lnb-view-all:hover {
    opacity: .7;
}

/* Tabs */
.lnb-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.lnb-tab {
    background: none;
    border: 1px solid var(--lnb-border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--lnb-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    line-height: 1.5;
}

.lnb-tab:hover {
    border-color: var(--lnb-accent);
    color: var(--lnb-accent);
}

.lnb-tab.active {
    background: var(--lnb-accent);
    border-color: var(--lnb-accent);
    color: #fff;
}

/* Shared meta labels */
.lnb-card-cat {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--lnb-accent);
    display: inline;
}

.lnb-card-date {
    font-size: .65rem;
    color: var(--lnb-muted);
    display: inline;
}

/* ── Layout ─────────────────────────────────────────────────────────── */
.lnb-layout {
    transition: opacity .25s;
}

.lnb-layout.is-loading {
    opacity: .35;
    pointer-events: none;
}

.lnb-layout-hero {
    margin-bottom: var(--lnb-gap);
}

/* Hero card — same as hcard but full width, bigger image + title */
.lnb-hcard--hero .lnb-hcard-inner {
    gap: 20px;
    align-items: center;
}

@media (max-width: 767px) {
    .lnb-hcard--hero .lnb-hcard-inner {
        border-top: 0px solid var(--lnb-border);
    }
}

.lnb-hcard-inner, .lnb-hcard-inner, .lnb-trow-inner {
    text-decoration: none !important;
}

.lnb-hcard--hero .lnb-hcard-thumb {
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnb-hcard-title--hero {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 4px 0 0;
}

.lnb-layout-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--lnb-gap);
    align-items: start;
}

/* ── Horizontal card (left column) ──────────────────────────────────── */
.lnb-hcard {
    padding-bottom: var(--lnb-gap);
}

.lnb-hcard:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lnb-hcard-inner {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    align-items: start;
}

@media (max-width: 767px) {
.lnb-hcard-inner {
    grid-template-columns: 1fr;
    padding-top: 24px;
    border-top: 1px solid var(--lnb-border);
}
}

.lnb-hcard-thumb {
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: var(--lnb-radius);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnb-hcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.lnb-hcard .lnb-hcard-thumb:hover img {
    transform: scale(1.06);
}

.lnb-hcard-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lnb-hcard-meta {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.lnb-hcard-title {
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 4px 0 0;
    transition: color .15s;
}

.lnb-hcard a:hover {
    text-decoration: none !important;
}

.lnb-hcard .lnb-hcard-title:hover {
    color: var(--lnb-accent);
}

.lnb-hcard-excerpt {
    color: var(--lnb-muted);
    line-height: 1.5;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Text-only row (right column) ───────────────────────────────────── */
.lnb-trow {
    border-bottom: 1px solid var(--lnb-border);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.lnb-trow:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lnb-trow-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lnb-trow-meta {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.lnb-trow-title {
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 5px 0 0;
    transition: color .15s;
}

.lnb-trow:hover .lnb-trow-title {
    color: var(--lnb-accent);
}

/* ── Divider between cols ────────────────────────────────────────────── */
.lnb-col-right {
    border-left: 1px solid var(--lnb-border);
    padding-left: var(--lnb-gap);
}

/* ── Spinner ─────────────────────────────────────────────────────────── */
.lnb-spinner {
    text-align: center;
    padding: 20px 0;
}

.lnb-spinner-dot {
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 3px solid var(--lnb-border);
    border-top-color: var(--lnb-accent);
    border-radius: 50%;
    animation: lnb-spin .7s linear infinite;
}

@keyframes lnb-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 700px) {
    /* Stack columns */
    .lnb-layout-bottom {
        grid-template-columns: 1fr;
    }

    .lnb-col-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--lnb-border);
        padding-top: var(--lnb-gap);
    }

    /* Horizontal cards keep 50/50 split on mobile, just smaller gap */
    .lnb-hcard-inner {
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .lnb-tabs {
        gap: 4px;
    }

    .lnb-tab {
        padding: 4px 10px;
        font-size: .67rem;
    }
}

.proof-checked {
    background: #22c55e17;
    padding: 0px 8px!important;
    margin: 4px 0 9px 0!important;
    border-radius: 100px;
}
.proof-checked__text {
    display: inline-block;
    font-size: 13px;
    color: #000;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 26px;
}

.news-title {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    color: #191B27;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

div.alm-listing > li.alm-item {
    padding: 0 0 0 220px;
}
div.alm-listing > li.alm-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 132px;
    object-fit: cover;
    object-position: top;
}

@media screen and (min-width: 768px) {
    .alm-listing>li.alm-item h3 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .alm-item__description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


.alm-listing > li.alm-item h3 {
    transition: .3s ease;
}

.alm-listing > li.alm-item h3:hover {
    color: #f22241;
}

@media screen and (max-width: 767px) {
    div.alm-listing > li.alm-item {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    div.alm-listing > li.alm-item img {
        position: static;
        width: 100%;
        height: auto;
        max-width: unset !important;
        max-height: 260px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .news-title {
        font-size: 24px;
    }
}


.proof-checked__tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-checked__tick svg {
    display: block;
}

@media screen and (max-width: 767px) {
    .proof-checked {
        margin: -1px 0 0!important;
    }
}
.mvp-block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    margin-top: 20px;
    font-family: inherit;
}
.mvp-block__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #1a1a1a;
}
.mvp-block__flame {
    color: var(--lnb-accent);
    font-size: 13px;
}
.mvp-block__label {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.mvp-block__period {
    color: #888;
    font-size: 10px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.mvp-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mvp-block__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
}
.mvp-block__item:last-child {
    border-bottom: none;
}
.mvp-block__item:hover {
    background: #fafafa;
}
.mvp-block__rank {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: #1a1a1a;
    border-radius: 4px;
    line-height: 1;
}
.mvp-block__item:first-child .mvp-block__rank {
    background: var(--lnb-accent);
}
.mvp-block__thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    overflow: hidden;
    display: block;
}
.mvp-block__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.mvp-block__item:hover .mvp-block__thumb img {
    transform: scale(1.06);
}
.mvp-block__body {
    flex: 1;
    min-width: 0;
}
.mvp-block__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color .2s;
}
.mvp-block__title:hover {
    color: var(--lnb-accent);
}
.mvp-block__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    color: #aaa;
}
.mvp-block__views {
    display: flex;
    align-items: center;
    gap: 3px;
}

@media (min-width:767px) {
    .home section.page-content .body h1,
    .home section.page-content .body h2,
    .home section.page-content .body h3{
            margin-top: 50px;
    }
}


.post-nav-block {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin:20px 0;
    font-family: inherit;
    background: #fff;
}

.post-nav-block__header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #1a1a1a;
}

.post-nav-block__label {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Row layout */
.post-nav-block__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Post items */
.post-nav-block__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: inherit;
    transition: background .2s;
    min-width: 0;
    text-decoration: none!important;

}

.post-nav-block__item:hover {
    background: #fafafa;
}

.post-nav-block__item--next {
    flex-direction: row-reverse;
    text-align: right;
}

.post-nav-block__item--next .post-nav-block__direction{
    justify-content: flex-end;
}

/* Thumbnail */
.post-nav-block__thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 5px;
    overflow: hidden;
}

.post-nav-block__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.post-nav-block__item:hover .post-nav-block__thumb img {
    transform: scale(1.06);
}

/* Body */
.post-nav-block__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.post-nav-block__direction {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aaa;
}

.post-nav-block__title {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.post-nav-block__item:hover .post-nav-block__title {
    color: var(--lnb-accent);
}

.post-nav-block__date {
    font-size: 10.5px;
    color: #bbb;
}

/* Share divider */
.post-nav-block__share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.post-nav-block__share-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
}

.post-nav-block__share-btn-wrap {
    position: relative;
}

.post-nav-block__share-tooltip {
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
    z-index: 10;
}

.post-nav-block__share-btn-wrap:hover .post-nav-block__share-tooltip {
    opacity: 1;
}

.post-nav-block__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: #fff;
    color: #777;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.post-nav-block__share-btn:hover {
    transform: translateY(-2px);
}

.post-nav-block__share-btn--twitter:hover  { background: #000;    border-color: #000;    color: #fff; }
.post-nav-block__share-btn--facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.post-nav-block__share-btn--email:hover    { background: #555;    border-color: #555;    color: #fff; }
.post-nav-block__share-btn--copy:hover,
.post-nav-block__share-btn--copy.copied   { background: #22c55e; border-color: #22c55e; color: #fff; }

/* Responsive — stack on mobile */
@media ( max-width: 600px ) {
    .post-nav-block__inner {
        grid-template-columns: 1fr;
    }

    .post-nav-block__share {
        flex-direction: row;
        justify-content: center;
        border-left: none;
        border-right: none;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 14px;
    }

    .post-nav-block__item--next {
        flex-direction: row;
        text-align: left;
    }
}
/* Wrapper */
.comments-block {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 32px;
    font-family: inherit;
    background: #fff;
}

/* Header */
.comments-block__header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #1a1a1a;
}

.comments-block__icon {
    color: var(--lnb-accent);
    display: flex;
    align-items: center;
}

.comments-block__label {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comments-block__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lnb-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 20px;
    padding: 1px 7px;
    line-height: 1.6;
}

/* Body */
.comments-block__body {
    padding: 0;
}

/* Comments list */
.comments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-item {
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item__inner {
    padding: 14px 16px;
}

/* Threaded replies — indent */
.comment-item .children {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #f0f0f0;
}

.comment-item .children .comment-item__inner {
    padding-left: 32px;
    background: #fafafa;
}

.comment-item .children .children .comment-item__inner {
    padding-left: 48px;
}

/* Meta row */
.comment-item__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-item__author {
    font-size: 12.5px;
    font-weight: 700;
    color: #111;
}

.comment-item__date {
    font-size: 11px;
    color: #bbb;
}

.comment-item__reply {
    margin-left: auto;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-decoration: none;
    transition: color .2s;
}

.comment-reply-link:hover {
    color: var(--lnb-accent);
}

/* Comment text */
.comment-item__text {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
}

.comment-item__text p {
    margin: 0;
}

/* Pending */
.comment-item__pending {
    margin-top: 6px;
    font-size: 11px;
    color: var(--lnb-accent);
    font-style: italic;
}

/* Form */
.comments-block__form {
    padding: 20px 16px;
    border-top: 1px solid #f0f0f0;
}

#reply-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

#reply-title .small {
    display: block;
}

#reply-title .small a {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    text-decoration: none;
    margin-left: 8px;
}

#reply-title .small a:hover {
    color: var(--lnb-accent);
}

.comments-block__fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.comments-block__field-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.comments-block__fields-row .comments-block__field-wrap {
    margin-bottom: 0;
}

.comments-block__field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

.comments-block__field-label span {
    color: var(--lnb-accent);
}

.comments-block__input,
.comments-block__textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: #111;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    resize: none;
    outline: none;
}

.comments-block__input:focus,
.comments-block__textarea:focus {
    border-color: var(--lnb-accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,.1);
}

.comments-block__submit {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.comments-block__submit:hover {
    background: var(--lnb-accent);
    transform: translateY(-1px);
}

.comments-block__closed {
    padding: 16px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin: 0;
}

/* Responsive */
@media ( max-width: 600px ) {
    .comments-block__fields-row {
        grid-template-columns: 1fr;
    }
}
.featured_img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--lnb-radius);
    max-height: 380px;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    img{
        width: 100%;
        height: auto;
    }
}
.sticky_box{
    position: sticky;
    top:20px;
    bottom: 0;

}
body.single .sticky_box aside{
    margin-top: 0;

}
@media (min-width: 1200px) {
    .container.post-container {
        width: 1000px;
        max-width: 100%;
    }
}
.post-container section.page-content blockquote {
    background-color: rgba(220, 221, 222, .2);
    padding: 25px 30px;
    border-radius: 8px;
}

/* =========================================
   Province Section [province] shortcode
   ========================================= */
section.page-content .body h1, section.page-content .body {

    .province-section {
        background-color: #f4f4f4;
        padding: 40px 20px;
        text-align: center;
        margin: 48px 0 24px;
        border-radius: 12px;
    }

    .province-section__title {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 24px;
        color: #010812;
        border-left: 4px solid #c0392b;
        padding-left: 12px;
        text-align: left;
        margin: 0 auto 16px;
    }

    .province-section__desc {
        max-width: 700px;
        margin: 0 auto 28px;
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }

    .province-section__grid-wrap {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px 28px;
        display: inline-block;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .province-section__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px 8px;
    }

    .province-section__link {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
        font-size: 15px;
        border-radius: 20px;
        transition: background-color 0.15s ease;
        text-align: center;
    }

    .province-section__link:hover {
        background-color: #e8e8e8;
        color: #333;
        text-decoration: none;
    }

    .province-section__cta {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    a.province-section__cta-btn, a.custom_hover {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        font-weight: 700;
        /*font-size: 13px;*/
        text-decoration: none!important;
        position: relative;
        color: #111;
        transition: color 0.15s ease;
        padding: 8px 0;
        overflow: hidden;
        text-align: left;
    }

    a.custom_hover:before,
    a.province-section__cta-btn:before {
        content: '';
        position: absolute;
        background-color: #c0392b;
        bottom: 0;
        height: 1px;
        width: 100%;
        right: 80%;
        transition: .3s;
    }

    a.custom_hover:hover,
    a.province-section__cta-btn:hover {
        color:#111;
    }
    a.custom_hover:hover:before,
    a.province-section__cta-btn:hover:before {
        right: 0;
    }

    a.custom_hover .arrow,
    .province-section__cta-btn .arrow {
        transition: .3s;
        /*color: #c0392b;*/
        font-size: 16px;
    }

    a.custom_hover:hover .arrow,
    .province-section__cta-btn:hover .arrow {
        transform: rotate(-45deg);
    }

    .province-section__cta-btn:hover {
        color: #c0392b;
    }

    @media (max-width: 600px) {
        .province-section__grid {
            grid-template-columns: 1fr;
        }
    }

    /** rules for authority shortcode*/

    .authority{
        margin: 32px 0 24px;
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-column-gap: 24px;
        align-items: end;
        justify-content: center;
        @media (max-width: 992px) {
            display: block;
        }

        .authority__head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            @media screen and (max-width: 992px) {
                flex-direction: column;
            }
        }
        .authority__title-block{
            width: 70%;

            @media (max-width: 992px) {
                width: 100%;
            }
        }
        .authority__title{
            font-weight: 700;
            text-transform: uppercase;
            font-size: 32px;
            color: #010812;
            text-align: left;
            margin: 0 auto 16px;
            span {
                color:#f22241;
            }
        }
        .authority__main{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 24px;
            margin-top: 24px;

            @media (max-width: 767px) {
                display: block;
                margin-top: 0;
            }
        }

        .authority__item{
            /*background-color: #ff0000;*/
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 12px;
            color: #010812;
            text-decoration: none!important;
            padding: 20px;
            border: 1px solid #e8e8e8;
            transition: .3s;
            @media (max-width: 767px) {
                aspect-ratio:auto;
                margin-top: 18px;
                flex-direction: row;
                align-items: start;
                justify-content: start;
                padding: 12px;
            }
        }
        .authority__icon svg{
            width: 30px;
        }
        .authority__name{
            font-size: 18px;
            margin: auto 0 0;

            @media (max-width: 1200px) and (min-width: 992px) {
                font-size: 14px;
            }
            @media (max-width: 767px) {
                margin: 0 0 0 12px;
                line-height: 30px;
            }
        }
        .authority__link{
            overflow: hidden;
            height: 0;
            margin: 0;
            padding: 0;
            transition: .3s;

            @media (max-width: 767px) {
                display: none;
            }
        }
        .authority__link svg{
            margin-bottom: -4px;
        }
        .authority__item:hover{
            margin: -10px;
            padding: 30px;
            background: #f22241;
            border-color: #f22241;
            color: #ffffff;
        }

        .authority__item:hover .authority__link {
            height: 24px;
            line-height: 24px;
            margin-top: 12px;
            padding-bottom: 10px;
        }
        .authority__img{
            grid-column: 2/3;
            grid-row: 1/3;
            border-radius: 12px;
            @media (max-width: 992px) {
                display: none;
            }
        }
        .authority__img.authority__img--mob{
            display: none;
            border-radius: 12px;
            margin-top: 30px;
            @media (max-width: 992px) {
                display: block;
                margin-bottom: 30px;
            }
        }
    }
    @media screen and (max-width: 992px) {
        .authority__subtitle {
            margin-bottom: 0;
        }
    }
}

/*Lang Switcher*/

.main-menu-nav__item.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.lang-switcher svg {
    stroke: #fff;
}

.lang-switcher__globe {
    margin-right: 2px;
    font-size: 15px;
}

.lang-switcher__current {
    font-weight: 700;
    color: #fff;
}

.lang-switcher__link {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.lang-switcher__link:hover {
    color: #fff;
}

.lang-switcher__sep {
    color: #d4d4d4;
    padding: 0 2px;
}

@media screen and (max-width: 992px) {
    .main-menu-nav__item.lang-switcher {
        display: flex;
        align-items: center;
        position: absolute;
        top: 25px;
        right: 102px;
    }
}