/* UltraCache CSS Bundle Source: https://voulismeni.gr/wp-content/themes/voulismeni/assets/css/main.css?ver=1783556281 */
: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;
}

@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;
    }
}

@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;
}
