/* HERO SECTION */
.hero {
    position: relative;
    height: calc(80vh - 190px);
    overflow: hidden;
}

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

.hero__video-wrap {
    position: relative;
    height: 100%;
}

.hero__video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0) -75.671%, rgba(0, 0, 0, 0) 99.364%);
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-poster {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.hero__play-btn-icon {
    height: 80px;
    width: 80px;
    fill: #fff;
    transition: fill 0.3s ease 0s;
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.5));
}

.hero__play-btn-text {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 3px 5px 7px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease 0s;
}

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

.hero__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

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

.no-video .hero__title {
    padding-bottom: 100px;
}

.hero__title_first-row {
    font-family: var(--font-accent);
    font-size: 50px;
    line-height: 60px;
    white-space: pre;
}

.hero__title_second-row {
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero {
        height: 100vh;
    }

    /* .hero::before {
        height: 600px;
        background-size:
            100% 100%,
            100% 102%;
    } */

    .hero::before {
        height: 300px;
        background-size:
            101% 220%,
            100% 102%;
    }

    .hero__body {
        gap: 80px;
    }

    .hero__title_first-row {
        font-size: 72px;
        line-height: 80px;
    }

    .hero__title_second-row {
        font-size: 60px;
        line-height: 60px;
    }

    .hero__play-btn-icon {
        height: 100px;
        width: 100px;
    }
}

@media (min-width: 1600px) {
    .hero {
        height: 95vh;
    }

    /* .hero::before {
        height: 650px;
        background-size:
            100% 100%,
            100% 103%;
    } */

    .hero::before {
        height: 345px;
        background-size:
            101% 235%,
            100% 103%;
    }
}

@media (any-hover: hover) {
    .hero__play-btn:hover .hero__play-btn-icon {
        fill: var(--color-primary);
    }

    .hero__play-btn:hover .hero__play-btn-text {
        color: var(--color-primary);
    }
}

/* SECTIONS */
.posts-slider {
    background-color: var(--color-primary);
}

.posts-slider__slide .full-card__title {
    text-align: left;
}

.pages-slider__slide .full-card__img {
    transition: transform 0.3s ease;
}

.pages-slider__slide:hover .full-card__img {
    transform: scale(1.05);
}

.posts-slider__slider.swiper {
    margin: 0 -32px;
}

.posts-slider__body {
    position: relative;
    padding: 40px 0;
}

.posts-slider_with-tabs .posts-slider__header,
.posts-slider_region-highlights .posts-slider__header,
.posts-slider.posts-slider_with-btn:not(.posts-slider_with-tabs) .posts-slider__header {
    position: static;
}

.posts-slider_with-tabs .posts-slider__controls,
.posts-slider_region-highlights .posts-slider__controls,
.posts-slider.posts-slider_with-btn:not(.posts-slider_with-tabs) .posts-slider__controls {
    position: absolute;
    bottom: 8px;
    right: 40px;
}

.posts-slider__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    gap: 24px;
}

.posts-slider__desc {
    z-index: 1;
    max-width: 600px;
    text-align: center;
}

.posts-slider__subheading {
    color: #fff;
    margin-top: 12px;
}

.posts-slider__logo-bg {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 500px;
    height: 100%;
    background: url('../images/logo-no-text.svg') right center no-repeat;
    background-size: contain;
    pointer-events: none;
    filter: brightness(0.8);
}

.posts-slider__controls {
    width: 96px;
    height: 58px;
    display: flex;
    align-items: center;
    align-self: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
}

.posts-slider__btn-wrap {
    z-index: 1;
    margin-left: auto;
}

.posts-slider__btn.button {
    padding: 8px 24px;
    font-size: 16px;
    color: #fff;
    line-height: normal;
    white-space: nowrap;
}

.posts-slider__btn._hidden {
    display: none;
}

