/* COMMON */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
}

.overlay.show {
    pointer-events: all;
    opacity: 0.49;
}

.bg-orange {
    background-color: var(--color-orange);
}

.text-align-center {
    text-align: center;
}

/* HTML: <div class="loader"></div> */
.loader-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
}

.loader {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow:
            20px 0 #000,
            -20px 0 #0002;
        background: #000;
    }
    33% {
        box-shadow:
            20px 0 #000,
            -20px 0 #0002;
        background: #0002;
    }
    66% {
        box-shadow:
            20px 0 #0002,
            -20px 0 #000;
        background: #0002;
    }
    100% {
        box-shadow:
            20px 0 #0002,
            -20px 0 #000;
        background: #000;
    }
}

/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* gap: 20px; */
    /* padding: 15px 24px; */
    /* font-size: 18px; */
    /* line-height: 22px; */
    /* font-weight: 500; */
    gap: 16px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    border-radius: 9999px;
    color: var(--color-primary);
    background-color: #fff;
    transition: all 0.2s ease 0s;
    border: 1px solid transparent;
}

.button.button_primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.button_primary .button__icon {
    fill: #fff;
}

.button_border_primary {
    border-color: var(--color-primary);
}

.button_border_white {
    border-color: #fff;
}

.button_text_uppercase {
    text-transform: uppercase;
}

.button_bg_transparent {
    background-color: transparent;
}

.button__icon-wrap {
    display: flex;
    /* height: 20px; */
    /* width: 20px; */
    height: 18px;
    width: 18px;
    align-items: center;
    justify-content: center;
}

.button__icon {
    fill: var(--color-orange);
    height: 18px;
    width: 15px;
    transition: all 0.2s ease 0s;
}

.button.link-button {
    color: #fff;
    padding: 0;
    fill: #fff;
    stroke: #fff;
    background: none;
    justify-content: flex-start;
    font-size: 14px;
}

@media (any-hover: hover) {
    .button.link-button:hover {
        box-shadow: none;
        background: none;
    }
}

.button.link-button .button__icon {
    fill: #fff;
    stroke: #fff;
}

.button.transparent-button {
    border: 1px solid var(--color-primary);
}

.text-color-white {
    color: #fff;
}

.text-color-black {
    color: #000;
}

@media (any-hover: hover) {
    .button:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background-color: var(--color-green);
        color: #fff;
    }

    .button:not(.pswp-gallery-view-all):hover .button__icon {
        transform: translate(2px, 0);
        fill: #fff;
    }
}

/* .button.small-button {
    font-size: 12px;
    padding: 5px 10px;
}

@media (min-width: 480px) {
    .button.small-button {
        font-size: 16px;
        padding: 10px 20px;
    }
} */

/* HEADERS */
.title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
	color: var(--color-primary);
}

.subtitle {
    font-family: var(--font-accent);
    font-size: 32px;
    line-height: 1.2;
}

.subtitle_yellow {
    color: var(--color-yellow);
}

.subtitle_orange {
    color: var(--color-orange);
}

.subtitle_pink {
    color: var(--color-secondary);
}

.subtitle_white {
    color: #fff;
}

.title_white {
    color: #fff;
}

.title_uppercase {
    text-transform: uppercase;
}

.title_primary {
    color: var(--color-primary);
}

@media (min-width: 992px) {
    .title {
        font-size: 42px;
        line-height: 48px;
    }

    .subtitle {
        font-size: 42px;
    }
}

/* SEARCH */
.search {
    position: relative;
    width: 100%;
}

.search__input {
    width: 100%;
    min-width: 250px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 18px;
    line-height: 26px;
}

.input {
    padding: 10px 40px 10px 32px;
    border-radius: 60px;
    border: 1px solid #000;
    transition: border-color 0.2s ease 0s;
}

.search__btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
}

.search__icon {
    width: 18px;
    height: 18px;
    fill: #000;
}

/* CARDS */
.card-label {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 60px;
    text-align: center;
    color: var(--color-primary);
    background-color: #fff;
	text-decoration: none;
}

.full-card__labels a.card-label {
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 60px;
    text-align: center;
    color: var(--color-primary);
    background-color: #fff;
    text-decoration: none; 
    white-space: nowrap;   
}

.page-card-label{
	width: fit-content;
	padding: 10px 14px;
	z-index: 2;
}

.full-card {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.3s ease 0s;
}

.full-card:hover {
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.full-card__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    /* height: 100%; */
    padding: 12px;
}

.full-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.full-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	z-index:2;
}

.full-card__labels.event-labels{
	width: 60%;
}

.full-card__event-date{
	width: 40%;
	display: flex;
	justify-content: flex-end;
	z-index:2;
}

.event-date{
	width: 90px;
	height: 90px;
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: #fff;
	color: #000;
	font-family: var(--font-heading);
}

.event-day{
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: bold;
}

.event-month{
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}

.full-card__favorite {
    align-items: flex-start;
}

.full-card__favorite-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.full-card__favorite-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.full-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 24px 24px;
    z-index: 1;
	pointer-events: auto;
}

.full-card__info {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.full-card__page-card-info{
	display: flex;
  	flex-direction: column;
   	justify-content: flex-start;
	margin-top: 16px;
	z-index: 2;
}

.full-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.full-card__page-card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
	color: #fff;
	top: 0;
}

.full-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    font-size: var(--font-size-text);
    line-height: var(--line-height-normal);
}

.full-card__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 150px;
    width: 100%;
    /* border-radius: 0 0 24px 24px; */
    border-radius: 0 0 20px 20px;
    background: linear-gradient(0deg, rgba(34, 31, 31, 1), rgba(34, 31, 31, 0.6) 44%, rgba(34, 31, 31, 0) 100%);
	mix-blend-mode: multiply;
    /* opacity: 0.9; */
}

