/* UltraCache CSS Bundle Source: https://voulismeni.gr/wp-content/plugins/voulismeni-core/blocks/content-grid/style.css?ver=0.2.36 */
/* Voulismeni Cards: shared frontend styles for all sources. */
.vlm-featured-routes {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.vlm-featured-routes__grid {
    --vlm-columns: var(--vlm-columns-desktop, 2);
    --vlm-card-gap: 1rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vlm-card-gap);
    width: min(1120px, calc(100% - 2.5rem));
    margin-right: auto;
    margin-left: auto;
}

.vlm-route-card {
    display: flex;
    overflow: hidden;
    flex:
        0 1
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    flex-direction: column;
    min-width: 0;
    max-width:
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    border: 1px solid rgba(24, 27, 24, 0.16);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.55);
    color: #181b18;
}

.content-section--dark .vlm-route-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.vlm-route-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(24, 27, 24, 0.06);
}

.vlm-route-card__image,
.vlm-route-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlm-route-card__placeholder {
    background:
        linear-gradient(
            135deg,
            rgba(105, 115, 75, 0.58),
            rgba(180, 122, 56, 0.32)
        );
}

.vlm-route-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.vlm-route-card__difficulty {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.65;
}

.vlm-route-card__title {
    margin: 0.65rem 0 0;
    font-size: 1.45rem;
    line-height: 1.1;
}

.vlm-route-card__title a,
.vlm-route-card__link {
    color: inherit;
    text-decoration: none;
}

.vlm-route-card__excerpt {
    margin: 0.85rem 0 0;
    opacity: 0.74;
}

.vlm-route-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 0;
}

.vlm-route-card__meta div {
    min-width: 0;
}

.vlm-route-card__meta dt {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.58;
}

.vlm-route-card__meta dd {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
}

.vlm-route-card__link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vlm-featured-routes__empty {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .vlm-featured-routes__grid {
        --vlm-columns: var(--vlm-columns-tablet, 2);

        width: min(760px, calc(100% - 2rem));
    }
}

@media (max-width: 600px) {
    .vlm-featured-routes__grid {
        --vlm-columns: var(--vlm-columns-mobile, 1);

        width: calc(100% - 1.5rem);
    }

    .vlm-route-card__meta {
        grid-template-columns: 1fr;
    }
}

.vlm-block-pagination {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.vlm-block-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vlm-block-pagination a,
.vlm-block-pagination span {
    align-items: center;
    border: 1px solid rgba(27, 43, 38, 0.18);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    min-height: 2.5rem;
    min-width: 2.5rem;
    padding: 0.45rem 0.85rem;
    text-decoration: none;
}

.vlm-block-pagination a:hover,
.vlm-block-pagination a:focus {
    border-color: currentColor;
}

.vlm-block-pagination .current {
    background: #1b2b26;
    border-color: #1b2b26;
    color: #ffffff;
}

.content-section--dark .vlm-block-pagination .current {
    background: #ffffff;
    border-color: #ffffff;
    color: #1b2b26;
}

[data-vlm-ajax-block="1"].is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.vlm-route-card--view-all {
    border-style: dashed;
    min-height: 100%;
}

.vlm-route-card--view-all .vlm-view-all-card {
    align-items: center;
    color: inherit;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    min-height: 18rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
}

.vlm-view-all-card__icon {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    font-size: 2rem;
    height: 4.25rem;
    justify-content: center;
    line-height: 1;
    width: 4.25rem;
}

.vlm-view-all-card__label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* 0.2.18: Archive mode is a true wrapping grid. Slider mode keeps the homepage/widget paging behavior. */
.vlm-content-grid--archive .vlm-featured-routes__grid,
.vlm-routes-archive .vlm-featured-routes__grid {
    display: grid;
    grid-template-columns: repeat(var(--vlm-columns), minmax(0, 1fr));
    align-items: stretch;
}

.vlm-content-grid--archive .vlm-route-card,
.vlm-routes-archive .vlm-route-card {
    flex: none;
    max-width: none;
    width: auto;
}

/* Places source styles. */
.vlm-featured-places {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.vlm-featured-places__grid {
    --vlm-columns: var(--vlm-columns-desktop, 3);
    --vlm-card-gap: 1rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vlm-card-gap);
    width: min(1120px, calc(100% - 2.5rem));
    margin-right: auto;
    margin-left: auto;
}

.vlm-place-card {
    display: flex;
    overflow: hidden;
    flex:
        0 1
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    flex-direction: column;
    min-width: 0;
    max-width:
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    border: 1px solid rgba(24, 27, 24, 0.16);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.55);
    color: #181b18;
}

.content-section--dark .vlm-place-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.vlm-place-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(24, 27, 24, 0.06);
}

.vlm-place-card__image,
.vlm-place-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlm-place-card__placeholder {
    background:
        linear-gradient(
            135deg,
            rgba(105, 115, 75, 0.58),
            rgba(180, 122, 56, 0.32)
        );
}

.vlm-place-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.vlm-place-card__location,
.vlm-place-card__access {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.65;
}

.vlm-place-card__title {
    margin: 0.65rem 0 0;
    font-size: 1.45rem;
    line-height: 1.1;
}

.vlm-place-card__title a,
.vlm-place-card__link {
    color: inherit;
    text-decoration: none;
}

.vlm-place-card__excerpt {
    margin: 0.85rem 0 0;
    opacity: 0.74;
}

.vlm-place-card__access {
    margin-top: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
}

.vlm-place-card__link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vlm-featured-places__empty {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .vlm-featured-places__grid {
        --vlm-columns: var(--vlm-columns-tablet, 2);

        width: min(760px, calc(100% - 2rem));
    }
}

@media (max-width: 600px) {
    .vlm-featured-places__grid {
        --vlm-columns: var(--vlm-columns-mobile, 1);

        width: calc(100% - 1.5rem);
    }
}