.posts-slider__btn.button:hover {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

@media (min-width: 576px) {
    .posts-slider__logo-bg {
        top: -45px;
        right: 0;
        width: 756px;
    }
}

@media (min-width: 768px) {
    .posts-slider__body {
        padding: 94px 0;
    }

    .posts-slider__header {
        margin-bottom: 42px;
        gap: 32px;
    }

    .posts-slider__desc {
        text-align: left;
    }

    .posts-slider_with-tabs .posts-slider__controls,
    .posts-slider_region-highlights .posts-slider__controls,
    .posts-slider.posts-slider_with-btn:not(.posts-slider_with-tabs) .posts-slider__controls {
        bottom: 56px;
        right: 40px;
    }

    .posts-slider__header {
        flex-direction: row;
        align-items: flex-end;
    }

    .posts-slider__btn.button {
        padding: 12px 24px;
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .posts-slider__header {
        gap: 60px;
    }
}

@media (min-width: 1600px) {
    .posts-slider__slider.swiper {
        margin: 0 auto;
    }
}

/* INTERACTIVE MAP */
.interactive-map {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.interactive-map__body {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    background-color: #003929;
}

.interactive-map__container {
    padding: 0;
    position: relative;
}

.interactive-map__desc {
    margin-bottom: 20px;
    text-align: center;
}

.interactive-map__svg-wrap svg {
    width: auto;
    height: 462px;
    display: block;
    margin: -14px 0 -2px -50px;
}

.svg-map-pin,
.svg-map-text,
.svg-map-text-rect {
    cursor: pointer;
    transition: fill 0.2s ease 0s;
}

.svg-map-pin {
    fill: #000;
}

.svg-map-pin.active {
    fill: #fff;
}

.svg-map-text {
    fill: #fff;
}

.svg-map-text.active {
    fill: #000;
}

.svg-map-text-rect.active {
    fill: #fff;
}

.map-card {
    position: relative;
    z-index: 1;
    display: none;
    height: auto;
    width: 280px;
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
    text-align: left;
}

.map-card.active {
    display: inline-flex;
}

.map-card__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.map-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: -1;
}

.map-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.map-card__info {
    flex: 1;
    padding: 16px;
    background-color: #fff;
    color: #000;
}

.map-card__info-button {
    padding: 10px 20px;
    margin-top: auto;
    /* font-size: 16px; */
}

.map-card__info-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-circle-block {
    display: none;
}

@media (min-width: 576px) {
    .interactive-map__body {
        position: absolute;
        top: 0;
        right: 32px;
        align-items: flex-end;
        background-color: transparent;
    }

    .interactive-map__container {
        padding: 0 32px;
    }

    .interactive-map__svg-wrap svg {
        margin: -14px 0 -2px -80px;
    }

    .map-card__img {
        height: 120px;
    }

    .map-card__excerpt {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .interactive-map {
        display: flex;
        flex-direction: column;
    }

    .interactive-map__svg-wrap {
        order: 1;
    }

    .interactive-map__container {
        order: 2;
        width: 100%;
    }
}

@media (min-width: 700px) {
    .interactive-map__svg-wrap svg {
        margin: -14px 0 -2px;
    }
}

@media (min-width: 768px) {
    .interactive-map__svg-wrap svg {
        width: 100%;
        height: 100%;
    }

    .map-circle-block {
        display: block;
    }
}

@media (min-width: 992px) {
    .map-card__img {
        height: 200px;
    }

    .map-card__excerpt {
        -webkit-line-clamp: 4;
    }
}

@media (min-width: 1200px) {
    .interactive-map__title {
        margin-bottom: 20px;
    }

    .map-card {
        width: 350px;
    }

    .map-card__info {
        padding: 30px;
    }

    .map-card__img {
        height: 220px;
    }

    .map-card__excerpt {
        -webkit-line-clamp: 5;
        margin-bottom: 20px;
    }
}

@media (min-width: 1400px) {
    .interactive-map__body {
        padding: 94px 0;
    }

    .interactive-map__title {
        margin-bottom: 60px;
    }

    .map-card__excerpt {
        -webkit-line-clamp: 6;
    }
}

/* POSTS GRID */
.posts-grid {
    background-color: var(--color-light-beige);
    text-align: center;
}

.posts-grid__subtitle{
	color: var(--color-primary);
}

.posts-grid__body {
    padding: 40px 0;
}

.posts-grid__info {
    margin-bottom: 40px;
}

.posts-grid__tabs .tabs__navigation {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .posts-grid__body {
        padding: 94px 0;
    }
}

/* GALLERY */
.post-gallery.gallery-v1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
    margin-bottom: 40px;
}

.post-gallery.gallery-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.post-gallery.gallery-v2_single {
    grid-template-columns: 1fr;
}

.post-gallery.gallery-v2_single .post-gallery-item {
    position: relative;
    height: 400px;
    grid-column: span 1;
    pointer-events: none;
    border-radius: 20px;
    overflow: hidden;
    /* aspect-ratio: 16 / 9; */
}

.single-post .post-gallery.gallery-v1 {
    margin-bottom: 0;
}

.gallery-v1 .post-gallery-item,
.gallery-v2 .post-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-v1 .post-gallery-item:first-child {
    grid-column: span 2;
}

.event-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 800;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.event-card-date__day {
    font-size: 24px;
}

.event-card-date__month {
    font-size: 12px;
}

.posts-grid .post-gallery-item:first-child .event-card-date {
    width: 90px;
    height: 90px;
}

.posts-grid .post-gallery-item:first-child .event-card-date__day {
    font-size: 40px;
}

.posts-grid .post-gallery-item:first-child .event-card-date__month {
    font-size: 18px;
}

@media (min-width: 768px) {
    .post-gallery.gallery-v2_single .post-gallery-item {
        height: 600px;
    }
}

@media (min-width: 992px) {
    .event-card-date {
        width: 70px;
        height: 70px;
    }

    .event-card-date__day {
        font-size: 32px;
    }

    .event-card-date__month {
        font-size: 16px;
    }

    .posts-grid .post-gallery-item:first-child .event-card-date {
        width: 100px;
        height: 100px;
    }

    .posts-grid .post-gallery-item:first-child .event-card-date__day {
        font-size: 44px;
    }

    .posts-grid .post-gallery-item:first-child .event-card-date__month {
        font-size: 20px;
    }
}

.post-gallery-item__link {
    overflow: hidden;
    display: block;
    height: 100%;
}

.post-gallery-item__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.post-gallery-item__image {
    transition: transform 0.2s ease 0s;
    will-change: transform;
}

.post-gallery-item:hover .post-gallery-item__image {
    transform: scale(1.05);
}

.post-gallery-item__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.post-gallery-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}

.posts-grid .post-gallery-item:first-child .post-gallery-item__title {
    width: 60%;
    font-size: 26px;
}

.post-gallery-item__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 150px;
    width: 100%;
    background: linear-gradient(0deg, rgba(34, 31, 31, 1), rgba(34, 31, 31, 0.6) 44%, rgba(34, 31, 31, 0) 100%);
}