.full-card__page-card-overlay {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    z-index: 1;
    height: 150px;
    width: 100%;
    /* border-radius: 0 0 24px 24px; */
    border-radius: 0 0 20px 20px;
    background: linear-gradient(180deg, rgba(34, 31, 31, 1), rgba(34, 31, 31, 0.6) 50%, rgba(34, 31, 31, 0) 100%);
	mix-blend-mode: multiply;
    /* opacity: 0.9; */
}

.full-card__popup {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 12px;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    color: #000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.full-card__popup-title {
    margin-bottom: 10px;
    text-align: left;
}

.full-card:hover .full-card__popup {
    transform: translateY(0);
}

.full-card__popup-content {
    display: flex;
    flex-direction: column;
}

.full-card:hover .full-card__info {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.full-card__location {
    margin-bottom: 10px;
}

.posts-slider .full-card,
.archive-posts .full-card,
.related-posts .full-card {
    min-height: 400px;
}

.full-card-v2 .full-card__header {
    position: relative;
    padding: 12px;
    height: 336px;
}

.full-card-v2 .full-card__img {
    border-radius: 0;
}

.full-card-v2 .full-card__wrap {
    gap: 0;
    padding: 0;
}

.full-card-v2 .full-card__location {
    margin-bottom: 20px;
}

.full-card__content-wrap {
    flex: 1;
    width: 100%;
    padding: 12px;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    color: #000;
	z-index: 2;
}

.full-card__content-title {
    margin-bottom: 10px;
    text-align: left;
    color: var(--color-primary);
}

.full-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.full-card__content-button {
    margin-top: auto;
}


.full-card__content-wrap.full-card__content-wrap-title {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 12px;
    z-index: 2;
    color: #fff;
    text-align: left;
	background: transparent;
}

.full-card__bottom-title {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: start;
	color: #fff;
	bottom: 0;
}


@media (min-width: 768px) {
    .full-card-v2 .full-card__header {
        padding: 20px;
    }

    .full-card__content-wrap {
        padding: 30px;
    }
	
	.full-card__bottom-title {
		font-size: 28px;
	}
}

@media (min-width: 768px) {
    .posts-slider .full-card {
        min-height: 485px;
    }

    .archive-posts .full-card,
    .related-posts .full-card {
        min-height: 575px;
    }

    .full-card__wrap {
        padding: 20px 20px 24px;
    }

    .full-card__popup {
        padding: 30px;
    }

    .full-card__title {
        font-size: 28px;
    }
}

.small-card {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.3s ease 0s;
    min-height: 260px;
    z-index: 1;
}

.small-card:hover {
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.small-card .small-card__link {
    display: flex;
    width: 100%;
    color: #fff;
}

.small-card__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 12px;
}

.small-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 24px 24px;
    z-index: -1;
    transition: transform 0.2s ease 0s;
    will-change: transform;
}

.small-card__info {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.small-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

.small-card__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 150px;
    width: 100%;
    /* border-radius: 0 0 24px 24px; */
    border-radius: 0 0 20px 20px;
    background: linear-gradient(0deg, rgba(34, 31, 31, 1), rgba(34, 31, 31, 0.6) 44%, rgba(34, 31, 31, 0) 100%);
	mix-blend-mode: multiply;
    /* opacity: 0.9; */
}

.small-card:hover .small-card__img {
    transform: scale(1.05);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
}

.pagination__list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination__item a:not(.pagination__arrow),
.pagination__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(20, 56, 42, 0.5);
    transition: all 0.2s ease 0s;
}

.pagination__arrow a {
    display: flex;
}

.pagination__item span.active {
    border-radius: 50%;
    font-size: 20px;
    background-color: var(--color-primary);
    /* color: #000; */
    color: #fff;
    pointer-events: none;
}

.pagination__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.pagination__arrow-icon {
    width: 9px;
    height: 15px;
    fill: rgba(20, 56, 42, 0.5);
    transition: fill 0.2s ease 0s;
}

.pagination__arrow_left {
    margin-right: 8px;
}

.pagination__arrow_right {
    margin-left: 8px;
}

.pagination__arrow_left .pagination__arrow-icon {
    transform: rotate(90deg);
}

.pagination__arrow_right .pagination__arrow-icon {
    transform: rotate(270deg);
}

.pagination.pagination_orange .pagination__item span.active {
    background-color: var(--color-orange);
    color: #fff;
}

.pagination.pagination_orange .pagination__item a:not(.pagination__arrow),
.pagination.pagination_orange .pagination__item span:not(.active) {
    color: var(--color-primary);
    opacity: 0.5;
}

.pagination.pagination_orange .pagination__arrow-icon {
    fill: var(--color-primary);
    opacity: 0.5;
    transition: opacity 0.2s ease 0s;
}

.pagination.pagination_orange .pagination__item:hover .pagination__arrow-icon,
.pagination.pagination_orange .pagination__item:hover a:not(.pagination__arrow),
.pagination.pagination_orange .pagination__item:hover span {
    opacity: 1;
}

@media (min-width: 768px) {
    .pagination__item a:not(.pagination__arrow),
    .pagination__item span {
        font-size: 20px;
    }

    .pagination__list {
        gap: 48px;
    }

    .pagination__arrow {
        width: 32px;
        height: 32px;
    }

    .pagination__arrow-icon {
        width: 20px;
        height: 20px;
    }
}

@media (any-hover: hover) {
    .pagination__item a:hover {
        color: var(--color-primary);
    }

    .bg-beige .pagination__item a:not(.pagination__arrow):hover {
        color: var(--color-primary);
    }

    .bg-orange .pagination__item a:not(.pagination__arrow):hover {
        color: #fff;
    }

    .pagination__arrow-icon:hover {
        fill: var(--color-primary);
    }

    .bg-orange .pagination__arrow-icon:hover {
        fill: #fff;
    }

    .bg-beige .pagination__arrow-icon:hover {
        fill: var(--color-primary);
    }
}