.vlm-block-pagination {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.vlm-block-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vlm-block-pagination a,
.vlm-block-pagination span {
    align-items: center;
    border: 1px solid rgba(27, 43, 38, 0.18);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    min-height: 2.5rem;
    min-width: 2.5rem;
    padding: 0.45rem 0.85rem;
    text-decoration: none;
}

.vlm-block-pagination a:hover,
.vlm-block-pagination a:focus {
    border-color: currentColor;
}

.vlm-block-pagination .current {
    background: #1b2b26;
    border-color: #1b2b26;
    color: #ffffff;
}

.content-section--dark .vlm-block-pagination .current {
    background: #ffffff;
    border-color: #ffffff;
    color: #1b2b26;
}

[data-vlm-ajax-block="1"].is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.vlm-place-card--view-all {
    border-style: dashed;
    min-height: 100%;
}

.vlm-place-card--view-all .vlm-view-all-card {
    align-items: center;
    color: inherit;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    min-height: 18rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
}

.vlm-view-all-card__icon {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    font-size: 2rem;
    height: 4.25rem;
    justify-content: center;
    line-height: 1;
    width: 4.25rem;
}

.vlm-view-all-card__label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* 0.2.18: Archive mode is a true wrapping grid. Slider mode keeps the homepage/widget paging behavior. */
.vlm-content-grid--archive .vlm-featured-places__grid,
.vlm-places-archive .vlm-featured-places__grid {
    display: grid;
    grid-template-columns: repeat(var(--vlm-columns), minmax(0, 1fr));
    align-items: stretch;
}

.vlm-content-grid--archive .vlm-place-card,
.vlm-places-archive .vlm-place-card {
    flex: none;
    max-width: none;
    width: auto;
}

/* Events source styles. */
.vlm-events-block {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.vlm-events-block.alignwide,
.vlm-events-block.alignfull {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    transform: none;
}

.vlm-events-block__grid {
    --vlm-columns: var(--vlm-columns-desktop, 3);
    --vlm-card-gap: 1rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vlm-card-gap);
    width: min(1120px, calc(100% - 2.5rem));
    margin-right: auto;
    margin-left: auto;
}

.vlm-event-card {
    display: flex;
    overflow: hidden;
    flex:
        0 1
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    flex-direction: column;
    min-width: 0;
    max-width:
        calc(
            (
                100%
                - (
                    (var(--vlm-columns) - 1)
                    * var(--vlm-card-gap)
                )
            )
            / var(--vlm-columns)
        );
    border: 1px solid rgba(24, 27, 24, 0.16);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.55);
    color: #181b18;
}

.content-section--dark .vlm-event-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.vlm-event-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: rgba(24, 27, 24, 0.06);
}

.content-section--dark .vlm-event-card__media {
    background: rgba(255, 255, 255, 0.07);
}

.vlm-event-card__image,
.vlm-event-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlm-event-card__placeholder {
    background:
        linear-gradient(
            135deg,
            rgba(105, 115, 75, 0.62),
            rgba(180, 122, 56, 0.34)
        );
}

.vlm-event-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.vlm-event-card__date {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.72;
}

.vlm-event-card__title {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.1;
}

.vlm-event-card__title a,
.vlm-event-card__link {
    color: inherit;
    text-decoration: none;
}

.vlm-event-card__venue,
.vlm-event-card__excerpt {
    margin: 0.75rem 0 0;
    opacity: 0.74;
}

.vlm-event-card__link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vlm-events-block__empty {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .vlm-events-block__grid {
        --vlm-columns: var(--vlm-columns-tablet, 2);

        width: min(760px, calc(100% - 2rem));
    }
}

@media (max-width: 600px) {
    .vlm-events-block__grid {
        --vlm-columns: var(--vlm-columns-mobile, 1);

        width: calc(100% - 1.5rem);
    }
}