.post-gallery__btn-wrap {
    text-align: right;
}

.post-gallery__btn.button {
    width: 100%;
    padding: 10px 20px;
    /* font-size: 16px; */
}

.post-gallery .single-post__view-all {
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    gap: 12px;
}

.single-post__view-all-text {
    display: none;
}

@media (min-width: 576px) {
    .post-gallery__btn.button {
        width: auto;
    }
}

@media (min-width: 768px) {
    .post-gallery-item__content {
        padding: 16px;
    }

    .event-card-date {
        top: 16px;
        left: 16px;
    }

    .post-gallery.gallery-v1 {
        grid-template-columns: 1fr 0.5fr 0.5fr;
        column-gap: 10px;
        row-gap: 10px;
    }

    .gallery-v1 .post-gallery-item {
        border-radius: 20px;
    }

    .gallery-v1 .post-gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 2;
        aspect-ratio: auto;
        /* max-height: 672px; */
    }

    .gallery-v1.gallery-few-images .post-gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (min-width: 992px) {
    .post-gallery.gallery-v1 {
        column-gap: 26px;
        row-gap: 32px;
    }

    .post-gallery .single-post__view-all {
        width: calc(100% - 36px);
        right: auto;
        left: 50%;
        bottom: 21px;
        padding: 10px 16px;
        transform: translateX(-50%);
    }

    .single-post__view-all-text {
        display: block;
        font-size: 14px;
    }

    .posts-grid .post-gallery-item:first-child .post-gallery-item__title {
        font-size: 42px;
    }
}