/* SEARCH RESULTS */
.search-results-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.search-result-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-card-header {
    margin-bottom: 20px;
}

.search-card-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

.search-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #666;
}

.search-card-date {
    font-weight: 500;
    color: #888;
}

.search-card-image {
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.search-card-content {
    margin: 20px 0;
    line-height: 1.7;
    color: var(--color-gray);
    font-size: 16px;
}

.search-card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.search-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 3px solid var(--color-primary);
}

.search-header .title {
    color: #333;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px dashed #ddd;
}

.no-results h2 {
    color: #666;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.no-results p {
    color: #888;
    line-height: 1.6;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .search-result-card {
        padding: 40px;
        border-radius: 24px;
    }

    .search-card-title {
        font-size: 32px;
    }

    .search-card-meta {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .search-card-image img {
        height: 300px;
    }

    .search-card-content {
        font-size: 20px;
    }

    .search-header .title {
        font-size: 42px;
    }

    .no-results {
        padding: 80px 40px;
    }

    .no-results h2 {
        font-size: 32px;
    }

    .no-results p {
        font-size: 20px;
    }
}

.search-results-main__body {
    padding: 140px 0 60px;
}

@media (min-width: 992px) {
    .search-results-main__body {
        padding: 224px 0 120px;
    }
}

.posts-navigation {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-light-gray);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-previous,
.nav-next {
    max-width: 200px;
    width: 100%;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding: 14px 12px;
    background: var(--color-primary);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .nav-previous a:hover,
    .nav-next a:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-previous,
    .nav-next {
        flex: 1;
        max-width: 200px;
        width: auto;
    }

    .nav-previous a,
    .nav-next a {
        padding: 14px 24px;
        font-size: 18px;
    }
}

.nav-previous a::before {
    content: 'â†';
    font-size: 18px;
}

.nav-next a::after {
    content: 'â†’';
    font-size: 18px;
}

/* CUSTOM SWIPER STYLES */
.custom-swiper-nav .swiper-button-prev::after,
.swiper-rtl .custom-swiper-nav .swiper-button-next::after {
    content: '';
}

.custom-swiper-nav .swiper-button-next::after,
.swiper-rtl .custom-swiper-nav .swiper-button-prev::after {
    content: '';
}

.custom-swiper-nav__arrow-right.swiper-button-next,
.custom-swiper-nav__arrow-left.swiper-button-prev {
    position: static;
    z-index: 3;
    margin-top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease 0s;
}

.custom-swiper-nav__arrow-right.swiper-button-next:hover,
.custom-swiper-nav__arrow-left.swiper-button-prev:hover {
    background-color: rgba(35, 109, 86, 1);
}

.custom-swiper-nav__arrow-right.swiper-button-next:hover .custom-swiper-nav__arrow-icon,
.custom-swiper-nav__arrow-left.swiper-button-prev:hover .custom-swiper-nav__arrow-icon {
    fill: #fff;
}

.custom-swiper-nav__arrow-left {
    transform: rotate(90deg);
}

.custom-swiper-nav__arrow-right {
    transform: rotate(-90deg);
}

.custom-swiper-nav__arrow-left:active:not([disabled]) .custom-swiper-nav__arrow-icon,
.custom-swiper-nav__arrow-right:active:not([disabled]) .custom-swiper-nav__arrow-icon {
    transform: translateY(4px);
}

.custom-swiper-nav .custom-swiper-nav__arrow-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
    transition: all 0.3s ease 0s;
}

/* DISCOVER */
.discover {
    position: relative;
    overflow: hidden;
}

.discover__container {
    position: relative;
}

.discover__container::before {
    content: '';
    position: absolute;
    min-height: 500px;
    background-image: url('https://kildare-new.mystagingwebsite.com/wp-content/themes/kildare-new/assets/images/logo-no-text-multi.svg');
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;

    top: -800px;
    left: -1200px;
    width: 500%;
    height: 155%;
    background-size: auto 100%;
}

.discover.irelands-ancient-east .discover__container::before {
	content: '';
    position: absolute;
    top: 0; 
    left: 30%; 
    transform: translateX(-70%); 
    width: 600px; 
   	height: auto;
    min-height: 400px; 
    background-image: url('https://kildare-new.mystagingwebsite.com/wp-content/themes/kildare-new/assets/images/iae-background-element.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain; 
}


.discover__body {
    position: relative;
    padding: 94px 0 154px;
    z-index: 1;
}

.discover__header {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: center;
    flex-direction: column;
}

.discover__header > div {
    flex: 0 1 50%;
}

.discover__info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover__desc {
    line-height: 30px;
}

.discover__list {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.discover__item {
    flex: 1 1 100%;
}

.discover-card {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    color: #fff;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.3s ease 0s;
    min-height: 250px;
}

.discover-card__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 45px 30px 25px;
}

.discover-card__info {
    display: flex;
    flex-direction: column;
}

.discover-card__title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 26px;
}

.discover-card__subtitle {
    font-weight: 500;
    font-size: 20px;
    padding-right: 30px;
}

.discover-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 0.2s ease 0s;
    will-change: transform;
}

.discover-card:hover .discover-card__img {
    transform: scale(1.05);
}

.discover-card:hover .button__icon {
    transform: translate(2px, 0);
}

@media (min-width: 600px) {
    .discover-card {
        min-height: 430px;
    }

    .discover__item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 768px) {
    .discover__header {
        flex-direction: row;
    }

    .discover__container::before {
        top: -390px;
        left: -800px;
        width: 200%;
        height: 130%;
        background-size: auto 125%;
    }
}

@media (min-width: 1024px) {
    .discover__list {
        flex-wrap: nowrap;
    }

    .discover__item {
        flex: 1 1 25%;
    }

    .discover__item:nth-child(odd) {
        margin-top: 60px;
        margin-bottom: 0px;
    }

    .discover__item:nth-child(even) {
        margin-top: 0px;
        margin-bottom: 60px;
    }

    .discover__container::before {
        top: -250px;
        left: -500px;
        width: 150%;
        height: 130%;
        background-size: auto 120%;
    }
}