.vlm-block-pagination {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.vlm-block-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vlm-block-pagination a,
.vlm-block-pagination span {
    align-items: center;
    border: 1px solid rgba(27, 43, 38, 0.18);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    min-height: 2.5rem;
    min-width: 2.5rem;
    padding: 0.45rem 0.85rem;
    text-decoration: none;
}

.vlm-block-pagination a:hover,
.vlm-block-pagination a:focus {
    border-color: currentColor;
}

.vlm-block-pagination .current {
    background: #1b2b26;
    border-color: #1b2b26;
    color: #ffffff;
}

.content-section--dark .vlm-block-pagination .current {
    background: #ffffff;
    border-color: #ffffff;
    color: #1b2b26;
}

[data-vlm-ajax-block="1"].is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.vlm-event-card--view-all {
    border-style: dashed;
    min-height: 100%;
}

.vlm-event-card--view-all .vlm-view-all-card {
    align-items: center;
    color: inherit;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    min-height: 18rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
}

.vlm-view-all-card__icon {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    font-size: 2rem;
    height: 4.25rem;
    justify-content: center;
    line-height: 1;
    width: 4.25rem;
}

.vlm-view-all-card__label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* 0.2.18: Archive mode is a true wrapping grid. Slider mode keeps the homepage/widget paging behavior. */
.vlm-content-grid--archive .vlm-events-block__grid,
.vlm-events-archive .vlm-events-block__grid {
    display: grid;
    grid-template-columns: repeat(var(--vlm-columns), minmax(0, 1fr));
    align-items: stretch;
}

.vlm-content-grid--archive .vlm-event-card,
.vlm-events-archive .vlm-event-card {
    flex: none;
    max-width: none;
    width: auto;
}

.vlm-content-grid-filters {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 auto clamp(24px, 3vw, 38px);
	max-width: min(100%, 1100px);
	position: relative;
	z-index: 5;
}

.vlm-content-grid-filter-dropdown {
	min-width: min(100%, 220px);
	position: relative;
}

.vlm-content-grid-filter-dropdown__summary {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(24, 27, 24, 0.18);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(20, 35, 29, 0.06);
	cursor: pointer;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	list-style: none;
	min-height: 46px;
	padding: 9px 16px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.vlm-content-grid-filter-dropdown__summary::-webkit-details-marker {
	display: none;
}

.vlm-content-grid-filter-dropdown__summary::after {
	content: "⌄";
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	margin-left: auto;
	transition: transform 160ms ease;
}

.vlm-content-grid-filter-dropdown[open] .vlm-content-grid-filter-dropdown__summary {
	border-color: rgba(24, 27, 24, 0.42);
	box-shadow: 0 16px 34px rgba(20, 35, 29, 0.12);
}

.vlm-content-grid-filter-dropdown[open] .vlm-content-grid-filter-dropdown__summary::after {
	transform: rotate(180deg);
}

.vlm-content-grid-filter-dropdown__label {
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.vlm-content-grid-filter-dropdown__value {
	color: rgba(24, 27, 24, 0.62);
	font-size: 0.86rem;
	font-weight: 700;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vlm-content-grid-filter-dropdown__panel {
	background: #fff;
	border: 1px solid rgba(24, 27, 24, 0.14);
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(20, 35, 29, 0.16);
	display: grid;
	gap: 4px;
	left: 0;
	margin-top: 8px;
	min-width: 260px;
	padding: 8px;
	position: absolute;
	top: 100%;
	z-index: 20;
}

.vlm-content-grid-filter {
	align-items: center;
	border-radius: 12px;
	color: inherit;
	display: flex;
	gap: 10px;
	font-size: 0.92rem;
	font-weight: 750;
	line-height: 1.2;
	padding: 9px 10px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.vlm-content-grid-filter:hover,
.vlm-content-grid-filter:focus-visible {
	background: rgba(29, 38, 31, 0.07);
	outline: none;
}

.vlm-content-grid-filter.is-active {
	background: rgba(29, 38, 31, 0.1);
	color: #1d261f;
}

.vlm-content-grid-filter__box {
	align-items: center;
	border: 1px solid rgba(24, 27, 24, 0.28);
	border-radius: 6px;
	display: inline-flex;
	flex: 0 0 20px;
	font-size: 0.82rem;
	font-weight: 900;
	height: 20px;
	justify-content: center;
	line-height: 1;
	width: 20px;
}

.vlm-content-grid-filter.is-active .vlm-content-grid-filter__box {
	background: #1d261f;
	border-color: #1d261f;
	color: #fff;
}

.has-dark-background .vlm-content-grid-filter-dropdown__summary,
.is-style-dark .vlm-content-grid-filter-dropdown__summary,
.vlm-section--dark .vlm-content-grid-filter-dropdown__summary,
.has-dark-background .vlm-content-grid-filter-dropdown__panel,
.is-style-dark .vlm-content-grid-filter-dropdown__panel,
.vlm-section--dark .vlm-content-grid-filter-dropdown__panel {
	background: #fff;
	color: #1d261f;
}

.has-dark-background .vlm-content-grid-filter-dropdown__value,
.is-style-dark .vlm-content-grid-filter-dropdown__value,
.vlm-section--dark .vlm-content-grid-filter-dropdown__value {
	color: rgba(29, 38, 31, 0.62);
}

@media (max-width: 700px) {
	.vlm-content-grid-filters {
		display: grid;
		grid-template-columns: 1fr;
	}

	.vlm-content-grid-filter-dropdown,
	.vlm-content-grid-filter-dropdown__panel {
		min-width: 100%;
		width: 100%;
	}

	.vlm-content-grid-filter-dropdown__panel {
		position: static;
	}
}

/* Local guide listings */
.vlm-content-grid--listings .vlm-listings-directory__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.vlm-listing-item {
	background: #fff;
	border: 1px solid rgba(36, 54, 43, 0.14);
	border-radius: 22px;
	box-shadow: 0 14px 36px rgba(20, 35, 29, 0.07);
	overflow: hidden;
}

.vlm-listing-item__body {
	padding: clamp(18px, 3vw, 26px);
}

.vlm-listing-item__title {
	font-size: clamp(1.22rem, 2.2vw, 1.55rem);
	line-height: 1.2;
	margin: 0 0 12px;
}

.vlm-listing-item__title a {
	color: inherit;
	text-decoration: none;
}

.vlm-listing-item__title a:hover,
.vlm-listing-item__title a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.vlm-listing-item__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

.vlm-listing-item__chip {
	border: 1px solid rgba(54, 82, 66, 0.18);
	border-radius: 999px;
	background: rgba(247, 243, 232, 0.95);
	color: #365242;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	padding: 8px 11px;
}

.vlm-listing-item__excerpt {
	color: rgba(28, 43, 35, 0.82);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 14px;
}

.vlm-listing-item__meta {
	color: rgba(28, 43, 35, 0.72);
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.5;
	margin: 0 0 16px;
}

.vlm-listing-item__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.vlm-listing-item__action {
	align-items: center;
	background: #365242;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	justify-content: center;
	min-height: 40px;
	padding: 10px 16px;
	text-decoration: none;
}

.vlm-listing-item__action:hover,
.vlm-listing-item__action:focus-visible {
	background: #23362b;
	color: #fff;
}

.has-dark-background .vlm-listing-item,
.is-style-dark .vlm-listing-item,
.vlm-section--dark .vlm-listing-item {
	background: rgba(255, 255, 255, 0.96);
	color: #1f3127;
}


/* 0.2.28: Compact polished filter toolbar. Logic unchanged. */
.vlm-content-grid-filters {
    align-items: center;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(24, 27, 24, 0.1);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(20, 35, 29, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: clamp(26px, 3.4vw, 44px);
    padding: 0.65rem;
    width: min(1120px, calc(100% - 2.5rem));
}

.vlm-content-grid-filter-dropdown {
    flex: 1 1 220px;
    max-width: 320px;
    min-width: 0;
}

.vlm-content-grid-filter-dropdown__summary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(24, 27, 24, 0.12);
    box-shadow: none;
    min-height: 44px;
    padding: 0.72rem 0.95rem;
}

.vlm-content-grid-filter-dropdown__summary:hover,
.vlm-content-grid-filter-dropdown__summary:focus-visible {
    border-color: rgba(24, 27, 24, 0.32);
    outline: none;
}

.vlm-content-grid-filter-dropdown[open] .vlm-content-grid-filter-dropdown__summary {
    border-color: rgba(24, 27, 24, 0.38);
    box-shadow: 0 10px 24px rgba(20, 35, 29, 0.08);
}

.vlm-content-grid-filter-dropdown__label {
    color: rgba(24, 27, 24, 0.78);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}

.vlm-content-grid-filter-dropdown__value {
    color: rgba(24, 27, 24, 0.54);
    font-size: 0.8rem;
    font-weight: 750;
}

.vlm-content-grid-filter-dropdown__panel {
    border-color: rgba(24, 27, 24, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 54px rgba(20, 35, 29, 0.18);
    min-width: 280px;
    padding: 0.55rem;
}

.vlm-content-grid-filter {
    border-radius: 14px;
    padding: 0.65rem 0.7rem;
}

.vlm-content-grid-filter.is-active {
    background: rgba(105, 115, 75, 0.14);
    color: #1d261f;
}

.vlm-content-grid-filter__box {
    background: rgba(255, 255, 255, 0.75);
}

.vlm-content-grid-filter.is-active .vlm-content-grid-filter__box {
    background: #69734b;
    border-color: #69734b;
    color: #fff;
}

.content-section--dark .vlm-content-grid-filters,
.has-dark-background .vlm-content-grid-filters,
.is-style-dark .vlm-content-grid-filters,
.vlm-section--dark .vlm-content-grid-filters {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

@media (max-width: 700px) {
    .vlm-content-grid-filters {
        border-radius: 22px;
        grid-template-columns: 1fr;
        padding: 0.55rem;
        width: calc(100% - 1.5rem);
    }

    .vlm-content-grid-filter-dropdown {
        max-width: none;
        width: 100%;
    }
}

/* 0.2.29: Dropdown filter panels show up to about seven rows, then scroll. */
.vlm-content-grid-filter-dropdown__panel {
    max-height: min(340px, calc(100vh - 220px));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(105, 115, 75, 0.62) rgba(24, 27, 24, 0.08);
    scrollbar-width: thin;
}

.vlm-content-grid-filter-dropdown__panel::-webkit-scrollbar {
    width: 9px;
}

.vlm-content-grid-filter-dropdown__panel::-webkit-scrollbar-track {
    background: rgba(24, 27, 24, 0.06);
    border-radius: 999px;
    margin: 10px 0;
}

.vlm-content-grid-filter-dropdown__panel::-webkit-scrollbar-thumb {
    background: rgba(105, 115, 75, 0.62);
    border: 2px solid #fff;
    border-radius: 999px;
}

.vlm-content-grid-filter-dropdown__panel::-webkit-scrollbar-thumb:hover {
    background: rgba(105, 115, 75, 0.86);
}

@media (max-width: 700px) {
    .vlm-content-grid-filter-dropdown__panel {
        max-height: 320px;
    }
}

/* 0.2.30: subtle 300ms hover motion for cards, listings and block controls. */
.vlm-route-card,
.vlm-place-card,
.vlm-event-card,
.vlm-listing-item,
.vlm-block-pagination a,
.vlm-content-grid-filter-dropdown__summary,
.vlm-content-grid-filter,
.vlm-listing-item__action,
.vlm-view-all-card,
.vlm-route-card__link,
.vlm-place-card__link,
.vlm-event-card__link {
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        color 300ms ease,
        opacity 300ms ease,
        transform 300ms ease;
}

.vlm-route-card,
.vlm-place-card,
.vlm-event-card,
.vlm-listing-item {
    will-change: transform;
}

.vlm-route-card:hover,
.vlm-route-card:focus-within,
.vlm-place-card:hover,
.vlm-place-card:focus-within,
.vlm-event-card:hover,
.vlm-event-card:focus-within {
    border-color: rgba(105, 115, 75, 0.34);
    box-shadow: 0 20px 46px rgba(20, 35, 29, 0.11);
    transform: translateY(-3px);
}

.content-section--dark .vlm-route-card:hover,
.content-section--dark .vlm-route-card:focus-within,
.content-section--dark .vlm-place-card:hover,
.content-section--dark .vlm-place-card:focus-within,
.content-section--dark .vlm-event-card:hover,
.content-section--dark .vlm-event-card:focus-within {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.vlm-route-card:hover .vlm-route-card__link,
.vlm-route-card:focus-within .vlm-route-card__link,
.vlm-place-card:hover .vlm-place-card__link,
.vlm-place-card:focus-within .vlm-place-card__link,
.vlm-event-card:hover .vlm-event-card__link,
.vlm-event-card:focus-within .vlm-event-card__link {
    color: #69734b;
}

.content-section--dark .vlm-route-card:hover .vlm-route-card__link,
.content-section--dark .vlm-route-card:focus-within .vlm-route-card__link,
.content-section--dark .vlm-place-card:hover .vlm-place-card__link,
.content-section--dark .vlm-place-card:focus-within .vlm-place-card__link,
.content-section--dark .vlm-event-card:hover .vlm-event-card__link,
.content-section--dark .vlm-event-card:focus-within .vlm-event-card__link {
    color: #d3dbaf;
}

.vlm-route-card--view-all:hover .vlm-view-all-card,
.vlm-route-card--view-all:focus-within .vlm-view-all-card,
.vlm-place-card--view-all:hover .vlm-view-all-card,
.vlm-place-card--view-all:focus-within .vlm-view-all-card,
.vlm-event-card--view-all:hover .vlm-view-all-card,
.vlm-event-card--view-all:focus-within .vlm-view-all-card {
    transform: translateY(-2px);
}

.vlm-view-all-card__icon {
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        color 300ms ease,
        transform 300ms ease;
}

.vlm-route-card--view-all:hover .vlm-view-all-card__icon,
.vlm-route-card--view-all:focus-within .vlm-view-all-card__icon,
.vlm-place-card--view-all:hover .vlm-view-all-card__icon,
.vlm-place-card--view-all:focus-within .vlm-view-all-card__icon,
.vlm-event-card--view-all:hover .vlm-view-all-card__icon,
.vlm-event-card--view-all:focus-within .vlm-view-all-card__icon {
    background: rgba(105, 115, 75, 0.14);
    border-color: #69734b;
    transform: scale(1.04);
}

.vlm-block-pagination a:hover,
.vlm-block-pagination a:focus-visible {
    background: rgba(24, 27, 24, 0.055);
    border-color: rgba(24, 27, 24, 0.34);
    box-shadow: 0 10px 26px rgba(20, 35, 29, 0.09);
    outline: none;
    transform: translateY(-1px);
}

.vlm-content-grid-filter-dropdown__summary:hover,
.vlm-content-grid-filter-dropdown__summary:focus-visible {
    background: rgba(244, 240, 231, 0.96);
    box-shadow: 0 12px 28px rgba(20, 35, 29, 0.09);
    transform: translateY(-1px);
}

.vlm-content-grid-filter:hover,
.vlm-content-grid-filter:focus-visible {
    transform: translateX(2px);
}

.vlm-listing-item {
    background: rgba(255, 255, 255, 0.88);
}

.vlm-listing-item:hover,
.vlm-listing-item:focus-within {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(105, 115, 75, 0.3);
    box-shadow: 0 22px 56px rgba(20, 35, 29, 0.12);
    transform: translateY(-2px);
}

.vlm-listing-item__action {
    background: #e6e3d8;
    color: #1f3127;
    box-shadow: none;
}

.vlm-listing-item__action:hover,
.vlm-listing-item__action:focus-visible {
    background: #d9d5c8;
    color: #1f3127;
    box-shadow: 0 12px 28px rgba(20, 35, 29, 0.13);
    outline: none;
    transform: translateY(-2px);
}

.has-dark-background .vlm-listing-item:hover,
.has-dark-background .vlm-listing-item:focus-within,
.is-style-dark .vlm-listing-item:hover,
.is-style-dark .vlm-listing-item:focus-within,
.vlm-section--dark .vlm-listing-item:hover,
.vlm-section--dark .vlm-listing-item:focus-within {
    background: #ffffff;
    border-color: rgba(211, 219, 175, 0.42);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

@media (prefers-reduced-motion: reduce) {
    .vlm-route-card,
    .vlm-place-card,
    .vlm-event-card,
    .vlm-listing-item,
    .vlm-block-pagination a,
    .vlm-content-grid-filter-dropdown__summary,
    .vlm-content-grid-filter,
    .vlm-listing-item__action,
    .vlm-view-all-card,
    .vlm-view-all-card__icon {
        transition-duration: 0.01ms !important;
    }

    .vlm-route-card:hover,
    .vlm-route-card:focus-within,
    .vlm-place-card:hover,
    .vlm-place-card:focus-within,
    .vlm-event-card:hover,
    .vlm-event-card:focus-within,
    .vlm-listing-item:hover,
    .vlm-listing-item:focus-within,
    .vlm-listing-item__action:hover,
    .vlm-listing-item__action:focus-visible {
        transform: none;
    }
}


/* 0.2.31: prevent card grids from exceeding the mobile viewport. */
.wp-block-voulismeni-content-grid,
.vlm-content-grid,
.vlm-featured-routes,
.vlm-featured-places,
.vlm-events-block.alignfull {
    max-width: 100%;
    box-sizing: border-box;
}

.wp-block-voulismeni-content-grid,
.vlm-content-grid {
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    .wp-block-voulismeni-content-grid,
    .vlm-content-grid {
        overflow-x: hidden;
    }
}

@media (max-width: 700px) {
    .vlm-featured-routes,
    .vlm-featured-places,
    .vlm-events-block.alignfull {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .vlm-featured-routes__grid,
    .vlm-featured-places__grid,
    .vlm-events-block__grid {
        width: 100%;
        max-width: 100%;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
        box-sizing: border-box;
    }

    .vlm-route-card,
    .vlm-place-card,
    .vlm-event-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .vlm-content-grid--archive .vlm-featured-routes__grid,
    .vlm-content-grid--archive .vlm-featured-places__grid,
    .vlm-content-grid--archive .vlm-events-block__grid {
        grid-template-columns: 1fr;
    }
}


/* 0.2.32: homepage slider hover consistency and stricter mobile overflow guard. */
.vlm-content-grid--slider .vlm-route-card,
.vlm-content-grid--slider .vlm-place-card,
.vlm-content-grid--slider .vlm-event-card {
    box-shadow: 0 0 0 rgba(20, 35, 29, 0);
    transform: translateY(0);
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        color 300ms ease,
        transform 300ms ease;
}

.vlm-content-grid--slider .vlm-route-card:hover,
.vlm-content-grid--slider .vlm-route-card:focus-within,
.vlm-content-grid--slider .vlm-place-card:hover,
.vlm-content-grid--slider .vlm-place-card:focus-within,
.vlm-content-grid--slider .vlm-event-card:hover,
.vlm-content-grid--slider .vlm-event-card:focus-within {
    border-color: rgba(105, 115, 75, 0.34);
    box-shadow: 0 20px 46px rgba(20, 35, 29, 0.12);
    transform: translateY(-3px);
}

.has-background .vlm-content-grid--slider .vlm-route-card:hover,
.has-background .vlm-content-grid--slider .vlm-route-card:focus-within,
.has-background .vlm-content-grid--slider .vlm-place-card:hover,
.has-background .vlm-content-grid--slider .vlm-place-card:focus-within,
.has-background .vlm-content-grid--slider .vlm-event-card:hover,
.has-background .vlm-content-grid--slider .vlm-event-card:focus-within {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

@media (max-width: 700px) {
    .wp-block-voulismeni-content-grid,
    .vlm-content-grid,
    .vlm-featured-routes,
    .vlm-featured-places,
    .vlm-events-block {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box;
        overflow-x: clip;
    }

    .vlm-featured-routes__grid,
    .vlm-featured-places__grid,
    .vlm-events-block__grid {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        box-sizing: border-box;
    }

    .vlm-route-card,
    .vlm-place-card,
    .vlm-event-card,
    .vlm-view-all-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex-basis: 100% !important;
        box-sizing: border-box;
    }
}

@supports not (overflow-x: clip) {
    @media (max-width: 700px) {
        .wp-block-voulismeni-content-grid,
        .vlm-content-grid,
        .vlm-featured-routes,
        .vlm-featured-places,
        .vlm-events-block {
            overflow-x: hidden;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .vlm-content-grid--slider .vlm-route-card:hover,
    .vlm-content-grid--slider .vlm-route-card:focus-within,
    .vlm-content-grid--slider .vlm-place-card:hover,
    .vlm-content-grid--slider .vlm-place-card:focus-within,
    .vlm-content-grid--slider .vlm-event-card:hover,
    .vlm-content-grid--slider .vlm-event-card:focus-within {
        transform: none;
    }
}


/* UltraCache CSS Bundle Source: https://voulismeni.gr/wp-content/themes/voulismeni/assets/css/main.css?ver=1783563788 */
:root {
    --vlm-charcoal: #181b18;
    --vlm-charcoal-soft: #252a25;
    --vlm-ivory: #f4f0e7;
    --vlm-olive: #69734b;
    --vlm-ochre: #b47a38;
    --vlm-white: #ffffff;
    --vlm-border: rgba(24, 27, 24, 0.16);
    --vlm-header-height: 5.5rem;
    --vlm-content-width: 1240px;
    --vlm-radius: 1.25rem;
    --vlm-transition: 240ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--vlm-ivory);
    color: var(--vlm-charcoal);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 0;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--vlm-white);
    color: var(--vlm-charcoal);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--vlm-header-height);
    padding: 1rem clamp(1rem, 4vw, 3rem);
    color: var(--vlm-white);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.site-header > * {
    pointer-events: auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    color: var(--vlm-white);
    text-decoration: none;
}

.site-brand__mark {
    display: inline-flex;
    flex: 0 0 auto;
    width: 3.25rem;
    height: 3.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 1rem;
    background: #fdfaf4;
    box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.22);
}

.site-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-brand__text {
    display: inline-flex;
    flex-direction: column;
    gap: 0.18rem;
    line-height: 1;
}

.site-brand__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.9vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.015em;
    text-shadow: 0 0.2rem 0.9rem rgba(0, 0, 0, 0.42);
}

.site-brand__location {
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.15em;
    opacity: 0.86;
    text-shadow: 0 0.2rem 0.9rem rgba(0, 0, 0, 0.42);
    text-transform: uppercase;
}

.site-brand--custom .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-brand--custom img {
    display: block;
    width: auto;
    max-width: min(52vw, 18rem);
    max-height: 4rem;
}

.menu-toggle {
    display: grid;
    gap: 0.34rem;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: var(--vlm-white);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background var(--vlm-transition), transform var(--vlm-transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.48);
    transform: scale(1.04);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transition: opacity var(--vlm-transition);
}

.menu-backdrop.is-visible {
    opacity: 1;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    width: min(92vw, 460px);
    height: 100dvh;
    padding: 1.5rem;
    background: var(--vlm-charcoal);
    color: var(--vlm-white);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 320ms;
}

.offcanvas-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}

.offcanvas-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.menu-close {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: transparent;
    color: var(--vlm-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.offcanvas-menu__nav {
    overflow-y: auto;
    padding: 2rem 0;
}

.site-menu {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.site-menu a {
    display: block;
    padding: 1rem 0;
    font-size: clamp(1.45rem, 5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.12;
    text-decoration: none;
    transition: padding-left var(--vlm-transition), color var(--vlm-transition);
}

.site-menu a:hover,
.site-menu a:focus-visible {
    padding-left: 0.5rem;
    color: #d3dbaf;
}

.offcanvas-menu__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    opacity: 0.65;
}

.site-main {
    min-height: 70vh;
    padding-top: var(--vlm-header-height);
}

.home .site-main {
    padding-top: 0;
}

/* Homepage hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(180, 122, 56, 0.58),
            transparent 33%
        ),
        radial-gradient(
            circle at 18% 74%,
            rgba(105, 115, 75, 0.88),
            transparent 38%
        ),
        linear-gradient(135deg, #303a2d, #151815 72%);
    color: var(--vlm-white);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 940px;
}

.hero__eyebrow,
.section-heading__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(4rem, 15vw, 11rem);
    font-weight: 760;
    line-height: 0.84;
    letter-spacing: -0.065em;
}

.hero__intro {
    max-width: 650px;
    margin: 1.5rem 0 0;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    opacity: 0.86;
}

.content-section {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 5rem);
}

.content-section--dark {
    background: var(--vlm-charcoal);
    color: var(--vlm-white);
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 5.5rem);
    font-weight: 720;
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.section-heading > p:last-child {
    max-width: 670px;
    margin: 1.5rem auto 0;
    font-size: 1.08rem;
    opacity: 0.76;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: var(--vlm-content-width);
    margin: 0 auto;
}

.feature-card {
    min-height: 280px;
    padding: 1.5rem;
    border: 1px solid var(--vlm-border);
    border-radius: var(--vlm-radius);
    background: rgba(255, 255, 255, 0.34);
}

.feature-card__number {
    display: block;
    margin-bottom: 4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.56;
}

.feature-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    line-height: 1.1;
}

.feature-card p {
    margin: 0;
    opacity: 0.72;
}

.page-shell {
    width: min(calc(100% - 2.5rem), 920px);
    margin: 0 auto;
    padding: 5rem 0;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    margin: 0;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.page-header__meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.62;
}

.entry-content {
    font-size: 1.08rem;
}

.entry-content > * {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.entry-content > .alignwide {
    max-width: 1120px;
}

.entry-content > .alignfull {
    max-width: none;
}

.post-list {
    display: grid;
    gap: 1rem;
}

.post-card {
    padding: 1.5rem;
    border: 1px solid var(--vlm-border);
    border-radius: var(--vlm-radius);
}

.post-card h2 {
    margin-top: 0;
}

.post-card h2 a {
    text-decoration: none;
}

.site-footer {
    padding: 3rem clamp(1.25rem, 6vw, 5rem);
    background: #101210;
    color: var(--vlm-white);
}

.site-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--vlm-content-width);
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    opacity: 0.72;
}

.site-footer__copyright {
    text-align: right;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    justify-content: flex-end;
    margin-top: 0.45rem;
    font-size: 0.9rem;
}

.site-footer__legal a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    border-bottom-color: currentColor;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    :root {
        --vlm-header-height: 4.75rem;
    }

    .site-header {
        padding: 0.75rem 1rem;
    }

    .site-brand {
        gap: 0.58rem;
    }

    .site-brand__mark {
        width: 2.85rem;
        height: 2.85rem;
        border-radius: 0.85rem;
    }

    .site-brand__location {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .menu-toggle {
        width: 3rem;
        height: 3rem;
    }

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

    .feature-card {
        min-height: 220px;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__copyright {
        text-align: left;
    }

    .site-footer__legal {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Gutenberg-managed homepage blocks */
.home .site-main > .wp-block-cover:first-child {
    margin-top: 0;
}

.wp-block-cover.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding:
        calc(var(--vlm-header-height) + 2rem)
        clamp(1.25rem, 6vw, 5rem)
        8rem;
}

/*
 * The Cover inner container must not become the positioning context.
 * This keeps the actions anchored to the actual bottom of the full-height hero.
 */
.wp-block-cover.hero > .wp-block-cover__inner-container {
    position: static;
    width: 100%;
}

.hero__content.wp-block-group {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin-right: auto;
    margin-left: 0;
}

/* Hero actions: bottom center, one row */
.hero__actions.wp-block-buttons {
    position: absolute;
    right: auto;
    bottom: max(2rem, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 3;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: max-content;
    max-width: calc(100% - 2rem);
    margin: 0;
    transform: translateX(-50%);
}

.hero__actions .wp-block-button {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

/*
 * Only the actual link is styled as a pill.
 * The Gutenberg wrapper stays unstyled, preventing the previous double border
 * and the separate wrapper hover effect.
 */
.hero__actions .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.8rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    color: var(--vlm-white);
    font-size: 0.8rem;
    font-weight: 720;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.08em;
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition:
        background var(--vlm-transition),
        border-color var(--vlm-transition),
        color var(--vlm-transition),
        transform var(--vlm-transition);
}

.hero__actions .wp-block-button.hero-button--primary .wp-block-button__link {
    border-color: var(--vlm-white);
    background: var(--vlm-white);
    color: var(--vlm-charcoal);
}

.hero__actions .wp-block-button__link:hover,
.hero__actions .wp-block-button__link:focus-visible,
.hero__actions .wp-block-button.hero-button--primary .wp-block-button__link:hover,
.hero__actions .wp-block-button.hero-button--primary .wp-block-button__link:focus-visible {
    border-color: var(--vlm-olive);
    background: var(--vlm-olive);
    color: var(--vlm-white);
    transform: translateY(-2px);
}

.hero__actions .wp-block-button__link:focus-visible {
    outline: 2px solid var(--vlm-white);
    outline-offset: 3px;
}

.content-section.wp-block-group {
    margin-top: 0;
    margin-bottom: 0;
}

.feature-grid.wp-block-columns {
    align-items: stretch;
}

.feature-grid .feature-card.wp-block-column {
    min-width: 0;
}

.site-menu .sub-menu {
    margin: 0;
    padding: 0 0 0.75rem 1rem;
    list-style: none;
}

.site-menu .sub-menu li {
    border-bottom: 0;
}

.site-menu .sub-menu a {
    padding: 0.55rem 0;
    font-size: 1rem;
    opacity: 0.74;
}

@media (max-width: 600px) {
    .wp-block-cover.hero {
        padding-right: 1.25rem;
        padding-bottom: 6.5rem;
        padding-left: 1.25rem;
    }

    .hero__actions.wp-block-buttons {
        bottom: max(1rem, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.4rem;
        width: calc(100% - 1.5rem);
        max-width: none;
    }

    .hero__actions .wp-block-button {
        min-width: 0;
        width: 100%;
    }

    .hero__actions .wp-block-button__link {
        width: 100%;
        min-height: 2.8rem;
        padding: 0.65rem 0.35rem;
        font-size: 0.62rem;
        letter-spacing: 0.035em;
    }
}


/* Full-width Gutenberg-managed archive-style pages. */
.events-page .entry-content,
.places-page .entry-content,
.routes-page .entry-content {
    font-size: inherit;
}

.events-page .entry-content > *,
.places-page .entry-content > *,
.routes-page .entry-content > * {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.events-page .content-section,
.places-page .content-section,
.routes-page .content-section {
    padding-top: clamp(5rem, 10vw, 9rem);
}


/* 0.2.5: Typography polish for headings and offcanvas menu. */
.hero h1 {
    font-size: clamp(3.1rem, 10vw, 7.2rem);
    line-height: 0.9;
    letter-spacing: -0.052em;
}

.section-heading h2 {
    font-size: clamp(2rem, 4.8vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5.2vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.042em;
}

.entry-content h1,
.entry-content .wp-block-heading:is(h1) {
    font-size: clamp(2.15rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.entry-content h2,
.entry-content .wp-block-heading:is(h2) {
    font-size: clamp(1.75rem, 3.8vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.032em;
}

.offcanvas-menu {
    width: min(92vw, 420px);
    padding: clamp(1.1rem, 3vw, 1.45rem);
}

.offcanvas-menu__nav {
    padding: 1.35rem 0;
}

.site-menu a {
    padding: 0.78rem 0;
    font-size: clamp(1.14rem, 3.6vw, 1.55rem);
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -0.018em;
}

.site-menu .sub-menu {
    padding: 0 0 0.65rem 0.85rem;
}

.site-menu .sub-menu a {
    padding: 0.42rem 0;
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    font-weight: 560;
    line-height: 1.3;
    letter-spacing: 0;
    opacity: 0.76;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(3rem, 16vw, 5.25rem);
        line-height: 0.92;
    }

    .section-heading h2,
    .page-header h1,
    .entry-content h1,
    .entry-content .wp-block-heading:is(h1) {
        letter-spacing: -0.035em;
    }

    .site-menu a {
        font-size: 1.18rem;
        padding: 0.7rem 0;
    }
}

/* 0.2.6: Offcanvas menu scrollbar polish. */
.offcanvas-menu__nav {
    scrollbar-color: rgba(211, 219, 175, 0.58) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

.offcanvas-menu__nav::-webkit-scrollbar {
    width: 10px;
}

.offcanvas-menu__nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    margin: 0.35rem 0;
}

.offcanvas-menu__nav::-webkit-scrollbar-thumb {
    background: rgba(211, 219, 175, 0.58);
    border: 2px solid var(--vlm-charcoal);
    border-radius: 999px;
}

.offcanvas-menu__nav::-webkit-scrollbar-thumb:hover {
    background: rgba(211, 219, 175, 0.82);
}

.offcanvas-menu {
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
}

/* 0.2.7: site-wide 300ms hover polish for theme buttons and cards. */
:root {
    --vlm-transition: 300ms ease;
}

button,
input[type="button"],
input[type="submit"],
.wp-block-button__link,
.feature-card,
.post-card,
.site-menu a,
.menu-toggle,
.menu-close,
.entry-content a {
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        color 300ms ease,
        opacity 300ms ease,
        transform 300ms ease;
}

.entry-content .wp-block-button__link:not(.has-background),
.wp-block-button:not(.hero-button--primary) .wp-block-button__link:not(.has-background) {
    background: #e6e3d8;
    border: 1px solid rgba(24, 27, 24, 0.14);
    color: var(--vlm-charcoal);
    box-shadow: none;
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button__link:focus-visible,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus-visible {
    border-color: rgba(24, 27, 24, 0.24);
    box-shadow: 0 12px 28px rgba(20, 35, 29, 0.13);
    outline: none;
    transform: translateY(-2px);
}

.entry-content .wp-block-button__link:not(.has-background):hover,
.entry-content .wp-block-button__link:not(.has-background):focus-visible,
.wp-block-button:not(.hero-button--primary) .wp-block-button__link:not(.has-background):hover,
.wp-block-button:not(.hero-button--primary) .wp-block-button__link:not(.has-background):focus-visible {
    background: #d9d5c8;
    color: var(--vlm-charcoal);
}

.feature-card,
.post-card {
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.feature-card:hover,
.feature-card:focus-within,
.post-card:hover,
.post-card:focus-within {
    border-color: rgba(105, 115, 75, 0.3);
    box-shadow: 0 18px 46px rgba(20, 35, 29, 0.1);
    transform: translateY(-3px);
}

.menu-close:hover,
.menu-close:focus-visible {
    background: rgba(211, 219, 175, 0.12);
    border-color: rgba(211, 219, 175, 0.55);
    color: #d3dbaf;
    outline: none;
    transform: rotate(90deg) scale(1.03);
}

.hero__actions .wp-block-button__link {
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        color 300ms ease,
        transform 300ms ease;
}

.hero__actions .wp-block-button__link:hover,
.hero__actions .wp-block-button__link:focus-visible,
.hero__actions .wp-block-button.hero-button--primary .wp-block-button__link:hover,
.hero__actions .wp-block-button.hero-button--primary .wp-block-button__link:focus-visible {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    button,
    input[type="button"],
    input[type="submit"],
    .wp-block-button__link,
    .feature-card,
    .post-card,
    .site-menu a,
    .menu-toggle,
    .menu-close,
    .entry-content a {
        transition-duration: 0.01ms !important;
    }

    .entry-content .wp-block-button__link:hover,
    .entry-content .wp-block-button__link:focus-visible,
    .feature-card:hover,
    .feature-card:focus-within,
    .post-card:hover,
    .post-card:focus-within,
    .menu-close:hover,
    .menu-close:focus-visible {
        transform: none;
    }
}


/* 0.2.9: full-card in-page links and mobile overflow guard. */
.feature-grid--links {
    width: min(calc(100% - 2.5rem), var(--vlm-content-width));
}

.feature-card.feature-card--link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.feature-card.feature-card--link:hover,
.feature-card.feature-card--link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.feature-card.feature-card--link:focus-visible {
    outline: 2px solid var(--vlm-olive);
    outline-offset: 4px;
}

.feature-card__title {
    display: block;
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 720;
    line-height: 1.1;
}

.feature-card__text {
    display: block;
    margin: 0;
    opacity: 0.72;
}

.site-main,
.entry-content {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    .site-main,
    .entry-content {
        overflow-x: hidden;
    }
}

@media (max-width: 600px) {
    .feature-grid,
    .feature-grid--links {
        width: min(100%, calc(100vw - 2rem));
        max-width: 100%;
        box-sizing: border-box;
        margin-right: auto;
        margin-left: auto;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}


/* 0.2.10: centered page headers, homepage feature-card hover and stronger mobile overflow guard. */
.page-header h1 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.feature-grid--links .feature-card.feature-card--link {
    border-color: rgba(24, 27, 24, 0.16);
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 0 rgba(20, 35, 29, 0);
    transform: translateY(0);
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        color 300ms ease,
        transform 300ms ease;
    will-change: transform;
}

.feature-grid--links .feature-card.feature-card--link:hover,
.feature-grid--links .feature-card.feature-card--link:focus-visible {
    border-color: rgba(105, 115, 75, 0.32);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 46px rgba(20, 35, 29, 0.12);
    color: inherit;
    outline: none;
    transform: translateY(-3px);
}

.feature-grid--links .feature-card.feature-card--link:focus-visible {
    outline: 2px solid rgba(105, 115, 75, 0.9);
    outline-offset: 4px;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

.entry-content > .alignfull,
.site-main > .alignfull,
.content-section.alignfull,
.wp-block-group.alignfull {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .content-section.wp-block-group,
    .wp-block-group.alignfull.content-section {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .content-section > .wp-block-group,
    .content-section > .wp-block-columns,
    .content-section > .wp-block-buttons,
    .content-section > .wp-block-voulismeni-content-grid {
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-grid,
    .feature-grid--links {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        margin-right: auto;
        margin-left: auto;
    }

    .feature-grid--links .feature-card.feature-card--link {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-grid--links .feature-card.feature-card--link:hover,
    .feature-grid--links .feature-card.feature-card--link:focus-visible {
        transform: none;
    }
}


/* UltraCache CSS Bundle Source: https://voulismeni.gr/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher-v2.css?ver=3.2.3 */
/* Floating switcher */
.trp-floating-switcher {
    display: flex;
    flex-direction: column-reverse;
    position: fixed;
    z-index: 99999;
    overflow: hidden;
    padding: var(--switcher-padding, 10px);
    border: var(--border, none);
    border-radius: var(--border-radius, 8px);
    background: var(--bg, #fff);
    width: var(--switcher-width, auto);
    top: var(--top, unset);
    right: var(--right, unset);
    bottom: var(--bottom, unset);
    left: var(--left, unset);
    box-shadow: 0 10px 20px 0 #0000000D;
}

.trp-floating-switcher .trp-switcher-dropdown-list {
    flex-direction: column-reverse;
}

.trp-switcher-position-top.trp-floating-switcher {
    flex-direction: column;
    top: var(--wp-admin--admin-bar--height, 0);
}

.trp-floating-switcher.trp-switcher-position-top:not(.trp-ls-inline) .trp-language-switcher-inner,
.trp-floating-switcher.trp-switcher-position-top .trp-switcher-dropdown-list {
    flex-direction: column;
}

/* Inline variant */
nav.trp-ls-inline .trp-language-switcher-inner {
    flex-direction: row;
}

.trp-ls-inline.trp-opposite-language .trp-language-item {
    width: 100%;
}

/* Powered by */
#trp-floater-powered-by {
    color: var(--text, #b3b3b3);
    font-size: 12px;
    text-align: center;
    padding: 0 5px;
    opacity: 70%;
}

#trp-floater-powered-by a {
    color: var(--text, #b3b3b3);
}

.trp-switcher-position-bottom #trp-floater-powered-by {
    border-top: 1px solid var(--border-color, #747474);
    padding-top: 5px;
    margin-top: 5px;
}

.trp-switcher-position-top #trp-floater-powered-by {
    border-bottom: 1px solid var(--border-color, #747474);
    padding-bottom: 5px;
    margin-bottom: 5px;
}

/* Shortcode switcher */
.trp-shortcode-switcher__wrapper {
    position: relative;
    border: none;
}

.trp-shortcode-switcher {
    position: static;
    display: inline-block;
    overflow: hidden;
    padding: 10px 0;
    border: var(--border, none);
    border-radius: var(--border-radius, 5px);
    background: var(--bg, #fff);
    width: auto;
    box-shadow: none;
}

/* Hide the anchor that holds space in the document for the actual switcher. Only if opposite mode is not enabled. We show only the anchor in opposite mode */
.trp-shortcode-anchor:not(.trp-opposite-button) {
    visibility: hidden;
}

.trp-shortcode-switcher.trp-open-on-click {
    cursor: pointer;
}

.trp-shortcode-overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}
/* Opposite mode enabled */
.trp-current-language-item__wrapper:not(.trp-hide-arrow) {
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: space-between;
}

/* Shared by both */
.trp-language-switcher-inner {
    display: flex;
}

.trp-floating-switcher .trp-language-switcher-inner {
    flex-direction: column-reverse;
}

.trp-shortcode-switcher .trp-language-switcher-inner {
    flex-direction: column;
}

.trp-switcher-dropdown-list {
    display: flex;
    overflow-y: hidden; /* closed state */
    transition: max-height 0.2s ease-in-out;
    max-height: 0;
    transition-duration: var(--transition-duration);
}

.trp-shortcode-switcher .trp-switcher-dropdown-list {
    flex-direction: column;
}

/* OPEN STATE — scroll the LIST (floating & shortcode) */
.trp-ls-dropdown.is-open .trp-switcher-dropdown-list,
.trp-ls-dropdown[aria-expanded="true"] .trp-switcher-dropdown-list,
.trp-shortcode-switcher.trp-open-on-hover.is-open .trp-switcher-dropdown-list,
.trp-shortcode-switcher[aria-expanded="true"] .trp-switcher-dropdown-list {
    overflow-y: auto;
    max-height: min(350px, 70vh);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--text) transparent;
}

.trp-ls-dropdown.is-transitioning .trp-switcher-dropdown-list,
.trp-shortcode-switcher.is-transitioning .trp-switcher-dropdown-list {
    overflow-y: hidden !important;
}

.trp-shortcode-arrow {
    pointer-events: none;
}

.trp-shortcode-switcher.is-open .trp-shortcode-arrow {
    transform: rotate(180deg);
}

/* Links inside switcher */
.trp-language-item:focus { outline: none; }
.trp-language-item:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: -2px;
}

/* Items */
.trp-language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    text-decoration: none;
    min-height: 19px;
    box-sizing: content-box;
}

.trp-language-item:hover {
    background: var(--bg-hover, #f3f3f3);
}

.trp-language-item:hover .trp-language-item-name {
    color: var(--text-hover, #000);
}

.trp-language-item__current {
    pointer-events: none;
    cursor: default;
}

.trp-language-item-name {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text, #000);
    font-size: var(--font-size, 14px);
    line-height: 1.2;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-weight: 400;
}

.trp-flag-image {
    border-radius: var(--flag-radius, 0) !important;
    aspect-ratio: var(--aspect-ratio, 4/3) !important;
    width: var(--flag-size, 18px) !important;
    display: inline-block !important;
    height: auto !important;
}

.trp-menu-ls-label .trp-flag-image {
    margin: -2px 3px;
}

.trp-custom-flag {
    object-fit: cover;
}

/* WebKit scrollbar styling on the ACTUAL scrollable element */
.trp-switcher-dropdown-list::-webkit-scrollbar { width: 6px; }
.trp-switcher-dropdown-list::-webkit-scrollbar-track { background: transparent; }
.trp-switcher-dropdown-list::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 4px;
}

.trp-switcher-dropdown-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-hover);
}

/* Menu item */
.trp-flag-rounded {
    border-radius: 9999px !important;
    aspect-ratio: 1 / 1 !important;
}

.trp-ls-name {
    padding-left: 5px;
}

@media (prefers-reduced-motion: reduce) {
    .trp-switcher-dropdown-list {
        transition: none !important; /* no max-height animation */
    }
}

/* Legacy Language Switcher shortcode css rules
 * Useful for displaying the Automatic Language Detection language switcher
*/


.trp_ald_ls_container img.trp-flag-image{
    padding-top: 0 !important;
}

.trp_ald_ls_container .trp-language-switcher{
    position: relative;
    display: inline-block;
    padding: 0;
    border: 0;

    box-sizing: border-box;
}


.trp_ald_ls_container .trp-language-switcher > div {
    box-sizing: border-box;

    padding-right: 20px;
    padding-bottom: 3px;
    padding-left: 13px;

    border: 1px solid #c1c1c1;
    border-radius: 3px;

    background-color: #fff;
}

.trp_ald_ls_container .trp-language-switcher > div > a {
    display: block;
    padding: 2px;
    border-radius: 3px;
    color: rgb(7, 105, 173);
}

.trp_ald_ls_container .trp-language-switcher > div > a:hover {
    background: #f1f1f1;
}
.trp_ald_ls_container .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language {
    cursor: default;
}
.trp_ald_ls_container .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language:hover {
    background: none;
}

.trp_ald_ls_container .trp-language-switcher > div > a > img{
    display: inline;
    margin: 0 3px;
    width: 18px;
    height: 12px;
    border-radius: 0;
}

.trp_ald_ls_container .trp-language-switcher .trp-ls-shortcode-current-language{
    display: inline-block;
}
.trp_ald_ls_container .trp-language-switcher:focus .trp-ls-shortcode-current-language,
.trp_ald_ls_container .trp-language-switcher:hover .trp-ls-shortcode-current-language{
    visibility: hidden;
}

.trp_ald_ls_container .trp-language-switcher .trp-ls-shortcode-language{
    display: inline-block;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;

    max-height: 250px;
    overflow-y: auto;
    left: 0;
    top: 0;
    min-height: auto;
}

.trp_ald_ls_container .trp-language-switcher:focus .trp-ls-shortcode-language,
.trp_ald_ls_container .trp-language-switcher:hover .trp-ls-shortcode-language{
    visibility: visible;
    max-height: 250px;
    height: auto;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block !important;
    min-height: auto;
}

#trp_ald_x_button{
    z-index: 0 !important;
}