@media (min-width: 1400px) {
    .post-gallery-item__content {
        padding: 24px;
    }

    .event-card-date {
        top: 24px;
        left: 24px;
    }

    .post-gallery-item__title {
        font-size: 24px;
    }

    .single-post__view-all-text {
        font-size: 18px;
    }
}

.post-gallery.gallery-v1.gallery-single-image {
    display: grid;
    grid-template-columns: 1fr; 
    max-width: 600px;            
}

.post-gallery.gallery-v1.gallery-single-image .post-gallery-item {
    width: 100%;                
    aspect-ratio: 16 / 9;       
}

.post-gallery.gallery-v1.gallery-single-image .post-gallery-item__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* CATEGORY SLIDER */
.category-slider__wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
/* 
@media (min-width: 768px) {
    .category-slider__wrap {
        max-width: calc(100% - 140px);
    }
} */

@media (min-width: 1200px) {
    .category-slider__wrap {
        /*         max-width: 900px; */
        margin-left: 70px;
    }

    .category-slider__wrap_no-arrows {
        margin-left: 0;
    }
}

.category-slider__body {
    padding: 40px 0;
}

.category-slider__title {
    margin-bottom: 48px;
    font-size: 24px;
    font-weight: 600;
}

/* .category-slider__slider.swiper {
    margin: 0 -32px;
} */

.category-slider__slide.swiper-slide {
    width: auto;
}

.category-slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.category-slider-item__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: background-color 0.2s ease 0s;
}

.category-slider-item:hover .category-slider-item__icon-wrap {
    background-color: var(--color-orange);
}

.category-slider-item__icon {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.category-slider-item__name {
    font-size: 18px;
    font-weight: 500;
}

.category-slider-nav .category-slider-nav__left.swiper-button-prev,
.category-slider-nav .category-slider-nav__right.swiper-button-next {
    background-color: var(--color-primary);
    pointer-events: all;
}

.category-slider-nav.custom-swiper-nav .custom-swiper-nav__arrow-icon {
    fill: #fff;
}

.category-slider__controls {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: calc(100% + 140px);
    height: 58px;
    display: flex;
    align-items: center;
    align-self: flex-end;
    justify-content: space-between;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .category-slider__body {
        padding: 94px 0;
    }

    .category-slider__slider.swiper {
        margin: 0;
    }

    .category-slider-item__icon-wrap {
        width: 150px;
        height: 150px;
    }
}

/* SINGLE POST */
.single-post__top-section {
    padding: 40px 0;
    background-color: var(--color-light-beige);
}

.single-post__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}

.single-post__header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-width: 267px;
}

.single-post__add-to-fav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 25px;
    color: var(--color-primary);
    transition: all 0.2s ease 0s;
}

.single-post__add-to-fav {
    font-weight: 700;
}

.single-post__add-to-fav:hover {
    color: var(--color-secondary);
}

.single-post__header-heart-icon {
    flex-shrink: 0;
    width: 20px;
    height: 17px;
    fill: var(--color-secondary);
}

.single-post__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 40px 0;
}

/* .single-post__content {
    line-height: 30px;
} */

.single-post__content h1 {
    font-size: 2em;
}

.single-post__content h2 {
    font-size: 1.5em;
}

.single-post__content h3 {
    font-size: 1.17em;
}

.single-post__content h4 {
    font-size: 1em;
}

.single-post__content h5 {
    font-size: 0.83em;
}

.single-post__content h6 {
    font-size: 0.67em;
}

.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
    margin-block-start: 1em;
    margin-block-end: 0.5em;
}

.single-post__content a {
    color: var(--color-secondary);
}

.single-post__content a:not(.button):hover {
    text-decoration: underline;
}

.single-post__content {
    font-size: var(--font-size-text);
    line-height: 1.2;
}

.single-post__content-intro {
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
}

.single-post__content p {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.single-post__content ul,
.single-post__content ol {
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 2em;
    font-size: var(--font-size-text);
    line-height: var(--line-height-normal);
}

.single-post__content ul li {
    margin-bottom: 0.5em;
    list-style-type: disc;
}

.single-post__sidebar-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-post__sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
}