@media (min-width: 1280px) {
    .discover-card__title {
        font-size: 42px;
        line-height: 34px;
    }

    .discover-card__subtitle {
        font-size: 24px;
        padding-right: 40px;
    }

    .discover__container::before {
        top: -250px;
        left: -500px;
        width: 100%;
        height: 130%;
        background-size: auto 130%;
    }
}

/* INSPIRATION */
.inspiration {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    min-height: auto;
}

.inspiration__bg-img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inspiration__bg-img {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inspiration__content {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: auto;
    flex-direction: column;
}

.inspiration__text {
    flex: 0 0 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 40px 0;
}

.inspiration__info {
    margin-bottom: 30px;
}

.inspiration__subtitle {
    margin-bottom: 15px;
}

.inspiration__title {
    margin-bottom: 10px;
}

.inspiration__description {
    margin-bottom: 25px;
    line-height: 30px;
}

.inspiration__link {
    margin-top: auto;
}

.inspiration .button.transparent-button {
    border-color: #000;
    /* color: #000; */
    /* font-size: 12px; */
    padding: 5px 10px;
}

/* Mobile-first responsive styles */
@media (min-width: 480px) {
    .inspiration__text {
        padding: 40px 30px;
    }

    .inspiration__description {
        margin-bottom: 30px;
    }

    .inspiration .button.transparent-button {
        /* font-size: 16px; */
        padding: 10px 20px;
    }
}

@media (min-width: 768px) {
    .inspiration {
        min-height: 500px;
    }

    .inspiration__content {
        flex-direction: row;
        min-height: 500px;
    }

    .inspiration__text {
        flex: 0 0 60%;
        margin: 60px 0px 60px auto;
        padding: 60px;
        background-color: #fff;
    }

    .inspiration__description {
        margin-bottom: 40px;
    }

    .inspiration__title {
        font-size: 60px;
        line-height: 42px;
        margin-left: 25px;
    }
}

@media (min-width: 992px) {
    .inspiration__text {
        flex: 0 0 44%;
        margin: 60px 40px 60px auto;
        padding: 60px;
        background-color: #fff;
    }
}

@media (min-width: 1024px) {
    .inspiration {
        min-height: 700px;
    }

    .inspiration__content {
        min-height: 700px;
    }

    .inspiration__text {
        padding: 60px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, var(--color-orange) 50%, var(--color-secondary) 50%);
    z-index: -1;
}

.cta-section__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: unset;
    padding: 30px;
}

.cta-section__content-text p {
    margin-bottom: 15px;
}

.cta-section__content-text p:last-child {
    margin-bottom: 0;
}

.cta-section__social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.cta-section__social a.cta-section__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    border: 2px solid #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section__social a.cta-section__social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-section__link {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b9d, #ff8a5b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    text-align: center;
    min-width: 150px;
}

.cta-section__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    color: white;
    text-decoration: none;
}

.cta-section__column--left {
    background-color: var(--color-secondary);
}

.cta-section__column--right {
    background-color: var(--color-orange);
}

.cta-section__content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.cta-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
}

.cta-section__content-text {
    margin-bottom: 30px;
    color: #fff;
}

.cta-section__link {
    width: 100%;
    text-align: center;
}

.cta-section__social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cta-section__container {
    padding: 0;
}

.cta-section__link-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .cta-section__content {
        grid-template-columns: 1fr 1fr;
        gap: 120px;
    }

    .cta-section__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cta-section__social-icon {
        width: 24px;
        height: 24px;
    }

    .cta-section__link {
        width: auto;
        text-align: left;
    }

    .cta-section__social {
        gap: 25px;
    }

    .cta-section__social a.cta-section__social-link {
        width: 50px;
        height: 50px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section::before {
        background: linear-gradient(90deg, var(--color-secondary) 50%, var(--color-orange) 50%);
    }

    .cta-section__container {
        padding: 0 32px;
    }

    .cta-section__column {
        min-height: 260px;
        padding: 0px;
    }
}

/* home page welcome block */

.welcome {
    padding: 24px 0px 32px 0px;
    background-color: #fff;
}

.welcome__title {
    font-weight: 700;
    font-size: 16px;
	color: var(--color-primary);
}

.scrolling-text__item {
    font-family: var(--font-accent);
}

.welcome__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.welcome__wrapper_first-column,
.welcome__wrapper_second-column {
    width: 100%;
}

.welcome__wrapper_second-column .editor-content > *:first-child {
    margin-top: 0;
}

.welcome__wrapper_first-column .content {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
	color: var(--color-primary);
}

.welcome__header-wrapper {
    font-family: var(--font-heading);
    padding: 16px 0;
}

.scrolling-text {
    padding: 24px 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
/* 	color: #f05a2aB3 !important; */
	color: #f9ae42CC !important;
}

.scrolling-text__item,
.scrolling-text__item:not(:last-child):after {
    font-size: 32px;
    line-height: 52px;
}

.scrolling-text__item {
    float: left;
    overflow: hidden;
}

.scrolling-text__item:not(:last-child):after {
    content: '•';
    display: inline-block;
    margin: 0px 20px;
}