.single-post__sidebar a {
    color: #fff;
}

.single-post__sidebar-item:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.single-post__sidebar-item:not(:first-child) {
    padding-top: 30px;
}

.single-post__contact-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-post__contact-block:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
}

.single-post__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    transition: color 0.2s ease 0s;
}

.single-post__contact-item:hover {
    color: var(--color-secondary) !important;
}

.single-post__contact-icon {
    flex-shrink: 0;
    fill: var(--color-primary);
    transition: fill 0.2s ease 0s;
}

.single-post__contact-icon_orange {
    fill: var(--color-orange);
}

.single-post__phone-icon {
    width: 18px;
    height: 18px;
}

.single-post__mail-icon {
    width: 21px;
    height: 16px;
}

.single-post__planet-icon {
    width: 19px;
    height: 19px;
}

.single-post__address-icon {
    width: 15px;
    height: 20px;
}

.single-post__opening-hours {
    font-size: 24px;
    font-weight: 700;
}

.single-post__facebook-icon {
    width: 24px;
    height: 24px;
}

.single-post__instagram-icon {
    width: 20px;
    height: 20px;
}

.single-post__x-icon {
    width: 19px;
    height: 22px;
}

.single-post__tripadvisor-icon {
    width: 24px;
    height: 16px;
}

.single-post__whatsup-icon {
    width: 22px;
    height: 22px;
}

.single-post__share-mail-icon {
    width: 24px;
    height: 18px;
}

.single-post__address {
    line-height: 25px;
}

.single-post__arrow-icon {
    width: 20px;
    height: 20px;
}

.single-post__share-block {
    padding: 20px 0;
}

.single-post__share-title {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 25px;
}

.single-post__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-light-beige);
    transition: background-color 0.2s ease 0s;
}

.single-post__share-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.single-post__contact-socials {
    display: flex;
    gap: 10px;
}

.single-post__contact-social-link,
.single-post__contact-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #fff;
    transition: background-color 0.2s ease 0s;
}

.single-post__contact-social-link:hover .single-post__contact-icon {
    fill: var(--color-secondary);
}

.single-post__contact-btn {
    width: 100%;
    min-width: 292px;
    gap: 20px;
}

.single-post__contact-btn.button:hover {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.single-post__facilities {
    padding: 40px 0;
    background-color: var(--color-light-beige);
}

.single-post__facilities-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
}

.single-post__facility-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

.single-post__facility-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-primary);
}

.single-post__facility-icon-wrap {
    display: flex;
}

.single-post__facility-icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    fill: var(--color-primary);
}

@media (any-hover: hover) {
    .single-post__share-link:hover {
        background-color: var(--color-primary);
    }

    .single-post__share-link:hover .single-post__contact-icon {
        fill: #fff;
    }
}

@media (min-width: 768px) {
    .single-post__top-section {
        padding: 76px 0 68px;
    }

    .single-post__header {
        flex-direction: row;
        align-items: flex-end;
        gap: 40px;
        padding: 20px 0 40px;
    }

    .single-post__facility-list {
        column-gap: 40px;
        row-gap: 20px;
    }

    .single-post__grid {
        padding: 100px 0 40px;
        gap: 40px;
    }

    .single-post__share-block {
        padding: 30px 0;
    }

    .single-post__sidebar {
        padding: 65px 40px;
        border-radius: 40px;
    }

    .single-post__contact-block:not(:last-child) {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .single-post__contact-btn {
        width: auto;
    }

    .single-event-post .single-post__contact-btn {
        min-width: 343px;
    }

    .single-post__facilities {
        padding: 50px 0;
    }
}

@media (min-width: 992px) {
    .single-post__grid {
        flex-direction: row;
        gap: 64px;
    }

    .single-post__body {
        flex: 1 1 65%;
        min-width: 300px;
    }

    .single-post__sidebar-wrap {
        flex: 1 1 30%;
        min-width: 496px;
    }
}

@media (min-width: 1280px) {
    .single-post__grid {
        gap: 74px;
    }
}

/* EVENTS SINGLE */
#tribe-events-pg-template {
    margin: 0;
    max-width: initial;
    padding: 0;
}

.tribe-events-event-image {
    max-height: 600px;
    margin-bottom: 32px;
    border-radius: 40px;
    overflow: hidden;
}

.tribe-events-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-event-post__date {
    margin-bottom: 32px;
    line-height: 40px;
    color: var(--color-primary);
    font-size: 28px;
}

.single-event-post__title {
    margin-bottom: 20px;
    line-height: 63px;
}

.single-post__body .breadcrumbs {
    padding: 0;
    margin-bottom: 20px;
}

.single-event-post .single-post__facility-list {
    margin-bottom: 32px;
}

.single-event-post .single-post__facility-icon svg path {
    fill: var(--color-orange);
}

.single-event-post .single-post__facility-icon-wrap svg path{
	fill: var(--color-orange);
}

.single-post__sidebar .tribe-events-single-section-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.single-event-post .tribe-events-meta-group-details dt {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.single-event-post .tribe-events-meta-group-details dd:not(:last-child) {
    margin-bottom: 20px;
}

.single-event-post .tribe-events-meta-group-details abbr[title] {
    text-decoration: none;
    font-size: 16px;
}

.single-event-post .button.single-event-post__add-to-calendar,
.single-event-post .button.single-event-post__book-now {
    font-weight: 700;
    color: var(--color-primary);
}
.single-event-post .button.single-event-post__add-to-calendar:hover,
.single-event-post .button.single-event-post__book-now:hover {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.single-event-post .button.single-event-post__add-to-calendar .button__icon {
    width: 19px;
    height: 22px;
}

.single-event-post .button.single-event-post__add-to-calendar:hover .button__icon {
    transform: none;
}

.single-event-post .single-post__contact-block {
    gap: 20px;
}

.tribe-events-meta-group-details__list {
    display: flex;
    flex-direction: column;
}

.single-event-post .event-address {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
}

.single-event-post .event-listing-link {
    transition: all 0.2s ease 0s;
}

.single-event-post .event-listing-link:hover {
    color: var(--color-secondary);
}

.single-post__contact-block.single-post__contact-block-actions {
    gap: 30px;
    align-items: flex-start;
}

.single-event-post__add-to-fav,
.single-event-post__book-now {
    width: 100%;
}

.single-event-post__add-to-fav .button__icon {
    width: 24px;
    height: 21px;
    fill: var(--color-secondary);
}

.single-event-post__categories {
    margin-top: 40px;
}

.event-categories__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 18px;
}

.event-categories__item {
    padding: 0 24px;
    border-radius: 60px;
    line-height: 30px;
    background-color: var(--color-light-beige);
    transition: all 0.2s ease 0s;
}

.event-categories__item:hover {
    font-weight: 500;
    color: #fff;
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
    .single-event-post .single-post__sidebar {
        padding: 32px 42px 48px;
    }

    .single-event-post__add-to-fav,
    .single-event-post__book-now {
        width: auto;
        min-width: 343px;
    }
}

@media (min-width: 992px) {
    .single-post__contact-block.single-post__contact-block-actions {
        align-items: stretch;
    }
}

@media (min-width: 1280px) {
    .single-post__event .single-post__grid {
        gap: 100px;
    }
}

.accordion-section {
    padding: 48px 0;
}

.accordion-section__content {
    position: relative;
    align-self: stretch;
}

.accordion-section__content .editor-content {
    position: relative;
    z-index: 1;
}

.accordion-section__content,
.accordion-section__spoilers {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
}

.accordion-section__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin: 0 auto;
}

.accordion-section__content.editor-content img {
    width: 100%;
}

.accordion-section__content-bg-wrap {
    position: absolute;
    left: 0;
    bottom: -90px;
    z-index: 0;
    width: 478px;
    height: auto;
    pointer-events: none;
    overflow: hidden;
}

.accordion-section__content-bg-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
    object-fit: contain;
}

@media (min-width: 768px) {
    .accordion-section {
        padding: 90px 0;
    }
}