.scrolling-text__items {
    display: block;
    width: max-content;
    position: absolute;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

/* .scrolling-text.swiper-free-mode>.swiper-wrapper {
        transition-timing-function: linear;
    } */

@media (min-width: 768px) {
    .welcome {
        padding: 24px 0px 92px 0px;
    }

    .welcome__container {
        flex-direction: row;
        gap: 40px;
    }

    .welcome__header-wrapper {
        font-family: var(--font-heading);
        padding: 16px 0px 24px;
    }

    .welcome__title {
        font-size: 24px;
    }

    .welcome__wrapper_first-column .content {
        font-size: 48px;
    }

    .welcome__wrapper_first-column,
    .welcome__wrapper_second-column {
        width: 50%;
    }

    .scrolling-text {
        padding: 32px 0;
        height: 142px;
    }

    .scrolling-text__item,
    .scrolling-text__item:not(:last-child):after {
        font-size: 48px;
        line-height: 78px;
    }

    .scrolling-text__item:not(:last-child):after {
        margin: 0px 36px;
    }

    .scrolling-text__items {
        animation: marquee 30s linear infinite;
    }
}

@media (min-width: 1200px) {
    .welcome__wrapper_first-column .content {
        font-size: 60px;
    }
}

/* TABS */
.tabs__navigation {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tabs__title {
    position: relative;
    min-width: 122px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #fff;
    border-radius: 60px;
    background-color: #fff;
    color: #000;
    transition: all 0.2s ease 0s;
}

.tabs__title:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tabs__title._tab-active {
    color: var(--color-orange);
    border-color: var(--color-orange);
}

.tabs__title_transparent {
    color: #fff;
    background-color: transparent;
}

.tabs__title.tabs__title_transparent._tab-active {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.tabs__title.tabs__title_transparent:hover {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .tabs__navigation {
        gap: 24px;
    }

    .tabs__title {
        min-width: 154px;
        padding: 12px 28px;
        font-size: 16px;
    }
}

/* Hero Info Block */
.hero-info {
    padding: 24px 0;
}

.hero-info__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-info__title_first-row {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 400;
    line-height: 60px;
    white-space: pre;
}

.hero-info__title_second-row {
    font-size: 32px;
    line-height: 42px;
    font-weight: 800;
}

.hero-info__body {
    display: flex;
    flex-direction: column;
}

.hero-info__content {
    flex: 1 0 75%;
    padding-right: 0px;
}

.hero-info__content.without-image {
    flex: 1 0 100%;
}

.hero-info__img-wrap {
    flex: 1 0 25%;
    padding-left: 0px;
}

.hero-info__img {
    margin-top: 0;
    z-index: 3;
    position: relative;
    height: 250px;
    width: unset;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.hero-info__video-wrap {
    flex: 1 0 100%;
    padding-left: 0px;
	display: flex;
	align-items: center;
}

.hero-info__video {
    height: auto;
    width: unset;
    max-width: 100%;
    max-height: 600px;
    border-radius: 12px;
}

.hero-info__caption {
    padding: 30px 0;
}

.hero-info__caption p:not(:last-child) {
    margin-bottom: 25px;
}

.hero-info .hero-info__caption a {
    color: var(--color-orange);
    text-decoration: underline;
    font-weight: bold;
}

.info-block__container {
    position: relative;
}

.hero-info .breadcrumbs {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero-info__body {
        flex-direction: row;
    }

    .hero-info__img-wrap {
        padding-left: 30px;
    }

    .hero-info__content {
        padding-right: 30px;
    }

    .hero-info__img {
        height: unset;
        width: 100%;
    }

    .hero-info__body.hero-info__video-present .hero-info__content,
    .hero-info__body.hero-info__video-present .hero-info__video-wrap {
        flex: 1 0 50%;
    }

    .hero-info__video {
        height: 320px;
        width: 100%;
        max-height: 600px;
        border-radius: 12px;
    }

    .hero-info__title_second-row {
        font-size: 60px;
        line-height: 64px;
    }

    .hero-info__content {
        flex: 1 0 50%;
    }

}

@media (min-width: 1024px) {
    .hero-info__img {
        margin-top: -40px;
    }
    .hero-info__content {
        flex: 1 0 75%;
    }
}

/* Hero Info Block V2 */
.hero-info-v2 {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-info-v2 .hero-info__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-info-v2.hero-info-v2_column .hero-info__content {
    gap: 20px;
}

.hero-info-v2 .hero-info__title,
.hero-info-v2 .hero-info__caption {
    flex: 1 0 50%;
}

.hero-info-v2.hero-info-v2_column .hero-info__caption {
    flex: 1;
}

.hero-info-v2 .hero-info__caption {
    padding: 0;
}

.hero-info-v2 .hero-info__title_first-row {
    color: var(--color-secondary);
}

.hero-info-v2 .breadcrumbs {
    margin-bottom: 20px;
}

.hero-info-v2 ul li{
	list-style: disc !important;
	margin-bottom: 10px;
	margin-left: 17px;
}

@media (min-width: 768px) {
    .hero-info-v2 .hero-info__content {
        flex-direction: row;
    }

    .hero-info-v2.hero-info-v2_column .hero-info__content {
        flex-direction: column;
    }

    .hero-info-v2.hero-info-v2_center .hero-info__content,
    .hero-info-v2.hero-info-v2_center .hero-info__title {
        align-items: center;
        text-align: center;
    }

    .hero-info-v2.hero-info-v2_right .hero-info__content,
    .hero-info-v2.hero-info-v2_right .hero-info__title {
        align-items: flex-end;
        text-align: right;
    }
	
    .hero-info-v2 .hero-info__content .hero-info__title.title {
        flex: 0 0 40%;
    }

}

/* Info Block */
.info-block {
    background-color: var(--color-primary);
    padding: 40px 0;
    color: #fff;
    position: relative;
}
.info-block__body {
    display: flex;
    gap: 30px;
    position: relative;
    flex-direction: column;
}
.info-block__content,
.info-block__img-wrap {
    flex: 1 0 50%;
}
.info-block__img-wrap.info-block__img-wrap_gallery {
    border-radius: 0;
}

.info-block__img-wrap_gallery .post-gallery.gallery-v2 {
    height: 100%;
    margin-bottom: 0;
}

.info-block__img-wrap_gallery .gallery-v2 .post-gallery-item {
    height: 100%;
    width: 100%;
}

.info-block__content {
    padding: 0px;
    z-index: 1;
}
.info-block__img-wrap {
    padding: 0px;
    height: 505px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    z-index: 1;
    box-sizing: border-box;
}
.info-block__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 40px;
}
.info-block__title {
    font-family: var(--font-main);
    margin-bottom: 30px;
}
.info-block__caption {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.info-block__caption ul {
    margin-left: 30px;
}
.info-block__caption li {
    list-style: disc;
    margin-bottom: 15px;
}
.info-block__caption p {
    margin-bottom: 15px;
}
.info-block__logo-bg {
    position: absolute;
    top: -102px;
    right: auto;
    bottom: -40px;
    width: 100%;
    background: url('../images/logo-no-text.svg') left top no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.info-block__logo-bg.info_block_logo_bottom_right {
    top: auto;
    right: 0;
    background: url('../images/logo-no-text.svg') right bottom no-repeat;
    background-size: contain;
    height: 650px;
}
.info-block.separated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
}
.info-block__buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .info-block__body {
        gap: 0px;
        flex-direction: row;
    }
    .info-block__content {
        padding-right: 40px;
    }
    .info-block__img-wrap {
        padding-left: 40px;
    }

    .info-block__body.info-block-img-left {
        flex-direction: row-reverse;
    }
    .info-block-img-left .info-block__content {
        padding-left: 40px;
    }
    .info-block-img-left .info-block__img-wrap {
        padding-right: 40px;
    }
}
@media (min-width: 576px) {
    .info-block__logo-bg {
        left: 32px;
        width: 503px;
    }
    .info-block__logo-bg.info_block_logo_bottom_right {
        left: auto;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.page-hero__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 314px; 
    background:
        url('../images/shape-left-aligned.svg') no-repeat center,
        linear-gradient(to bottom, transparent 50%, #fff 50% 100%);
    /* background: url('https://kildare-new.mystagingwebsite.com/wp-content/themes/kildare-new/assets/images/shape-left-aligned.svg') no-repeat center, linear-gradient(to bottom, transparent 50%, #fff 50% 100%); */
    background-size:
        101% 220%,
        100% 101%;
}

.page-hero.small-hero.small-hero_beige::after {
    background:
        url('../images/shape-beige-cover.svg') no-repeat center,
        linear-gradient(to bottom, transparent 50%, #fff 50% 100%);
    background-size:
        101% 220%,
        100% 101%;
}

.page-hero.small-hero::before {
    height: 100%;
}

.page-hero.small-hero::before {
    bottom: -6px;
    background-image: url('../images/shape-small-white.svg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
}

.page-hero.small-hero.small-hero_beige::before {
    background-image: url('../images/shape-small-beige.svg');
}

.page-hero__content {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 2;
    width: 100%;
    color: #fff;
    transform: translateY(-50%);
}

.page-hero__content.page-hero__content-above{
	z-index: 3;
}

.page-hero__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-shadow: 3px 5px 7px rgba(0, 0, 0, 0.7);
}

/* Page Hero Small */
.page-hero.small-hero {
    height: 50vh;
    min-height: 300px;
}
.small-hero .hero__title_first-row {
    font-size: 24px;
    line-height: 40px;
}
.small-hero .hero__title_second-row {
    font-size: 36px;
    line-height: 40px;
}
.small-hero .page-hero__wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
/*     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); */
    pointer-events: none;
}
.page-hero.small-hero .breadcrumbs {
    margin-top: 0px;
    padding: 0px;
}
.small-hero .breadcrumbs a {
    color: #fff;
}
.small-hero .breadcrumbs__separator-icon {
    fill: #fff;
}
.small-hero .page-hero__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.small-hero .page-hero__title {
    align-items: center;
}

@media (min-width: 768px) {
    .small-hero .hero__title_first-row {
        font-size: 36px;
        line-height: 50px;
    }
    .small-hero .hero__title_second-row {
        font-size: 42px;
        line-height: 50px;
    }
}

/* BREADCRUMBS */
.page-hero .breadcrumbs {
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.breadcrumbs,
.breadcrumbs > span {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 26px;
    align-items: center;
min-height: 44px;	
}

.breadcrumbs a {
    opacity: 0.8;
    transition: color 0.2s ease 0s;
}

.breadcrumbs__last-link {
    pointer-events: none;
}

.breadcrumbs a:not(.breadcrumbs__last-link):hover {
    color: var(--color-secondary);
}

.breadcrumbs__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin: 0 4px;
}

.breadcrumbs__separator-icon {
    width: 8px;
    height: 5px;
    fill: var(--color-primary);
    transform: rotate(-90deg);
}

.single-post .breadcrumbs {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
	min-height: 50px;
}

.single-post .breadcrumbs a {
    color: #000;
    opacity: 1;
}

.single-post .breadcrumbs__separator-icon {
    fill: #000;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    width: 100%;
    min-width: 150px;
    max-width: 100%;
}

.dropdown__button {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-items: center;
    text-align: left;
    width: 100%;
    height: 48px;
    cursor: pointer;
    line-height: 20px;
}

.dropdown__button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%) rotate(-90deg);
    width: 7px;
    height: 13px;
    background: url('../images/icons/arrow-thin.svg') no-repeat center/cover;
    pointer-events: none;
    transition: all 0.2s ease 0s;
}

.archive-posts__intrests-buttons{
	display: flex;
	gap: 22px;
}

.intrests-buttons{
	min-width: 150px;
	display: inline-flex;      
    justify-content: center;  
    align-items: center; 
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 48px;
	cursor: pointer;
	line-height: 20px;
	padding: 10px 40px 10px 40px;
	border-radius: 60px;
    border: 1px solid #000;
}

.intrests-buttons:hover{
	background-color: var(--color-primary);
	color: #fff;
	font-weight: 600;
}

.dropdown__button_active::after {
    transform: translateY(-50%) rotate(90deg);
}

.dropdown__button_black {
    background-color: #000;
    color: #fff;
}

.dropdown__button_primary {
    background-color: var(--color-primary);
    color: #fff;
}

.dropdown__button_orange {
    background-color: var(--color-orange);
}

.dropdown__button_black::after,
.dropdown__button_orange::after,
.dropdown__button_primary::after {
    filter: brightness(0) invert(1);
}

.dropdown__list {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    list-style-type: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e6eaed;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease 0s;
}

.dropdown__list_visible {
    opacity: 1;
    visibility: visible;
}

.dropdown__list-item {
    margin: 0;
    padding: 15px;
    cursor: pointer;
    font-size: 15px;
    line-height: 18px;
    color: #444444;
    transition: background-color 0.2s ease 0s;
}

.dropdown__list-item_link {
    padding: 0;
}

.dropdown__list-item_link span {
    display: block;
    padding: 15px;
}

.dropdown__list-item_active {
    background: #f5f5f5;
    color: #000;
    font-weight: 700;
}

.dropdown__list-item:hover {
    background: #f5f8fa;
}

.dropdown__input_hidden {
    display: none;
}

@media (min-width: 768px) {
    .dropdown {
        max-width: 300px;
    }

    .dropdown__button {
        text-align: center;
    }
}

/* SELECT */
.select {
    position: relative;
    flex: 1 1 auto;
}

.select__body {
    position: relative;
}

.select__title {
    width: 100%;
    min-width: 140px;
    color: inherit;
    text-align: left;
    cursor: pointer;
    border-radius: 60px;
    border: 1px solid #000;
}

.select__content {
    text-align: center;
}

.select__value {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 13px 40px 13px 32px;
    font-size: 18px;
    line-height: 20px;
    position: relative;
}

.select__value > * {
    flex: 1 1 auto;
}

.select__value::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 13px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7422 0L12.5 0.808594L6.25 7.5L0 0.808594L0.753906 0L6.25 5.87891L11.7422 0Z' fill='black'/%3E%3C/svg%3E%0A")
        center/cover no-repeat;
    transition: all 0.3s ease 0s;
    transform: translateY(-50%);
}

._select-open .select__value::after {
    top: 41%;
    transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: 0.5;
}

.select__text {
    flex: 1 1 auto;
}

.select__input {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.select__options {
    position: absolute;
    top: 50px;
    left: 0;
    min-width: 100%;
    color: #000;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e6eaed;
    border-radius: 4px;
    background: #fff;
    z-index: 2;
}

.select__option {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    line-height: 18px;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

a.select__option {
    color: #000;
}

.select__option._select-selected {
    background-color: #f5f5f5;
}

.select__scroll {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (any-hover: hover) {
    .select__option:hover {
        background: #f5f8fa;
    }
}

._select-open {
    z-index: 2;
}

/* Spotlight slider */
.spotlight {
    background-color: var(--color-light-beige);
    padding: 40px 0;
}
.spotlight__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
	font-weight: 600;
}
.spotlight__controls {
    width: 96px;
    height: 58px;
    display: flex;
    align-items: center;
    align-self: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
}
.spotlight__controls .custom-swiper-nav__arrow-right.swiper-button-next,
.spotlight__controls .custom-swiper-nav__arrow-left.swiper-button-prev {
    border: 1px solid #000;
}
.spotlight__subtitle {
	color: var(--color-primary);
	font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 400;
}
.spotlight__desc {
    flex: 1 0 100%;
}
.spotlight__link {
    align-self: end;
    margin: 0px 30px 6px 0px;
}
.spotlight__body {
    z-index: 1;
    position: relative;
}

.title.spotlight__title{
	font-size: 42px;
}

@media (min-width: 768px) {
    .spotlight__slider .small-card {
        min-height: 310px;
    }

    .small-card__wrap {
        padding: 24px;
    }
    .spotlight__desc {
        flex: 1 0;
    }
    .spotlight__header {
        flex-wrap: no-wrap;
    }
	
	.title.spotlight__title{
		font-size: 42px;
	}
}

.spotlight__container {
    position: relative;
}
.spotlight__logo-bg {
    position: absolute;
    top: -70px;
    right: 0;
    bottom: -45px;
    pointer-events: none;
    z-index: 0;
}
.spotlight__logo-bg svg {
    width: 100%;
    height: 99%;
}

/* CTA BLOCK */
.cta {
    background-color: var(--color-primary);
}

.cta__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 0;
    /* color: #fff; */
}

.cta-business {
    color: #fff;
}

.cta-business .cta__title {
    color: #fff;
}

.cta__title {
    /* margin-bottom: 20px; */
    line-height: 1;
	font-size: 48px;
}

.cta__subtitle {
    margin-bottom: 10px;
}

.cta__caption {
    margin-top: 20px;
	margin-bottom: 40px;
}

.cta__buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .cta__body {
        padding: 80px 0;
    }

    /* .cta__button {
        padding: 15px 88px;
    } */
}

.post-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: (--font-size-text);
    line-height: var(--line-height-normal);
    color: var(--color-primary);
    transition: all 0.2s ease 0s;
}

.post-location:hover {
    color: var(--color-secondary);
}

.post-location__icon {
    flex-shrink: 0;
    width: 14px;
    height: 18px;
    fill: var(--color-orange);
}

.single-post-location{
	font-size: 24px;
    line-height: 25px;
}

.single-post-location__icon{
	width: 16px;
    height: 20px;
}

/* ALIGNMENTS & EDITOR STYLES */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.editor-content {
    color: var(--color-primary);
}

.editor-content h1 {
    font-size: 2em;
}

.editor-content h2 {
    font-size: 1.5em;
}

.editor-content h3 {
    font-size: 1.17em;
}

.editor-content h4 {
    font-size: 1em;
}

.editor-content h5 {
    font-size: 0.83em;
}

.editor-content h6 {
    font-size: 0.67em;
}

div.editor-content a {
    color: var(--color-secondary);
}

.editor-content a:hover {
    text-decoration: underline;
}

.editor-content p {
    line-height: 22px;
    margin-block-start: 20px;
    margin-block-end: 20px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.editor-content ul,
.editor-content ol {
    padding-left: 20px;
}

.editor-content ul li {
    line-height: 30px;
    list-style-type: disc;
}

.editor-content img {
    border-radius: 20px;
}

/* SPOILERS */
.spoilers__item {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: border-radius 0.8s ease 0s;
}

.spoilers__item:has(._spoiler-active) {
    border-radius: 20px;
}

.spoilers__item:not(:last-child) {
    margin-bottom: 20px;
}

.spoilers__title {
    position: relative;
    overflow: hidden;
    background-color: #f1f1f1;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .spoilers__item {
        border-radius: 60px;
    }

    .spoilers__item:not(:last-child) {
        margin-bottom: 40px;
    }
}

.spoilers__title._spoiler-active {
    background-color: #fff;
}

.spoilers__button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 48px 16px 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    transition: all 0.5s ease 0s;
}

.spoilers__title._spoiler-active .spoilers__button {
    font-weight: 700;
}

.spoilers__title::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.1387 11.5137C19.1387 10.9614 19.5864 10.5137 20.1387 10.5137C20.6908 10.5139 21.1387 10.9615 21.1387 11.5137L21.1387 21.1377L11.5137 21.1367C10.9614 21.1367 10.5136 20.689 10.5137 20.1367C10.5139 19.5846 10.9615 19.1367 11.5137 19.1367L19.1387 19.1367L19.1387 11.5137Z' fill='%2314382A'/%3E%3Cpath d='M6.78117 6.78117C7.17169 6.39066 7.80471 6.39065 8.19523 6.78117L20.4052 18.9911C20.7956 19.3816 20.7954 20.0147 20.4052 20.4052C20.0147 20.7957 19.3816 20.7957 18.9911 20.4052L6.78117 8.19523C6.39066 7.8047 6.39065 7.17168 6.78117 6.78117Z' fill='%2314382A'/%3E%3C/svg%3E%0A");
    transition: transform 0.3s ease-out;
    transform: translate(0, -50%) rotate(-90deg);
}