@media (min-width: 992px) {
    .accordion-section__body {
        flex-direction: row;
        gap: 100px;
    }

    .accordion-section__body_content-right {
        flex-direction: row-reverse;
    }

    .accordion-section__content {
        flex: 0 1 600px;
        max-width: 600px;
        min-width: 300px;
    }

    .accordion-section__spoilers {
        flex: 0 1 700px;
        max-width: 700px;
        min-width: 300px;
    }

    .accordion-section__content.editor-content img {
        width: auto;
    }
}

/* REGIONS PAGE*/
.regions-hero-info {
    padding-bottom: 40px;
}

.regions-hero-info .hero-info__img {
    margin-top: 0;
}

.regions {
    padding: 40px 0;
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
    .regions-hero-info {
        padding-bottom: 94px;
    }

    .regions {
        padding: 94px 0;
    }
}

.regions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.region-card {
    flex: 0 1 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .region-card {
        height: auto;
        min-height: 750px;
        flex: 0 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

@media (min-width: 992px) {
    .region-card {
        flex: 0 1 calc(50% - 32px);
        max-width: calc(50% - 32px);
    }

    .regions__list {
        gap: 64px;
    }
}

.region-card__img-wrap {
    position: relative;
    height: 330px;
}

.region-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.region-card__map {
    position: absolute;
    max-width: 200px;
    height: auto;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

.region-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 32px 24px;
    background-color: #fff;
    color: #000;
}

@media (min-width: 992px) {
    .region-card__content {
        padding: 40px 32px 72px;
    }
}

.region-card__title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
	color: var(--color-primary);
}

@media (min-width: 768px) {
    .region-card__title {
        margin-bottom: 40px;
    }
}

.region-card__list-title {
    font-weight: 500;
}

.region-card__list-title {
    margin-bottom: 32px;
}

.region-card__list {
    margin-bottom: 32px;
}

.region-card__list-item {
    padding: 8px 0;
}

.region-card__excerpt {
    margin-bottom: 24px;
}

.region-card__btn {
    margin-top: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .region-card__btn {
        width: auto;
    }
}

.region-card_map .region-card__img-wrap {
    height: auto;
}

.region-card_map .region-card__img {
    bottom: 0;
    height: auto;
    z-index: 1;
}

.region-card_map .region-card__content {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
}

/* SINGLE REGION */
.single-kildare_regions .page-hero.small-hero .breadcrumbs {
    margin-top: -50px;
    padding: 0 32px;
}

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

.single-kildare_regions .small-hero .breadcrumbs a {
    color: var(--color-primary);
}

.single-kildare_regions .small-hero .breadcrumbs__separator-icon {
    fill: var(--color-primary);
}

.single-region__intro {
    font-weight: 700;
}

.single-kildare_regions .single-post__view-all-text {
    font-size: 16px;
}

.single-region .spotlight__subtitle {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .single-region .spotlight {
        padding: 94px 0;
    }
}

@media (min-width: 992px) {
    .single-region .spotlight__subtitle {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .single-kildare_regions .hero-info__content {
        flex: 1 0 40%;
    }

    .single-kildare_regions .hero-info__img-wrap {
        min-width: 525px;
    }
}

/* PROMO CARDS BLOCK*/

.promo-cards {
    padding: 60px 0;
}

.promo-cards__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.promo-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    min-width: 0;
    align-items: center;
    text-align: center;
    padding: 16px;
    justify-content: center;
    gap: 16px;
    border-radius: 20px;
}

.promo-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 190px;
    flex-shrink: 0;
    height: auto;
    overflow: hidden;
}

.promo-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 190px;
    object-fit: contain;
}

.promo-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.promo-card__desc {
    font-size: 18px;
    line-height: 1.2;
}

.promo-card__title {
    margin-bottom: 8px;
}

.promo-card__btn {
    align-self: flex-start;
    width: 100%;
}

@media (min-width: 768px) {
    .promo-card {
        flex-direction: row;
        padding: 56px 44px;
        gap: 32px;
        text-align: left;
    }

    .promo-cards__body {
        gap: 40px;
    }

    .promo-card__btn {
        width: auto;
    }

    .promo-card__content {
        gap: 24px;
    }

    .promo-card__image {
        max-width: 190px;
    }
}

@media (min-width: 1200px) {
    .promo-card {
        align-items: flex-start;
    }

    .promo-card__title.title {
        font-size: 38px;
        line-height: 1.2;
    }

    .promo-cards__body {
        flex-direction: row;
    }
}

/* QUOTE BLOCK */
.quote-block {
    padding: 60px 0 16px;
}

.quote-block__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quote-block__quote {
    position: relative;
}

.quote-block__quote-text {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--color-secondary);
}

.quote-block__quote-text p {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.quote-block__author {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.quote-block__quote-icon {
    position: absolute;
    top: -40px;
    left: 12px;
    width: 90px;
    height: 80px;
    z-index: 1;
}

.quote-block__quote-svg {
    width: 100%;
    height: 100%;
    fill: var(--color-secondary);
}

@media (min-width: 768px) {
    .quote-block__body {
        flex-direction: row;
        align-items: center;
    }

    .quote-block__quote {
        padding: 12px;
    }

    .quote-block__quote-icon {
        left: 22px;
    }
}

@media (min-width: 992px) {
    .quote-block__body {
        gap: 110px;
    }

    .quote-block {
        padding: 140px 0 16px;
    }

    .quote-block__quote-text {
        margin-bottom: 40px;
    }

    .quote-block__quote-icon {
        top: -62px;
        width: 135px;
        height: 120px;
    }
}

.info-block.info-block--text-quote-img {
    background-color: #fff;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .info-block.info-block--text-quote-img {
        padding: 100px 0;
    }
}

.single-post-quote {
    position: relative;
}

.single-post-quote__text {
    position: relative;
    z-index: 2;
    font-style: italic;
}

.single-post-quote__author {
    font-weight: 600;
    line-height: 1.5;
}

.single-post-quote__icon {
    position: absolute;
    top: -20px;
    left: 0;
    width: 50px;
    height: 45px;
    z-index: 1;
}

.single-post-quote__svg {
    width: 100%;
    height: 100%;
    fill: var(--color-secondary);
}

.single-post__categories {
    display: flex;
    gap: 4px;
}

.single-post__categories-title {
    font-weight: 500;
}

.single-post__categories-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
}

.single-post__categories-list .single-post__category:not(:first-child) {
    margin-left: 5px;
}

/* IMG WITH TEXT CARDS GRID BLOCK*/
.img-text-grid {
    padding: 48px 0;
}

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

.img-text-grid__title {
    margin-bottom: 50px;
}

.img-text-grid__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.img-text-grid__card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 16px;
}

.img-text-grid__card-image {
    width: 100%;
}

.img-text-grid__card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.img-text-grid__card-content {
    display: flex;
    flex-direction: column;
}

.img-text-grid__card-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .img-text-grid {
        padding: 64px 0;
    }

    .img-text-grid__card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .img-text-grid__card-image {
        flex: 0 0 120px;
        max-width: 120px;
    }

    .img-text-grid__card-image img {
        height: 90px;
    }
}

@media (min-width: 992px) {
    .img-text-grid {
        padding: 80px 0;
    }

    .img-text-grid__cards {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .img-text-grid__card {
        gap: 24px;
    }

    .img-text-grid__card-image {
        flex: 0 0 170px;
        max-width: 170px;
        min-width: 120px;
    }

    .img-text-grid__card-image img {
        height: 140px;
    }
}

/* PAGE 404 */
.not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
}

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

.not-found__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.not-found__desc {
    font-size: 16px;
    color: #888;
    margin-bottom: 32px;
}

.not-found__links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.not-found__link {
    display: block;
    padding: 10px;
    color: #000;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}

.not-found__link:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .not-found__container {
        max-width: 540px;
        margin: 0 auto;
    }

    .not-found__title {
        font-size: 38px;
    }

    .not-found__desc {
        font-size: 20px;
    }

    .not-found {
        padding: 140px 0 60px;
    }
}

@media (min-width: 992px) {
    .not-found {
        padding: 224px 0 120px;
    }
}