._spoiler-active.spoilers__title::after {
    transform: translateY(-50%);
}

.spoilers__content {
    padding: 10px 20px 20px 20px;
    font-size: 16px;
    line-height: 30px;
    background-color: #f1f1f1;
    color: var(--color-primary);
    transition: background-color 0.8s ease 0s;
}

._spoiler-active ~ .spoilers__body .spoilers__content {
    background-color: #fff;
}

.spoilers__button-img {
    width: 30px;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .spoilers__title::after {
        right: 21px;
    }

    .spoilers__button {
        padding: 10px 48px 10px 20px;
        font-size: 20px;
        line-height: 28px;
        min-height: 68px;
    }

    .spoilers__button-img {
        width: 48px;
    }

    .spoilers__content {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (min-width: 1024px) {
    .title_large {
        font-size: 60px;
        line-height: 63px;
    }
}

/* Latest news */
.latest-news .latest-news__slider {
    overflow: visible;
}
.acf-news-card {
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.latest-news__view-all.button:hover {
    box-shadow: none;
}
.latest-news__view-all.button {
    text-decoration: underline;
}
.latest-news__view-all .button__icon {
    fill: var(--color-primary);
}
.latest-news__title {
    color: var(--color-primary);
}

/* TABLE */
.table {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: var(--color-primary);
    background-color: var(--color-member-bg);
}

.table_cols_4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.table__header {
    display: contents;
}

.table__row {
    display: contents;
}

.table__row:last-child .table__cell {
    border-bottom: none;
}

.table__cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 18px;
    border-right: 1px solid rgba(20, 56, 42, 0.3);
    border-bottom: 1px solid rgba(20, 56, 42, 0.3);
    background-color: var(--color-light-beige);
}

.table:not(.table_cols_4) .table__cell:nth-child(3n) {
    border-right: none;
}

.table.table_cols_4 .table__cell:nth-child(4n) {
    border-right: none;
}

.table__cell:first-child {
    font-weight: 700;
}

.table__cell_header {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 8px;
    color: #fff;
    background-color: var(--color-orange);
    border-bottom: none;
}

@media (min-width: 576px) {
    .table {
        border-radius: 20px;
    }

    .table__cell {
        padding: 12px 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .table__cell_header {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 10px;
    }
}

@media (min-width: 768px) {
    .table {
        border-radius: 30px;
    }

    .table__cell {
        gap: 8px;
        padding: 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .table__cell_header {
        font-size: 20px;
        line-height: 28px;
        padding: 16px;
    }
}

@media (min-width: 992px) {
    .table {
        border-radius: 40px;
    }

    .table__cell {
        padding: 30px;
        font-size: 22px;
        /* font-size: 16px; */
        line-height: 33px;
    }

    .table__cell_header {
        padding: 20px 30px;
        font-size: 32px;
        /* font-size: 24px; */
        line-height: 48px;
    }

    .table__row:nth-child(2) .table__cell {
        padding: 46px 30px 30px;
    }

    .table__row:last-child .table__cell {
        padding: 30px 30px 36px;
    }
}

/* Become a Member section with steps */
.member-steps {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.member-step-number {
    font-size: 42px;
    font-weight: 600;
    font-style: bold;
    color: var(--color-primary);
    padding: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 100%;
}

.member-steps-grid {
    padding: 20px 0;
}

.step-title {
    padding: 20px 0;
}

.member-steps .wp-block-button {
    all: unset;
}

.member-steps .member-steps-borders {
    padding: 0 20px;
    border-left: 1px solid var(--color-orange);
    border-width: 60%;
}

.member-steps .member-steps-borders:first-child {
    border-left: 0;
}

.member-steps .member-steps-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}