/*
Theme Name: Mylopotamos Online
Theme URI: https://example.com/mylopotamos-online
Author: OpenAI
Author URI: https://openai.com
Description: A clean custom starter theme for WordPress.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: mylopotamos-online
*/

/* Global base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Geologica', sans-serif;
  background: #FFFFFF;
  color: #373A5F;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    min-height: 153px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1000;
}

.site-header__inner {
    width: 100%;
    max-width: 100%;
    min-height: 153px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 32px 64px;
    gap: 40px;
}

.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo img {
    display: block;
    width: 271px;
    height: 89px;
    object-fit: contain;
}

.site-header__nav {
    flex: 1 1 auto;
    min-width: 0;
}

.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.site-header__menu li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.site-header__menu a {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #373A5F;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__cta {
    flex-shrink: 0;
    margin: 0;
}

.site-header__button {
    width: 310px;
    min-width: 310px;
    height: 68px;
    background-color: #222B62;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none !important;
    box-sizing: border-box;
    padding: 22px 45px;
    white-space: nowrap;
}

.site-header__button:hover,
.site-header__button:focus,
.site-header__button:active,
.site-header__button:visited {
    color: #FFFFFF;
    text-decoration: none !important;
}
.site-header__mobile-cta-item {
    display: none;
}

@media (max-width: 1100px) {
    .site-header__cta {
        display: none;
    }

    .site-header__mobile-cta-item {
        display: block;
        margin-top: 18px;
    }

    .site-header__mobile-button {
        width: 100%;
        max-width: 310px;
        min-height: 56px;
        padding: 16px 22px;
        border-radius: 10px;
        background: #222B62;
        color: #FFFFFF !important;
        font-family: 'Geologica', sans-serif;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header__mobile-button:hover {
        background: #1A214F;
        color: #FFFFFF !important;
    }
}

@media (max-width: 480px) {
    .site-header__mobile-button {
        max-width: 100%;
        min-height: 54px;
        font-size: 16px;
    }
}

/* =========================
   LANGUAGE SWITCHER
========================= */

.site-header__language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: 28px;
    margin-right: 28px;
    flex: 0 0 auto;
}

.site-header__language-link {
    min-width: 41.33px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #222B62;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #222B62;
    text-decoration: none;
    box-sizing: border-box;
}

.site-header__language-link:hover,
.site-header__language-link:focus {
    color: #FFFFFF;
    background: #222B62;
    text-decoration: none;
}

.site-header__language-link.is-active {
    color: #FFFFFF;
    background: #222B62;
}

/* =========================
   BURGER BUTTON
========================= */

.site-header__burger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    width: 34px;
    height: 24px;
    position: relative;
    z-index: 1002;
    flex: 0 0 34px;
}

.site-header__burger span {
    display: block;
    width: 34px;
    height: 3px;
    background-color: #222B62;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: 0.3s ease;
}

.site-header__burger span:nth-child(1) {
    top: 0;
}

.site-header__burger span:nth-child(2) {
    top: 10px;
}

.site-header__burger span:nth-child(3) {
    top: 20px;
}

.site-header__burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.site-header__burger.active span:nth-child(2) {
    opacity: 0;
}

.site-header__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

/* Fix overlap from around 1734px to 1551px */
@media (max-width: 1760px) {
    .site-header__inner {
        padding: 30px 48px;
        gap: 28px;
    }

    .site-header__logo img {
        width: 245px;
        height: auto;
    }

    .site-header__menu {
        gap: 28px;
    }

    .site-header__menu a {
        font-size: 18px;
    }

    .site-header__language-switcher {
        margin-left: 12px;
        margin-right: 12px;
        gap: 6px;
    }

    .site-header__language-link {
        min-width: 38px;
        height: 32px;
        font-size: 13px;
        padding: 0 8px;
    }

    .site-header__button {
        width: 280px;
        min-width: 280px;
        height: 62px;
        font-size: 18px;
        padding: 18px 28px;
    }
}

@media (max-width: 1550px) {
    .site-header__inner {
        padding: 28px 36px;
        gap: 18px;
    }

    .site-header__logo img {
        width: 220px;
        height: auto;
    }

    .site-header__menu {
        gap: 18px;
    }

    .site-header__menu a {
        font-size: 17px;
    }

    .site-header__language-switcher {
        margin-left: 8px;
        margin-right: 8px;
        gap: 6px;
    }

    .site-header__language-link {
        min-width: 34px;
        height: 32px;
        font-size: 13px;
        padding: 0 8px;
    }

    .site-header__button {
        width: 245px;
        min-width: 245px;
        height: 58px;
        font-size: 17px;
        padding: 16px 22px;
    }
}

@media (max-width: 1390px) {
    .site-header__inner {
        padding: 26px 30px;
        gap: 16px;
    }

    .site-header__logo img {
        width: 200px;
        height: auto;
    }

    .site-header__menu {
        gap: 14px;
    }

    .site-header__menu a {
        font-size: 16px;
    }

    .site-header__language-switcher {
        margin-left: 6px;
        margin-right: 6px;
    }

    .site-header__language-link {
        min-width: 32px;
        height: 30px;
        font-size: 12px;
        padding: 0 7px;
    }

    .site-header__button {
        width: 220px;
        min-width: 220px;
        height: 56px;
        font-size: 16px;
        padding: 16px 20px;
    }
}

@media (max-width: 1290px) {
    .site-header__inner {
        padding: 24px 28px;
        gap: 14px;
    }

    .site-header__logo img {
        width: 190px;
        height: auto;
    }

    .site-header__menu {
        gap: 12px;
    }

    .site-header__menu a {
        font-size: 15px;
    }

    .site-header__language-switcher {
        margin-left: 4px;
        margin-right: 4px;
    }

    .site-header__language-link {
        min-width: 31px;
        height: 30px;
        font-size: 12px;
        padding: 0 7px;
    }

    .site-header__button {
        width: 210px;
        min-width: 210px;
        height: 54px;
        font-size: 15px;
        padding: 15px 18px;
    }
}

/* =========================
   BURGER MENU
========================= */

@media (max-width: 1100px) {
    .site-header {
        min-height: 100px;
    }

    .site-header__inner {
        min-height: 100px;
        padding: 20px 24px;
        position: relative;
        justify-content: flex-start;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .site-header__logo {
        order: 1;
        flex: 0 0 auto;
    }

    .site-header__logo img {
        width: 190px;
        height: auto;
    }

    .site-header__language-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        width: auto;
        justify-content: center;
        flex: 0 0 auto;
    }

    .site-header__language-link {
        min-width: 42px;
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }

    .site-header__burger {
        order: 3;
        display: block;
        margin-left: 0;
    }

    .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 20px 24px;
        box-sizing: border-box;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .site-header__nav.active {
        display: block;
    }

    .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .site-header__menu a {
        font-size: 20px;
    }

    .site-header__cta {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-header {
        min-height: 100px;
    }

    .site-header__inner {
        min-height: 100px;
        padding: 18px 18px;
        gap: 12px;
    }

    .site-header__logo img {
        width: 185px;
    }

    .site-header__language-switcher {
        gap: 6px;
        margin-left: auto;
        margin-right: 8px;
    }

    .site-header__language-link {
        min-width: 40px;
        height: 36px;
        font-size: 13px;
        padding: 0 9px;
    }

    .site-header__burger {
        width: 34px;
        height: 24px;
        flex-basis: 34px;
    }

    .site-header__burger span {
        width: 34px;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        padding: 18px 16px;
        gap: 10px;
    }

    .site-header__logo img {
        width: 170px;
    }

    .site-header__language-switcher {
        gap: 5px;
        margin-right: 8px;
    }

    .site-header__language-link {
        min-width: 36px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }

    .site-header__burger {
        width: 32px;
        height: 24px;
        flex-basis: 32px;
    }

    .site-header__burger span {
        width: 32px;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        padding: 16px 12px;
        gap: 8px;
    }

    .site-header__logo img {
        width: 150px;
    }

    .site-header__language-switcher {
        gap: 4px;
        margin-right: 6px;
    }

    .site-header__language-link {
        min-width: 34px;
        height: 32px;
        font-size: 12px;
        padding: 0 7px;
        border-radius: 7px;
    }

    .site-header__burger {
        width: 30px;
        height: 22px;
        flex-basis: 30px;
    }

    .site-header__burger span {
        width: 30px;
        height: 3px;
    }

    .site-header__burger span:nth-child(2) {
        top: 9px;
    }

    .site-header__burger span:nth-child(3) {
        top: 18px;
    }

    .site-header__burger.active span:nth-child(1),
    .site-header__burger.active span:nth-child(3) {
        top: 9px;
    }
}

/** css gia hero section */
.hero-boxes-section {
    position: relative;
    padding-bottom: 110px;
}

.hero-boxes-image-wrap {
    position: relative;
    width: 100%;
}

.hero-boxes-main-image {
    display: block;
    width: 100%;
    height: 789px;
    object-fit: cover;
}

.hero-boxes-cards {
    position: absolute;
    left: 50%;
    bottom: -92px;
    transform: translateX(-50%);
    width: min(922px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(4, 220px);
    justify-content: center;
    gap: 14px;
    z-index: 5;
}

.hero-box-card {
    width: 220px;
    min-height: 185px;
    border-radius: 13px;
    padding: 20px 16px 18px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-box-card:hover {
    transform: translateY(-3px);
}

.hero-box-card:focus {
    outline: none;
}

.hero-box-card:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.hero-box-card.box-1 {
    background-color: #FAECD4;
}

.hero-box-card.box-2 {
    background-color: #CEE0F4;
}

.hero-box-card.box-3 {
    background-color: #F5D4C3;
}

.hero-box-card.box-4 {
    background-color: #E6E6D0;
}

.hero-box-card-icon {
    width: 50px;
    height: 52px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-box-card-icon img {
    width: 50px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.hero-box-card-title {
    margin: 0 0 10px;
    font-family: "Geologica", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    color: #000000;
}

.hero-box-card-subtitle {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.35;
    color: #000000;
}

@media (max-width: 991px) {
    .hero-boxes-main-image {
        height: 560px;
    }

    .hero-boxes-cards {
        width: calc(100% - 24px);
        grid-template-columns: repeat(2, minmax(220px, 220px));
        bottom: -200px;
    }

    .hero-boxes-section {
        padding-bottom: 230px;
    }
}

@media (max-width: 575px) {
    .hero-boxes-main-image {
        height: 420px;
    }

    .hero-boxes-cards {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: -117px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-box-card {
        width: 220px;
        min-height: 185px;
    }

    .hero-boxes-section {
        padding-bottom: 40px;
    }
}




/** Work from mylopotamos css */

.work-mylopotamos-section {
    background-color: #FAFAFA;
    padding: 72px 0 86px;
    overflow: hidden;
}

.work-mylopotamos-section,
.work-mylopotamos-container,
.work-mylopotamos-left,
.work-mylopotamos-right {
    box-sizing: border-box;
}

.work-mylopotamos-container {
    width: min(1540px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 898px 555px;
    column-gap: 90px;
    align-items: start;
    justify-content: center;
}

.work-mylopotamos-left {
    width: 898px;
    min-width: 0;
}

.work-mylopotamos-right {
    width: 555px;
    min-width: 0;
    padding-top: 98px;
}


.work-mylopotamos-heading {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 800;
    font-size: 31px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

.work-mylopotamos-heading-before {
    color: #000000;
}

.work-mylopotamos-heading-highlight {
    color: #8D9448;
}


.work-mylopotamos-text {
    margin-top: 31px;
    max-width: 760px;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.45;
    color: #373B61;
    text-align: left;
}


.work-mylopotamos-cards {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 286px);
    column-gap: 19px;
    row-gap: 27px;
    width: 100%;
}

.work-mylopotamos-card {
    width: 286px;
    height: 191px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 22px 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.work-mylopotamos-card-icon {
    width: 48px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-mylopotamos-card-icon img {
    width: 48px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.work-mylopotamos-card-title {
    margin: 0 0 12px;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.3;
    color: #373B61;
}

.work-mylopotamos-card-subtitle {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.35;
    color: #373B61;
}


.work-mylopotamos-stats {
    margin-top: 40px;
    width: 706px;
    max-width: 100%;
    min-height: 118px;
    background-color: #FAFDFF;
    border-radius: 12px;
    padding: 24px 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    align-items: center;
}

.work-mylopotamos-stat {
    text-align: center;
}

.work-mylopotamos-stat-value {
    margin-bottom: 10px;
    font-family: "Geologica", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    color: #9A9D3A;
}

.work-mylopotamos-stat-label {
    font-family: "Geologica", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    color: #454B79;
}


.work-mylopotamos-button-wrap {
    margin-top: 36px;
}

.work-mylopotamos-button {
    width: 286px;
    min-height: 60px;
    background-color: #A5AB67;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.2;
    color: #FFFFFF;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-mylopotamos-button:hover {
    opacity: 0.94;
    transform: translateY(-1px);
}


.work-mylopotamos-side-image {
    width: 555px;
    max-width: 100%;
}

.work-mylopotamos-side-image img {
    display: block;
    width: 100%;
    max-width: 555px;
    height: 545px;
    object-fit: cover;
    border-radius: 12px;
}


@media (max-width: 1500px) {
    .work-mylopotamos-container {
        width: min(1300px, calc(100% - 60px));
        grid-template-columns: 592px 555px;
        column-gap: 36px;
    }

    .work-mylopotamos-left {
        width: 592px;
    }

    .work-mylopotamos-right {
        width: 555px;
        padding-top: 92px;
    }

    .work-mylopotamos-text {
        max-width: 592px;
    }

    .work-mylopotamos-cards {
        grid-template-columns: repeat(2, 286px);
        column-gap: 20px;
        row-gap: 27px;
        width: 592px;
    }

    .work-mylopotamos-stats {
        width: 592px;
    }
}


@media (max-width: 1200px) {
    .work-mylopotamos-container {
        width: min(1160px, calc(100% - 32px));
        grid-template-columns: minmax(0, 1fr) 480px;
        column-gap: 28px;
    }

    .work-mylopotamos-left {
        width: 100%;
    }

    .work-mylopotamos-right {
        width: 480px;
        padding-top: 88px;
    }

    .work-mylopotamos-text {
        max-width: 100%;
        font-size: 19px;
    }

    .work-mylopotamos-cards {
        grid-template-columns: repeat(2, minmax(0, 286px));
        justify-content: start;
        width: 100%;
    }

    .work-mylopotamos-stats {
        width: 100%;
        max-width: 592px;
    }

    .work-mylopotamos-side-image img {
        max-width: 480px;
        width: 100%;
        height: auto;
        aspect-ratio: 555 / 545;
    }
}


@media (max-width: 1199px) {
    .work-mylopotamos-section {
        padding: 56px 0 64px;
    }

    .work-mylopotamos-container {
        width: min(720px, calc(100% - 24px));
        grid-template-columns: 1fr;
        row-gap: 40px;
        column-gap: 0;
    }

    .work-mylopotamos-left,
    .work-mylopotamos-right {
        width: 100%;
        max-width: 100%;
    }

    .work-mylopotamos-right {
        padding-top: 0;
        display: flex;
        justify-content: center;
    }

    .work-mylopotamos-heading {
        text-align: center;
    }

    .work-mylopotamos-text {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .work-mylopotamos-cards {
        grid-template-columns: repeat(2, minmax(0, 286px));
        justify-content: center;
        justify-items: center;
        width: 100%;
    }

    .work-mylopotamos-stats {
        width: 100%;
        max-width: 706px;
        margin-left: auto;
        margin-right: auto;
    }

    .work-mylopotamos-button-wrap {
        text-align: center;
    }

    .work-mylopotamos-side-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .work-mylopotamos-side-image img {
        display: block;
        width: min(555px, 100%);
        height: auto;
        aspect-ratio: 555 / 545;
        margin: 0 auto;
    }
}


@media (max-width: 767px) {
    .work-mylopotamos-section {
        padding: 48px 0 56px;
    }

    .work-mylopotamos-container {
        width: calc(100% - 24px);
    }

    .work-mylopotamos-heading {
        font-size: 26px;
        text-align: center;
        word-break: break-word;
    }

    .work-mylopotamos-text {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
    }

    .work-mylopotamos-cards {
        margin-top: 28px;
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 20px;
    }

    .work-mylopotamos-card {
        width: min(286px, 100%);
        height: auto;
        min-height: 191px;
    }

    .work-mylopotamos-stats {
        width: 100%;
        grid-template-columns: 1fr;
        row-gap: 20px;
        padding: 22px 20px;
    }

    .work-mylopotamos-stat-value {
        font-size: 24px;
    }

    .work-mylopotamos-stat-label {
        font-size: 16px;
    }

    .work-mylopotamos-button {
        width: min(286px, 100%);
        font-size: 19px;
    }

    .work-mylopotamos-side-image {
        width: 100%;
        overflow: hidden;
        margin-top: 40px;
    }

    .work-mylopotamos-side-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 555 / 545;
        object-fit: cover;
    }
}


@media (max-width: 480px) {
    .work-mylopotamos-container {
        width: calc(100% - 20px);
    }

    .work-mylopotamos-heading {
        font-size: 24px;
    }

    .work-mylopotamos-text {
        font-size: 17px;
    }

    .work-mylopotamos-card-title {
        font-size: 18px;
    }

    .work-mylopotamos-card-subtitle {
        font-size: 16px;
    }

    .work-mylopotamos-button {
        font-size: 18px;
        min-height: 56px;
    }
}

/** front page tourism section **/

.front-tourism-section {
    width: 100%;
    min-height: 1074px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.front-tourism-section__wrapper {
    max-width: 1510px;
    margin: 0 auto;
    padding: 67px 70px 90px 70px;
    box-sizing: border-box;
}

.front-tourism-section__title {
    margin: 0 0 20px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.2;
    color: #383B60;
    text-align: center;
}

.front-tourism-section__title-highlight {
    color: #5480D3;
}

.front-tourism-section__subtitle {
    max-width: 1120px;
    margin: 0 auto 90px auto;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.35;
    color: #5A5959;
    text-align: center;
}

/* main layout */
.front-tourism-section__content {
    max-width: 1204px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
    row-gap: 35px;
    align-items: start;
}

/* cards */
.front-tourism-cards-grid {
    grid-column: 1 / -1;
    display: contents;
}

.front-tourism-card {
    width: 100%;
    height: 370px;
    min-height: 370px;
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.front-tourism-card:hover,
.front-tourism-card:focus {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.front-tourism-card__image-wrap {
    width: 100%;
    height: 189px;
    flex: 0 0 189px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.front-tourism-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.front-tourism-card__body {
    height: 181px;
    flex: 0 0 181px;
    padding: 26px 18px 32px 18px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.front-tourism-card__title {
    margin: 0 0 18px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 1.45vw, 25px);
    line-height: 1.08;
    color: #3A3A3C;
    text-align: center;
}

.front-tourism-card__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.15;
    color: #49494D;
    text-align: center;
}

/* button placement: row 2, columns 3-4 */
.front-tourism-section__button-wrap {
    grid-column: 3 / 5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 112px;
}

.front-tourism-section__button {
    width: 377px;
    height: 72px;
    background: #2D3154;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
}

.front-tourism-section__button:hover,
.front-tourism-section__button:focus {
    color: #FFFFFF;
    text-decoration: none;
    background: #2D3154;
}

/** responsive **/

@media (max-width: 1399px) {
    .front-tourism-section__wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .front-tourism-section__content {
        max-width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 35px;
    }

    .front-tourism-card {
    height: 350px;
    min-height: 350px;
}

.front-tourism-card__image-wrap {
    height: 175px;
    flex-basis: 175px;
}

.front-tourism-card__body {
    height: 175px;
    flex-basis: 175px;
    padding: 26px 14px 20px 14px;
}

.front-tourism-card__title {
    font-size: 20px;
    margin-bottom: 17px;
}

.front-tourism-card__text {
    font-size: 15px;
    line-height: 1.18;
}
}

@media (max-width: 1199px) {
    .front-tourism-section {
        min-height: unset;
    }

    .front-tourism-section__wrapper {
        padding-top: 56px;
        padding-bottom: 70px;
    }

    .front-tourism-section__subtitle {
        margin-bottom: 60px;
    }

    .front-tourism-section__content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .front-tourism-section__button-wrap {
        grid-column: 2 / 4;
        padding-top: 40px;
    }
}

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

    .front-tourism-section__button-wrap {
        grid-column: 1 / -1;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .front-tourism-section__wrapper {
        padding: 42px 16px 54px 16px;
    }

    .front-tourism-section__title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .front-tourism-section__subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .front-tourism-section__content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

   .front-tourism-card {
    height: auto;
    min-height: 340px;
}

    .front-tourism-card__image-wrap {
        height: 180px;
        flex-basis: 180px;
    }

    .front-tourism-card__body {
    height: auto;
    flex: 1 1 auto;
    overflow: visible;
}

    .front-tourism-card__title {
        font-size: 21px;
        margin-bottom: 18px;
    }

    .front-tourism-card__text {
        font-size: 16px;
    }

    .front-tourism-section__button-wrap {
        grid-column: 1;
        padding-top: 18px;
    }

    .front-tourism-section__button {
        width: 100%;
        max-width: 377px;
        height: 64px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .front-tourism-card__image-wrap {
        height: 160px;
        flex-basis: 160px;
    }

    .front-tourism-card__title {
        font-size: 19px;
    }

    .front-tourism-card__text {
        font-size: 15px;
    }
}






/** front businesses section **/

.front-businesses-section {
    width: 100%;
    min-height: 1123px;
    background-image: url('https://development2.crowdpolicy.com/mylopotamos-online/wp-content/uploads/2026/04/Group-19422.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    box-sizing: border-box;
}

.front-businesses-section__wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 70px 40px 90px 40px;
    box-sizing: border-box;
}

.front-businesses-section__title {
    margin: 0 0 24px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
}

.front-businesses-section__subtitle {
    max-width: 1050px;
    margin: 0 auto;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.35;
    text-align: center;
    color: #000000;
}

.front-businesses-section__search-row {
    display: flex;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

.front-businesses-search-form {
    width: 909px;
    height: 58px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 37px;
    box-sizing: border-box;
    overflow: hidden;
}

.front-businesses-search-field {
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 22px;
    padding-right: 16px;
    box-sizing: border-box;
}

.front-businesses-search-icon {
    width: 14.5px;
    height: 14.5px;
    color: #BEBEBE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 14.5px;
    margin-right: 14px;
}

.front-businesses-search-icon svg {
    width: 14.5px;
    height: 14.5px;
    display: block;
}

.front-businesses-search-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #BEBEBE;
}

.front-businesses-search-input::placeholder {
    color: #BEBEBE;
    opacity: 1;
}

.front-businesses-search-button {
    width: 130px;
    height: 43px;
    margin-right: 7px;
    background: #A1A761;
    border: 0;
    border-radius: 37px;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
}

.front-businesses-category-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.front-businesses-category-card {
    min-height: 309px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 28px 18px 26px 18px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.front-businesses-category-card.is-elaiolado {
    background: #676724;
    border: 1px solid #C4C4B3;
}

.front-businesses-category-card.is-tyrokomika {
    background: #C38A0A;
    border: 1px solid #D9CBB1;
}

.front-businesses-category-card.is-krasi-pota {
    background: #9F2F11;
    border: 1px solid #E6B4A7;
}

.front-businesses-category-card.is-endysi {
    background: #181F6C;
    border: 1px solid #AECDD9;
}

.front-businesses-category-card.is-ypodysi {
    background: #429EAA;
    border: 1px solid #80D3DE;
}

.front-businesses-category-card__icon-wrap {
    width: 76px;
    height: 76px;
    margin: 0 auto 26px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-businesses-category-card__icon {
    max-width: 76px;
    max-height: 76px;
    display: block;
}

.front-businesses-category-card__title {
    margin: 0 0 18px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.front-businesses-category-card__subtitle {
    margin: 0 0 26px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.25;
    text-align: center;
    color: #FFFFFF;
}

.front-businesses-category-card__count {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.front-businesses-stats-box {
    width: 100%;
    max-width: 1509px;
    min-height: 140px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 0.5px solid #2D3154;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    box-sizing: border-box;
    padding: 20px 30px;
}

.front-businesses-stats-box__item {
    text-align: center;
}

.front-businesses-stats-box__number {
    margin-bottom: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 41px;
    line-height: 1.1;
    text-align: center;
    color: #2D3154;
}

.front-businesses-stats-box__label {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #2D3154;
}

.front-businesses-section__button-row {
    display: flex;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.front-businesses-section__button {
    width: 387px;
    height: 74px;
    background: #A1A761;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
}

.front-businesses-section__button:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/** responsive **/

@media (max-width: 1399px) {
    .front-businesses-section__wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    .front-businesses-category-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .front-businesses-section {
        min-height: unset;
    }

    .front-businesses-section__title {
        font-size: 28px;
    }

    .front-businesses-section__subtitle {
        font-size: 18px;
    }

    .front-businesses-section__search-row {
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .front-businesses-search-form {
        width: 100%;
        max-width: 909px;
    }

    .front-businesses-category-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .front-businesses-stats-box {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .front-businesses-section__button-row {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .front-businesses-section__wrapper {
        padding: 36px 16px 50px 16px;
    }

    .front-businesses-section__title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .front-businesses-section__subtitle {
        font-size: 16px;
    }

    .front-businesses-section__search-row {
        padding-top: 32px;
        padding-bottom: 42px;
    }

    .front-businesses-search-form {
        height: auto;
        min-height: 58px;
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        padding: 12px;
    }

    .front-businesses-search-field {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
        min-height: 40px;
    }

    .front-businesses-search-button {
        width: 100%;
        height: 44px;
        margin-right: 0;
    }

    .front-businesses-category-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .front-businesses-category-card {
        min-height: auto;
        padding: 24px 16px;
    }

    .front-businesses-category-card__icon-wrap {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
    }

    .front-businesses-category-card__icon {
        max-width: 62px;
        max-height: 62px;
    }

    .front-businesses-category-card__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .front-businesses-category-card__subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .front-businesses-category-card__count {
        font-size: 17px;
    }

    .front-businesses-stats-box {
        border-radius: 14px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .front-businesses-stats-box__number {
        font-size: 34px;
    }

    .front-businesses-stats-box__label {
        font-size: 16px;
    }

    .front-businesses-section__button-row {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .front-businesses-section__button {
        width: 100%;
        max-width: 387px;
        height: 64px;
        font-size: 18px;
    }
}



/** front page jobs section **/

.front-jobs-section {
    width: 100%;
    min-height: 773px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.front-jobs-section__wrapper {
    max-width: 1439px;
    margin: 0 auto;
    padding: 56px 70px 39px 70px;
    box-sizing: border-box;
}

.front-jobs-section__title {
    margin: 0 0 30px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
}

.front-jobs-section__subtitle {
    max-width: 760px;
    margin: 0 auto 50px auto;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.35;
    text-align: center;
    color: #5A5959;
}

.front-jobs-section__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
    margin-bottom: 47px;
}

.front-jobs-card {
    width: 100%;
    max-width: 365px;
    height: 355px;
    background: #DDE7FA;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0 auto;
}

.front-jobs-card__top {
    flex: 1 1 auto;
    padding: 30px 18px 0 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.front-jobs-card__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
}

.front-jobs-card__excerpt {
    margin-top: 24px;
    margin-bottom: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    color: #70707B;
    text-align: left;
}

.front-jobs-card__meta-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 34px;
    padding-bottom: 18px;
    min-width: 0;
}

.front-jobs-card__meta-row {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.front-jobs-card__meta-row span {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.front-jobs-card__meta-row--business {
    grid-column: 1;
    justify-self: start;
}

.front-jobs-card__meta-row--location {
    grid-column: 2;
    justify-self: start;
}

.front-jobs-card__meta-row--type {
    grid-column: 1 / -1;
}

.front-jobs-card__meta-icon {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    flex: 0 0 30px;
}

.front-jobs-card__meta-icon--business,
.front-jobs-card__meta-icon--location,
.front-jobs-card__meta-icon--type {
    width: 30px;
    height: 30px;
}

.front-jobs-card__bottom {
    height: 46px;
    background: #5480D3;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
}

.front-jobs-card__bottom-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
}

.front-jobs-card__bottom-link span:first-child {
    padding-left: 34px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}

.front-jobs-card__bottom-arrow {
    padding-right: 34px;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}

.front-jobs-section__button-row {
    display: flex;
    justify-content: center;
}

.front-jobs-section__button {
    width: 379px;
    min-height: 72px;
    background: #2D3154;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.front-jobs-section__button:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.front-jobs-card__meta-row,
.front-jobs-card__meta-row:link,
.front-jobs-card__meta-row:visited,
.front-jobs-card__meta-row:hover,
.front-jobs-card__meta-row:focus,
.front-jobs-card__meta-row:active {
    color: #3A3A3C;
    text-decoration: none;
}

.front-jobs-card__meta-row span,
.front-jobs-card__meta-row:link span,
.front-jobs-card__meta-row:visited span,
.front-jobs-card__meta-row:hover span,
.front-jobs-card__meta-row:focus span,
.front-jobs-card__meta-row:active span {
    color: #3A3A3C;
    text-decoration: none;
}

/** responsive **/

@media (max-width: 1399px) {
    .front-jobs-section__wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .front-jobs-section__cards {
        gap: 18px;
    }
}

@media (max-width: 1199px) {
    .front-jobs-section {
        min-height: unset;
    }

    .front-jobs-section__wrapper {
        padding: 48px 24px 32px 24px;
    }

    .front-jobs-section__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .front-jobs-section__wrapper {
        padding: 36px 16px 28px 16px;
    }

    .front-jobs-section__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .front-jobs-section__subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .front-jobs-section__cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .front-jobs-card {
        max-width: 365px;
        width: 100%;
        height: 355px;
    }

    .front-jobs-card__top {
        padding: 24px 16px 0 16px;
    }

    .front-jobs-card__title {
        font-size: 18px;
    }

    .front-jobs-card__excerpt {
        margin-top: 18px;
        font-size: 15px;
    }

    .front-jobs-card__meta-list {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 8px;
        padding-top: 24px;
        padding-bottom: 16px;
        width: 100%;
        min-width: 0;
    }

    .front-jobs-card__meta-row {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 7px;
        font-size: 14px;
        overflow: hidden;
    }

    .front-jobs-card__meta-row span {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .front-jobs-card__meta-row--business {
        justify-self: start;
    }

    .front-jobs-card__meta-row--location {
        justify-self: start;
    }

    .front-jobs-card__meta-row--type {
        grid-column: 1 / -1;
    }

    .front-jobs-card__meta-icon,
    .front-jobs-card__meta-icon--business,
    .front-jobs-card__meta-icon--location,
    .front-jobs-card__meta-icon--type {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .front-jobs-card__bottom-link span:first-child {
        padding-left: 24px;
    }

    .front-jobs-card__bottom-arrow {
        padding-right: 24px;
    }

    .front-jobs-section__button {
        width: 100%;
        max-width: 379px;
        min-height: 64px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .front-jobs-section__wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .front-jobs-card {
        max-width: 365px;
        height: 355px;
    }

    .front-jobs-card__top {
        padding-left: 16px;
        padding-right: 16px;
    }

    .front-jobs-card__meta-list {
        grid-template-columns: 1fr;
        row-gap: 8px;
        padding-top: 22px;
    }

    .front-jobs-card__meta-row--business,
    .front-jobs-card__meta-row--location,
    .front-jobs-card__meta-row--type {
        grid-column: 1;
        justify-self: start;
    }

    .front-jobs-card__meta-row {
        width: 100%;
    }
}

/** Footer css */

.mylopotamos-footer {
  background-color: #0d0d0d;
  color: #DBDBDB;
  min-height: 619px;
  box-sizing: border-box;
  padding: 118px 90px 34px;
  font-family: 'Geologica', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mylopotamos-footer a {
  color: #DBDBDB;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mylopotamos-footer a:hover {
  opacity: 0.75;
}

.footer-container {
  display: grid;
  grid-template-columns: 360px 190px 220px 250px;
  justify-content: space-between;
  align-items: start;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
}

.footer-col {
  min-width: 0;
}

.footer-col-brand {
  max-width: 360px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-contact-icon {
  display: block;
  width: 16px;
  height: 21px;
  flex: 0 0 16px;
  object-fit: contain;
}
.footer-logo {
  display: block;
  width: 297px;
  height: 98px;
  max-width: 100%;
  object-fit: contain;
}

.footer-description {
  margin: 0;
  max-width: 345px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.62;
  color: #DBDBDB;
}

.footer-title {
  margin: 0 0 18px 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: #DBDBDB;
  white-space: nowrap;
}

.footer-menu,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-menu li:last-child,
.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-menu li a,
.footer-contact li,
.footer-contact li a {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: #DBDBDB;
}

.footer-menu li a {
  white-space: nowrap;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact li a {
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(219, 219, 219, 0.24);
  padding-top: 28px;
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom-left,
.footer-bottom-right a {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  color: #DBDBDB;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 44px;
}


@media (max-width: 1400px) {
  .mylopotamos-footer {
    padding-left: 70px;
    padding-right: 70px;
  }

  .footer-container {
    grid-template-columns: 320px 180px 210px 230px;
    column-gap: 32px;
  }

  .footer-description {
    max-width: 320px;
    font-size: 17px;
  }

  .footer-title {
    font-size: 21px;
  }

  .footer-menu li a,
  .footer-contact li,
  .footer-contact li a {
    font-size: 17px;
  }
}

@media (max-width: 1100px) {
  .mylopotamos-footer {
    min-height: auto;
    padding: 80px 40px 32px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: center;
    align-items: start;
    column-gap: 80px;
    row-gap: 42px;
    width: 100%;
  }

  .footer-col,
  .footer-col-brand {
    width: 100%;
    max-width: 100%;
  }

  .footer-col-brand {
    margin-right: 0;
  }

  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 864px) {
  .mylopotamos-footer {
    padding: 60px 32px 28px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: center;
    align-items: start;
    column-gap: 40px;
    row-gap: 36px;
    width: 100%;
    
  }

  .footer-container > .footer-col,
  .footer-container > .footer-col-brand {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .footer-col-brand {
    margin-right: 0;
  }

  .footer-logo {
    width: 220px;
    height: auto;
  }

  .footer-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-title {
    font-size: 20px;
    white-space: normal;
  }

  .footer-menu li a,
  .footer-contact li,
  .footer-contact li a {
    font-size: 16px;
  }

  .footer-contact li {
    white-space: normal;
    align-items: flex-start;
  }

  .footer-contact li a {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 767px) {
  .mylopotamos-footer {
    padding: 60px 24px 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .footer-logo {
    width: 220px;
    height: auto;
  }

  .footer-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-title {
    font-size: 20px;
    white-space: normal;
  }

  .footer-menu li a,
  .footer-contact li,
  .footer-contact li a {
    font-size: 16px;
  }

  .footer-contact li {
    white-space: normal;
    align-items: flex-start;
  }

  .footer-contact li a {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 480px) {
  .footer-logo {
    width: 190px;
  }

  .footer-description,
  .footer-menu li a,
  .footer-contact li,
  .footer-contact li a,
  .footer-bottom-left,
  .footer-bottom-right a {
    font-size: 15px;
  }

  .footer-bottom-right {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================
   Εγγραφή Επιχείρησης
========================================== */

.business-registration-page {
    padding: 80px 20px;
    background: #f8f8f8;
}

.business-registration-page .container {
    max-width: 1100px;
    margin: 0 auto;
}

.business-registration-wrap {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.business-registration-head {
    text-align: center;
    margin-bottom: 35px;
}

.business-registration-head h1 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.business-registration-head p {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
}

.business-form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
}

.business-form-message.success {
    background: #e8f8ee;
    color: #177245;
    border: 1px solid #b7e4c7;
}

.business-form-message.error {
    background: #fdecec;
    color: #b42318;
    border: 1px solid #f5c2c7;
}

.business-registration-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.business-registration-form .form-group {
    display: flex;
    flex-direction: column;
}

.business-registration-form .form-group.full-width {
    grid-column: 1 / -1;
}

.business-registration-form label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

.business-registration-form input[type="text"],
.business-registration-form input[type="email"],
.business-registration-form input[type="url"],
.business-registration-form input[type="file"],
.business-registration-form textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    color: #111111;
    background: #ffffff;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.business-registration-form textarea {
    resize: vertical;
    min-height: 140px;
}

.business-registration-form input:focus,
.business-registration-form textarea:focus {
    outline: none;
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/** Working hours registration table **/

.working-hours-box {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 32px 28px;
}

.working-hours-box h3 {
    margin: 0 0 28px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

.working-hours-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.working-hours-table__head,
.working-hours-table__row {
    display: grid;
    grid-template-columns: 140px 110px repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.working-hours-table__head {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #222B62;
}

.working-hours-table__day {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #000000;
}

.working-hours-closed-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #555454;
    cursor: pointer;
}

.working-hours-closed-label input {
    margin: 0;
}

.working-hours-table__field input {
    width: 100%;
    height: 46px;
    border: 1px solid #D8D8D8;
    border-radius: 12px;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 0 14px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #555454;
}

.working-hours-help-text {
    margin: 18px 0 0 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.35;
    color: #666666;
}

/** responsive **/

@media (max-width: 991px) {
    .working-hours-table__head {
        display: none;
    }

    .working-hours-table {
        gap: 18px;
    }

    .working-hours-table__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 16px;
        border: 1px solid #EDE6DC;
        border-radius: 14px;
        background: #FAFAFA;
    }

    .working-hours-table__day {
        grid-column: 1 / -1;
        font-size: 16px;
    }

    .working-hours-table__closed {
        grid-column: 1 / -1;
    }

    .working-hours-table__field input {
        height: 44px;
    }
}

@media (max-width: 600px) {
    .working-hours-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .working-hours-box h3 {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .working-hours-table__row {
        grid-template-columns: 1fr;
    }
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.submit-row {
    margin-top: 25px;
    text-align: center;
}

.business-submit-btn {
    display: inline-block;
    min-width: 260px;
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #111111;
    cursor: pointer;
    transition: all 0.25s ease;
}

.business-submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

#business-map {
    width: 100%;
    height: 420px;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 10px;
}

.map-help-text {
    margin: 10px 0 0;
    font-size: 14px;
    color: #6b7280;
}

.selected-coordinates {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #111111;
}

.leaflet-container {
    font-family: inherit;
}

@media (max-width: 991px) {
    .business-registration-wrap {
        padding: 30px 22px;
    }

    .business-registration-head h1 {
        font-size: 30px;
    }

    .business-registration-form .form-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .business-registration-page {
        padding: 50px 14px;
    }

    .business-registration-wrap {
        border-radius: 16px;
        padding: 22px 16px;
    }

    .business-registration-head h1 {
        font-size: 26px;
    }

    .business-submit-btn {
        width: 100%;
        min-width: auto;
    }
}

/** css gia single-epixeirisi.php **/

body.single-epixeirisi .business-single-page {
    background: #FAFAFA;
    min-height: 100vh;
    padding-top: 49px;
    padding-bottom: 60px;
}

body.single-epixeirisi .business-single-wrapper {
    max-width: 1439px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

body.single-epixeirisi .business-back-row {
    margin-bottom: 34px;
}

body.single-epixeirisi .business-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
    color: #555454;
}

body.single-epixeirisi .business-back-arrow {
    font-size: 30px;
    line-height: 1;
}

body.single-epixeirisi .business-hero-card {
    width: 100%;
    max-width: 1439px;
    min-height: 244px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

body.single-epixeirisi .business-hero-card__image-col {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 22px;
    padding-right: 67px;
    flex: 0 0 auto;
}

body.single-epixeirisi .business-hero-image {
    width: 205px;
    height: 169px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

body.single-epixeirisi .business-hero-card__content {
    padding-top: 49px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

body.single-epixeirisi .business-hero-title {
    margin: 0 0 14px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-location-link,
body.single-epixeirisi .business-location-link--disabled {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
}

body.single-epixeirisi .business-location-link:hover {
    text-decoration: none;
}

body.single-epixeirisi .business-location-icon {
    width: 18px;
    height: 22px;
    display: block;
    object-fit: contain;
    flex: 0 0 18px;
}

body.single-epixeirisi .business-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 147px;
    height: 40px;
    margin: 0 0 18px 0;
    background: #676724;
    border-radius: 23px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}

body.single-epixeirisi .business-hero-card__action {
    margin-left: auto;
    padding-top: 145px;
    padding-right: 40px;
    padding-left: 20px;
    flex: 0 0 auto;
}

body.single-epixeirisi .business-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: #9EA55C;
    border-radius: 10px;
    text-decoration: none;
    box-sizing: border-box;
}

body.single-epixeirisi .business-call-btn__icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    flex: 0 0 18px;
    font-size: 0;
    color: inherit;
}

body.single-epixeirisi .business-call-btn:hover,
body.single-epixeirisi .business-call-btn:focus {
    background: #9EA55C;
    text-decoration: none;
}

body.single-epixeirisi .business-call-btn__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
}

body.single-epixeirisi .business-category-badge.category-pill--elaiolado {
    background: #676724;
}

body.single-epixeirisi .business-category-badge.category-pill--tyrokomika {
    background: #C38A0A;
}

body.single-epixeirisi .business-category-badge.category-pill--krasi-pota {
    background: #9F2F11;
}

body.single-epixeirisi .business-category-badge.category-pill--endysi {
    background: #181F6C;
}

body.single-epixeirisi .business-category-badge.category-pill--ypodysi {
    background: #429EAA;
}

/** responsive css gia hero section tou single-epixeirisi **/

@media (max-width: 1366px) {
    body.single-epixeirisi .business-single-page {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    body.single-epixeirisi .business-single-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.single-epixeirisi .business-back-row {
        margin-bottom: 28px;
    }

    body.single-epixeirisi .business-back-link {
        font-size: 20px;
    }

    body.single-epixeirisi .business-hero-card {
        min-height: 220px;
    }

    body.single-epixeirisi .business-hero-card__image-col {
        padding-top: 28px;
        padding-bottom: 28px;
        padding-left: 22px;
        padding-right: 42px;
    }

    body.single-epixeirisi .business-hero-image {
        width: 180px;
        height: 148px;
    }

    body.single-epixeirisi .business-hero-card__content {
        padding-top: 28px;
        padding-bottom: 28px;
        padding-right: 24px;
    }

    body.single-epixeirisi .business-hero-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    body.single-epixeirisi .business-location-link,
    body.single-epixeirisi .business-location-link--disabled {
        font-size: 16px;
        gap: 8px;
    }

    body.single-epixeirisi .business-location-icon {
        width: 17px;
        height: 21px;
        flex: 0 0 17px;
    }

    body.single-epixeirisi .business-hero-card__action {
        padding-top: 0;
        padding-right: 28px;
        padding-left: 16px;
        align-self: center;
    }
}

@media (max-width: 1024px) {
    body.single-epixeirisi .business-single-page {
        padding-top: 34px;
        padding-bottom: 44px;
    }

    body.single-epixeirisi .business-single-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.single-epixeirisi .business-back-row {
        margin-bottom: 24px;
    }

    body.single-epixeirisi .business-back-link {
        font-size: 18px;
        gap: 8px;
    }

    body.single-epixeirisi .business-back-arrow {
        font-size: 26px;
    }

    body.single-epixeirisi .business-hero-card {
        min-height: auto;
        padding-top: 26px;
        padding-bottom: 26px;
        flex-wrap: wrap;
        align-items: center;
    }

    body.single-epixeirisi .business-hero-card__image-col {
        padding: 0 24px 0 22px;
    }

    body.single-epixeirisi .business-hero-image {
        width: 165px;
        height: 136px;
        border-radius: 14px;
    }

    body.single-epixeirisi .business-hero-card__content {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 16px;
        flex: 1 1 0;
    }

    body.single-epixeirisi .business-hero-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    body.single-epixeirisi .business-category-badge {
        width: 132px;
        height: 36px;
        border-radius: 20px;
        font-size: 13px;
        margin-bottom: 14px;
    }

    body.single-epixeirisi .business-location-link,
    body.single-epixeirisi .business-location-link--disabled {
        font-size: 15px;
        gap: 8px;
    }

    body.single-epixeirisi .business-location-icon {
        width: 16px;
        height: 20px;
        flex: 0 0 16px;
    }

    body.single-epixeirisi .business-hero-card__action {
        padding: 0 22px 0 22px;
        margin-left: auto;
    }

    body.single-epixeirisi .business-call-btn {
        height: 38px;
        padding: 0 14px;
        gap: 7px;
    }

    body.single-epixeirisi .business-call-btn__icon {
        width: 23px;
        height: 23px;
        flex: 0 0 23px;
    }

    body.single-epixeirisi .business-call-btn__text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    body.single-epixeirisi .business-single-page {
        padding-top: 24px;
        padding-bottom: 36px;
    }

    body.single-epixeirisi .business-single-wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.single-epixeirisi .business-back-row {
        margin-bottom: 18px;
    }

    body.single-epixeirisi .business-back-link {
        font-size: 16px;
        gap: 6px;
    }

    body.single-epixeirisi .business-back-arrow {
        font-size: 22px;
    }

    body.single-epixeirisi .business-hero-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px 18px 16px;
        border-radius: 16px;
        min-height: auto;
    }

    body.single-epixeirisi .business-hero-card__image-col {
        padding: 0;
        margin-bottom: 16px;
    }

    body.single-epixeirisi .business-hero-image {
        width: 130px;
        height: 108px;
        border-radius: 12px;
    }

    body.single-epixeirisi .business-hero-card__content {
        width: 100%;
        padding: 0;
        margin-bottom: 16px;
    }

    body.single-epixeirisi .business-hero-title {
        font-size: 19px;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    body.single-epixeirisi .business-category-badge {
        width: auto;
        min-width: 120px;
        height: 34px;
        padding: 0 20px;
        border-radius: 18px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    body.single-epixeirisi .business-location-link,
    body.single-epixeirisi .business-location-link--disabled {
        font-size: 15px;
        gap: 8px;
    }

    body.single-epixeirisi .business-location-icon {
        width: 15px;
        height: 19px;
        flex: 0 0 15px;
    }

    body.single-epixeirisi .business-hero-card__action {
        width: 100%;
        padding: 0;
        margin-left: 0;
    }

    body.single-epixeirisi .business-call-btn {
        width: 100%;
        height: 42px;
        padding: 0 16px;
        border-radius: 10px;
    }

    body.single-epixeirisi .business-call-btn__icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    body.single-epixeirisi .business-call-btn__text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body.single-epixeirisi .business-single-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.single-epixeirisi .business-hero-card {
        padding: 14px;
    }

    body.single-epixeirisi .business-hero-image {
        width: 115px;
        height: 96px;
    }

    body.single-epixeirisi .business-hero-title {
        font-size: 17px;
    }

    body.single-epixeirisi .business-category-badge {
        min-width: 110px;
        height: 32px;
        padding: 0 16px;
        font-size: 12px;
    }

    body.single-epixeirisi .business-location-link,
    body.single-epixeirisi .business-location-link--disabled {
        font-size: 14px;
    }

    body.single-epixeirisi .business-location-icon {
        width: 14px;
        height: 18px;
        flex: 0 0 14px;
    }

    body.single-epixeirisi .business-call-btn {
        height: 40px;
    }

    body.single-epixeirisi .business-call-btn__text {
        font-size: 13px;
    }
}
/** jobs section inside single-epixeirisi.php **/

body.single-epixeirisi .business-jobs-section {
    width: 100%;
    min-height: 353px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
    box-sizing: border-box;
    margin-top: 28px;
    padding: 18px 20px 24px 20px;
}

body.single-epixeirisi .business-jobs-section__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 0 24px 0;
}

body.single-epixeirisi .business-jobs-section__icon {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}

body.single-epixeirisi .business-jobs-section__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.single-epixeirisi .business-jobs-section__title {
    margin: 0 0 6px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-jobs-section__count {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: #7B7070;
    text-align: left;
}

body.single-epixeirisi .business-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 6px;
}

body.single-epixeirisi .business-jobs-card {
    width: 607px;
    max-width: 100%;
    min-height: 83px;
    background: #DDE7FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    box-sizing: border-box;
}

body.single-epixeirisi .business-jobs-card__content {
    min-width: 0;
}

body.single-epixeirisi .business-jobs-card__title {
    margin: 0 0 8px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-jobs-card__meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

body.single-epixeirisi .business-jobs-card__type,
body.single-epixeirisi .business-jobs-card__date {
    font-family: 'Geologica', sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-jobs-card__arrow {
    width: 19px;
    height: 11.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    flex: 0 0 19px;
}

body.single-epixeirisi .business-jobs-card__arrow:hover {
    text-decoration: none;
}

@media (max-width: 767px) {
    body.single-epixeirisi .business-jobs-section {
        padding: 18px 14px;
        border-radius: 12px;
    }

    body.single-epixeirisi .business-jobs-section__header {
        gap: 12px;
        padding-bottom: 18px;
    }

    body.single-epixeirisi .business-jobs-section__icon {
        width: 44px;
        height: 44px;
    }

    body.single-epixeirisi .business-jobs-section__title {
        font-size: 20px;
    }

    body.single-epixeirisi .business-jobs-section__count {
        font-size: 15px;
    }

    body.single-epixeirisi .business-jobs-list {
        padding-left: 0;
    }

    body.single-epixeirisi .business-jobs-card {
        width: 100%;
        padding: 16px 14px;
    }

    body.single-epixeirisi .business-jobs-card__title {
        font-size: 16px;
    }

    body.single-epixeirisi .business-jobs-card__meta {
        gap: 12px;
    }

    body.single-epixeirisi .business-jobs-card__type,
    body.single-epixeirisi .business-jobs-card__date {
        font-size: 14px;
    }
}

/** css gia about us section **/

body.single-epixeirisi .business-about-section {
    margin-top: 67px;
}
body.single-epixeirisi .business-about-section {
    width: 841px;
    min-height: 418px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
    box-sizing: border-box;
}

body.single-epixeirisi .business-about-section__title {
    margin: 0;
    padding: 52px 53px 56px 53px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
    white-space: nowrap;
}

body.single-epixeirisi .business-about-section__text {
    padding: 0 42px 49px 42px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.35;
    color: #555454;
    text-align: left;
}

body.single-epixeirisi .business-about-section__text p {
    margin: 0 0 22px 0;
}

body.single-epixeirisi .business-about-section__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1366px) {
    body.single-epixeirisi .business-about-section {
        width: 100%;
        min-height: auto;
    }

    body.single-epixeirisi .business-about-section__title {
        padding: 42px 40px 34px 40px;
        font-size: 21px;
        white-space: nowrap;
    }

    body.single-epixeirisi .business-about-section__text {
        padding: 0 40px 40px 40px;
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 1024px) {
    body.single-epixeirisi .business-about-section {
        width: 100%;
        min-height: auto;
        border-radius: 14px;
    }

    body.single-epixeirisi .business-about-section__title {
        padding: 34px 30px 24px 30px;
        font-size: 20px;
        white-space: nowrap;
    }

    body.single-epixeirisi .business-about-section__text {
        padding: 0 30px 34px 30px;
        font-size: 17px;
        line-height: 1.45;
    }

    body.single-epixeirisi .business-about-section__text p {
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    body.single-epixeirisi .business-about-section {
        width: 100%;
        min-height: auto;
        border-radius: 12px;
        margin-top: 20px;
    }

    body.single-epixeirisi .business-about-section__title {
        padding: 24px 20px 18px 20px;
        font-size: 18px;
        white-space: normal;
    }

    body.single-epixeirisi .business-about-section__text {
        padding: 0 20px 28px 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    body.single-epixeirisi .business-about-section__text p {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    body.single-epixeirisi .business-about-section__title {
        padding: 20px 16px 16px 16px;
        font-size: 17px;
        white-space: normal;
    }

    body.single-epixeirisi .business-about-section__text {
        padding: 0 16px 24px 16px;
        font-size: 14px;
        line-height: 1.5;
    }
}

/** css gia wrario leitourgias **/

body.single-epixeirisi .business-details-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 36px;
}

body.single-epixeirisi .business-details-left {
    width: calc(100% - 579px);
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
}

body.single-epixeirisi .business-about-section {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 0;
    box-sizing: border-box;
}

body.single-epixeirisi .business-info-card {
    width: 549px;
    max-width: 549px;
    flex: 0 0 549px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
}

body.single-epixeirisi .business-info-card__title {
    margin: 0;
    padding: 38px 34px 42px 34px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-info-card__title--hours {
    padding: 40px 37px 33px 37px;
}

body.single-epixeirisi .business-info-card__title--location {
    padding: 40px 37px 31px 37px;
}

body.single-epixeirisi .business-contact-list {
    padding: 0 34px 0 34px;
}

body.single-epixeirisi .business-contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

body.single-epixeirisi .business-contact-item:last-child {
    margin-bottom: 31px;
}

body.single-epixeirisi .business-contact-item__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

body.single-epixeirisi .business-contact-item__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.25;
    color: #555454;
    text-decoration: none;
    text-align: left;
    word-break: break-word;
}

body.single-epixeirisi .business-contact-item__text:hover {
    text-decoration: none;
}

body.single-epixeirisi .business-info-card__divider {
    width: calc(100% - 68px);
    height: 1px;
    margin: 0 34px;
    background: #EDE6DC;
    opacity: 1;
    transform: scaleY(0.5);
    transform-origin: center;
}

body.single-epixeirisi .business-hours-list {
    padding: 0 37px 0 37px;
}

body.single-epixeirisi .business-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 18px;
}

body.single-epixeirisi .business-hours-row:last-child {
    margin-bottom: 33px;
}

body.single-epixeirisi .business-hours-row__day {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.25;
    color: #555454;
    text-align: left;
}

body.single-epixeirisi .business-hours-row__time {
    min-width: 120px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.25;
    color: #000000;
    text-align: left;
}

body.single-epixeirisi .business-location-map {
    width: calc(100% - 74px);
    height: 236px;
    margin: 0 37px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1439px) {
    body.single-epixeirisi .business-details-row {
        gap: 24px;
    }

    body.single-epixeirisi .business-details-left {
        width: calc(100% - 453px);
        flex: 1 1 auto;
        min-width: 0;
    }

    body.single-epixeirisi .business-about-section {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    body.single-epixeirisi .business-info-card {
        width: 429px;
        max-width: 429px;
        flex: 0 0 429px;
    }
}

@media (max-width: 1366px) {
    body.single-epixeirisi .business-info-card {
        width: 429px;
        max-width: 429px;
        flex: 0 0 429px;
        min-height: auto;
    }

    body.single-epixeirisi .business-info-card__title {
        font-size: 21px;
        padding: 32px 28px 30px 28px;
    }

    body.single-epixeirisi .business-info-card__title--hours,
    body.single-epixeirisi .business-info-card__title--location {
        padding: 32px 28px 24px 28px;
    }

    body.single-epixeirisi .business-contact-list,
    body.single-epixeirisi .business-hours-list {
        padding-left: 28px;
        padding-right: 28px;
    }

    body.single-epixeirisi .business-info-card__divider {
        width: calc(100% - 56px);
        margin: 0 28px;
    }

    body.single-epixeirisi .business-contact-item__text,
    body.single-epixeirisi .business-hours-row__day {
        font-size: 17px;
    }

    body.single-epixeirisi .business-hours-row__time {
        font-size: 14px;
    }

    body.single-epixeirisi .business-location-map {
        width: calc(100% - 56px);
        margin: 0 28px;
        height: 220px;
    }
}

@media (max-width: 1199px) {
    body.single-epixeirisi .business-details-row {
        flex-direction: column;
        gap: 24px;
    }

    body.single-epixeirisi .business-details-left,
    body.single-epixeirisi .business-about-section,
    body.single-epixeirisi .business-info-card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (max-width: 1024px) {
    body.single-epixeirisi .business-info-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    body.single-epixeirisi .business-info-card__title {
        font-size: 20px;
        padding: 28px 24px 24px 24px;
    }

    body.single-epixeirisi .business-info-card__title--hours,
    body.single-epixeirisi .business-info-card__title--location {
        padding: 28px 24px 22px 24px;
    }

    body.single-epixeirisi .business-contact-list,
    body.single-epixeirisi .business-hours-list {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.single-epixeirisi .business-contact-item {
        gap: 16px;
        margin-bottom: 20px;
    }

    body.single-epixeirisi .business-contact-item__text,
    body.single-epixeirisi .business-hours-row__day {
        font-size: 16px;
    }

    body.single-epixeirisi .business-hours-row__time {
        min-width: 95px;
        font-size: 14px;
    }

    body.single-epixeirisi .business-info-card__divider {
        width: calc(100% - 48px);
        margin: 0 24px;
    }

    body.single-epixeirisi .business-location-map {
        width: calc(100% - 48px);
        margin: 0 24px;
        height: 210px;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    body.single-epixeirisi .business-details-row {
        gap: 20px;
        margin-top: 20px;
    }

    body.single-epixeirisi .business-info-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        background: #FFFFFF;
        border: 1px solid #EDE6DC;
        border-radius: 12px;
        padding-bottom: 24px;
    }

    body.single-epixeirisi .business-info-card__title {
        font-size: 18px;
        padding: 24px 18px 18px 18px;
    }

    body.single-epixeirisi .business-info-card__title--hours,
    body.single-epixeirisi .business-info-card__title--location {
        padding: 24px 18px 18px 18px;
    }

    body.single-epixeirisi .business-contact-list,
    body.single-epixeirisi .business-hours-list {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.single-epixeirisi .business-contact-item {
        gap: 14px;
        margin-bottom: 18px;
    }

    body.single-epixeirisi .business-contact-item__icon {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    body.single-epixeirisi .business-contact-item__text,
    body.single-epixeirisi .business-hours-row__day {
        font-size: 15px;
    }

    body.single-epixeirisi .business-hours-row {
        gap: 12px;
        margin-bottom: 14px;
    }

    body.single-epixeirisi .business-hours-row__time {
        min-width: 84px;
        font-size: 13px;
    }

    body.single-epixeirisi .business-info-card__divider {
        width: calc(100% - 36px);
        margin: 0 18px;
    }

    body.single-epixeirisi .business-location-map {
        width: calc(100% - 36px);
        margin: 0 18px;
        height: 190px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    body.single-epixeirisi .business-info-card__title {
        font-size: 17px;
        padding: 20px 16px 16px 16px;
    }

    body.single-epixeirisi .business-info-card__title--hours,
    body.single-epixeirisi .business-info-card__title--location {
        padding: 20px 16px 16px 16px;
    }

    body.single-epixeirisi .business-contact-list,
    body.single-epixeirisi .business-hours-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.single-epixeirisi .business-contact-item__text,
    body.single-epixeirisi .business-hours-row__day {
        font-size: 14px;
    }

    body.single-epixeirisi .business-hours-row__time {
        min-width: 78px;
        font-size: 12px;
    }

    body.single-epixeirisi .business-info-card__divider {
        width: calc(100% - 32px);
        margin: 0 16px;
    }

    body.single-epixeirisi .business-location-map {
        width: calc(100% - 32px);
        margin: 0 16px;
        height: 170px;
    }
}

/** css gia galery display **/

body.single-epixeirisi .business-gallery-section {
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.single-epixeirisi .business-gallery-main {
    width: 100%;
    max-width: 100%;
    height: 442px;
    margin-bottom: 23px;
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
}

body.single-epixeirisi .business-gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.single-epixeirisi .business-gallery-thumbs-box {
    width: 100%;
    max-width: 100%;
    height: 258px;
    background: #D5D5D5;
    border: 2px solid #FFFFFF;
    border-radius: 9px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 36px;
    overflow: hidden;
}

body.single-epixeirisi .business-gallery-arrow {
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    color: #000000;
    font-size: 38px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex: 0 0 20px;
}

body.single-epixeirisi .business-gallery-arrow:hover,
body.single-epixeirisi .business-gallery-arrow:focus {
    color: #000000;
    background: transparent;
    outline: none;
}

body.single-epixeirisi .business-gallery-thumbs-track-wrap {
    flex: 1 1 auto;
    overflow: hidden;
    margin: 0 37px;
    min-width: 0;
}

body.single-epixeirisi .business-gallery-thumbs-track {
    display: flex;
    align-items: center;
    gap: 19px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.single-epixeirisi .business-gallery-thumbs-track::-webkit-scrollbar {
    display: none;
}

body.single-epixeirisi .business-gallery-thumb {
    width: 136px;
    height: 135px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 136px;
    overflow: hidden;
}

body.single-epixeirisi .business-gallery-thumb-image {
    width: 136px;
    height: 135px;
    object-fit: cover;
    display: block;
}

body.single-epixeirisi .business-gallery-thumb.is-active {
    outline: 2px solid #676724;
    outline-offset: 0;
}

@media (max-width: 1439px) {
    body.single-epixeirisi .business-gallery-section {
        width: 100%;
    }

    body.single-epixeirisi .business-gallery-main {
        width: 100%;
        height: auto;
        aspect-ratio: 837 / 442;
    }

    body.single-epixeirisi .business-gallery-thumbs-box {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    body.single-epixeirisi .business-gallery-section {
        margin-top: 32px;
    }

    body.single-epixeirisi .business-gallery-thumbs-box {
        height: 220px;
        padding: 40px 24px;
    }

    body.single-epixeirisi .business-gallery-thumbs-track-wrap {
        margin: 0 24px;
    }

    body.single-epixeirisi .business-gallery-thumb,
    body.single-epixeirisi .business-gallery-thumb-image {
        width: 120px;
        height: 119px;
        flex-basis: 120px;
    }
}

@media (max-width: 767px) {
    body.single-epixeirisi .business-gallery-section {
        margin-top: 24px;
    }

    body.single-epixeirisi .business-gallery-main {
        margin-bottom: 16px;
    }

    body.single-epixeirisi .business-gallery-thumbs-box {
        height: 160px;
        padding: 24px 14px;
        border-radius: 9px;
    }

    body.single-epixeirisi .business-gallery-thumbs-track-wrap {
        margin: 0 14px;
    }

    body.single-epixeirisi .business-gallery-thumbs-track {
        gap: 12px;
    }

    body.single-epixeirisi .business-gallery-thumb,
    body.single-epixeirisi .business-gallery-thumb-image {
        width: 88px;
        height: 88px;
        flex-basis: 88px;
    }

    body.single-epixeirisi .business-gallery-arrow {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    body.single-epixeirisi .business-gallery-thumbs-box {
        height: 140px;
        padding: 18px 10px;
    }

    body.single-epixeirisi .business-gallery-thumbs-track-wrap {
        margin: 0 10px;
    }

    body.single-epixeirisi .business-gallery-thumbs-track {
        gap: 10px;
    }

    body.single-epixeirisi .business-gallery-thumb,
    body.single-epixeirisi .business-gallery-thumb-image {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    body.single-epixeirisi .business-gallery-arrow {
        font-size: 24px;
    }
}

/** page-katalogos-epixeiriseon.php **/

body.page-template-page-katalogos-epixeiriseon .business-archive-page {
    background: #FAFAFA;
    min-height: 100vh;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-hero {
    width: 100%;
    min-height: 423px;
    background: #A5A861;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-hero__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-hero__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-section {
    margin-top: 52px;
    margin-bottom: 40px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-form {
    width: 858px;
    height: 55px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 6px 18px;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-field {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-icon {
    width: 13.66px;
    height: 13.66px;
    color: #BEBEBE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 13.66px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-icon svg {
    width: 13.66px;
    height: 13.66px;
    display: block;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-input {
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    color: #BEBEBE;
    padding: 0;
    margin: 0;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-input::placeholder {
    color: #BEBEBE;
    opacity: 1;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-button {
    width: 130px;
    height: 43px;
    border: 0;
    border-radius: 37px;
    background: #2D3154;
    color: #FFFFFF;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    flex: 0 0 130px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-search-button:hover,
body.page-template-page-katalogos-epixeiriseon .business-archive-search-button:focus {
    background: #252947;
    color: #FFFFFF;
    outline: none;
}
/** filters + cards section **/

body.page-template-page-katalogos-epixeiriseon .business-archive-filters-section {
    padding-bottom: 55px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filters-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filters-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filter-button,
body.page-template-page-katalogos-epixeiriseon .business-archive-category-filter > .business-archive-filter-button {
    width: 228px;
    height: 48px;
    border: 1px solid #2D3154;
    border-radius: 8px;
    background: #FAFAFA;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #2D3154;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 24px;
    box-sizing: border-box;
    cursor: pointer;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filter-button__arrow {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    position: relative;
    flex: 0 0 12px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filter-button__arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    border-right: 2px solid #2D3154;
    border-bottom: 2px solid #2D3154;
    transform: rotate(45deg) translateY(-1px);
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-filter-button--disabled {
    cursor: default;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-category-filter {
    position: relative;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-category-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 228px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    box-sizing: border-box;
    display: none;
    z-index: 20;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-category-dropdown.is-open {
    display: block;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-category-option {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #2D3154;
    background: transparent;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-category-option:hover,
body.page-template-page-katalogos-epixeiriseon .business-archive-category-option.is-active {
    background: #F1F1F1;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-divider {
    width: 100%;
    height: 1px;
    background: #2D3154;
    margin-bottom: 56px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card {
    width: 100%;
    max-width: 485px;
    min-height: 258px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__top {
    background: #FFFFFF;
    padding: 25px 32px 24px 32px;
    flex: 1 1 auto;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__image-col {
    flex: 0 0 89px;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__image {
    width: 89px;
    height: 73px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__content {
    flex: 1 1 auto;
    min-width: 0;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__title {
    margin: 0 0 12px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 29px;
    min-width: 115px;
    padding: 0 12px;
    border-radius: 999px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}
body.page-template-page-katalogos-epixeiriseon .business-archive-location-filter {
    position: relative;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-location-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 228px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    box-sizing: border-box;
    display: none;
    z-index: 20;
    max-height: 360px;
    overflow-y: auto;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-location-dropdown.is-open {
    display: block;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-location-option {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #2D3154;
    background: transparent;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-location-option:hover,
body.page-template-page-katalogos-epixeiriseon .business-archive-location-option.is-active {
    background: #F1F1F1;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__excerpt {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.35;
    color: #484747;
    text-align: left;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__bottom {
    height: 57px;
    background: #2D3154;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px 0 32px;
    box-sizing: border-box;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__location-link,
body.page-template-page-katalogos-epixeiriseon .business-archive-card__location-link--disabled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__location-link--disabled {
    pointer-events: none;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__location-icon {
    width: 12px;
    height: 16px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

body.page-template-page-katalogos-epixeiriseon .business-archive-card__arrow-link {
    width: 20px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
    overflow: hidden;
}

body.page-template-page-katalogos-epixeiriseon .business-archive-no-results {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #2D3154;
}
body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive.category-pill--elaiolado {
    background: #676724;
}

body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive.category-pill--tyrokomika {
    background: #C38A0A;
}

body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive.category-pill--krasi-pota {
    background: #9F2F11;
}

body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive.category-pill--endysi {
    background: #181F6C;
}

body.page-template-page-katalogos-epixeiriseon .business-category-badge--archive.category-pill--ypodysi {
    background: #429EAA;
}



@media (max-width: 1199px) {
    body.page-template-page-katalogos-epixeiriseon .business-archive-filters-wrap {
        padding: 0 24px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.page-template-page-katalogos-epixeiriseon .business-archive-filters-wrap {
        padding: 0 16px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-filter-button,
    body.page-template-page-katalogos-epixeiriseon .business-archive-category-filter > .business-archive-filter-button,
    body.page-template-page-katalogos-epixeiriseon .business-archive-category-dropdown {
        width: 100%;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-divider {
        margin-bottom: 28px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-cards-grid {
        grid-template-columns: 1fr;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card {
        max-width: 100%;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card__top {
        padding: 20px 18px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card__head {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card__title {
        font-size: 18px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card__excerpt {
        font-size: 15px;
    }

    body.page-template-page-katalogos-epixeiriseon .business-archive-card__bottom {
        padding: 0 18px;
    }
}

/** css gia single thesis ergasias **/

body.single-thesi_ergasias .job-single-page {
    background: #FAFAFA;
    min-height: 100vh;
    padding-top: 49px;
    padding-bottom: 60px;
}

body.single-thesi_ergasias .job-single-wrapper {
    max-width: 1439px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

body.single-thesi_ergasias .job-back-row {
    margin-bottom: 34px;
}

body.single-thesi_ergasias .job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
    color: #555454;
}

body.single-thesi_ergasias .job-back-arrow {
    font-size: 30px;
    line-height: 1;
}

body.single-thesi_ergasias .job-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 38px;
    padding: 38px 36px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 20px;
    box-sizing: border-box;
}

body.single-thesi_ergasias .job-hero-card__image-col {
    flex: 0 0 auto;
}

body.single-thesi_ergasias .job-hero-image {
    width: 205px;
    height: 169px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

body.single-thesi_ergasias .job-hero-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.single-thesi_ergasias .job-hero-title {
    margin: 0 0 12px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-location-link,
body.single-thesi_ergasias .job-location-link--disabled {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
    margin-bottom: 12px;
}

body.single-thesi_ergasias .job-location-link:hover {
    text-decoration: none;
}

body.single-thesi_ergasias .job-location-icon {
    width: 18px;
    height: 22px;
    display: block;
    object-fit: contain;
    flex: 0 0 18px;
}

body.single-thesi_ergasias .job-type-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
}

body.single-thesi_ergasias .job-type-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    flex: 0 0 18px;
}

body.single-thesi_ergasias .job-type-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
}

body.single-thesi_ergasias .job-hero-card__action {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-self: flex-end;
    padding-bottom: 49px;
}

body.single-thesi_ergasias .job-call-btn {
    min-width: 158px;
    height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #5480D3;
    border-radius: 12px;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

body.single-thesi_ergasias .job-call-btn__icon {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex: 0 0 16px;
}

body.single-thesi_ergasias .job-call-btn__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    white-space: nowrap;
}

body.single-thesi_ergasias .job-details-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 36px;
}

body.single-thesi_ergasias .job-details-left {
    width: 841px;
    flex: 0 0 841px;
    min-width: 0;
}

body.single-thesi_ergasias .job-about-section {
    width: 100%;
    min-height: 418px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
    box-sizing: border-box;
    margin-top: 0;
}

body.single-thesi_ergasias .job-about-section__title {
    margin: 0;
    padding: 52px 42px 34px 53px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
    white-space: nowrap;
}

body.single-thesi_ergasias .job-about-section__text {
    padding: 0 42px 49px 42px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.35;
    color: #555454;
    text-align: left;
    box-sizing: border-box;
}

body.single-thesi_ergasias .job-about-section__text p {
    margin: 0 0 24px 0;
}

body.single-thesi_ergasias .job-about-section__text p:last-child {
    margin-bottom: 0;
}

body.single-thesi_ergasias .job-info-card {
    width: 549px;
    min-height: 884px;
    flex: 0 0 549px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
    box-sizing: border-box;
    padding-bottom: 34px;
}

body.single-thesi_ergasias .job-info-card__title {
    margin: 0;
    padding: 38px 34px 42px 34px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-info-card__title--hours {
    padding: 40px 37px 33px 37px;
}

body.single-thesi_ergasias .job-info-card__title--location {
    padding: 40px 37px 31px 37px;
}

body.single-thesi_ergasias .job-contact-list {
    padding: 0 34px 0 34px;
}

body.single-thesi_ergasias .job-contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

body.single-thesi_ergasias .job-contact-item:last-child {
    margin-bottom: 31px;
}

body.single-thesi_ergasias .job-contact-item__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

body.single-thesi_ergasias .job-contact-item__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.25;
    color: #555454;
    text-decoration: none;
    text-align: left;
    word-break: break-word;
}

body.single-thesi_ergasias .job-info-card__divider {
    width: calc(100% - 68px);
    height: 1px;
    margin: 0 34px;
    background: #EDE6DC;
    opacity: 1;
    transform: scaleY(0.5);
    transform-origin: center;
}

body.single-thesi_ergasias .job-hours-list {
    padding: 0 37px 0 37px;
}

body.single-thesi_ergasias .job-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 18px;
}

body.single-thesi_ergasias .job-hours-row:last-child {
    margin-bottom: 33px;
}

body.single-thesi_ergasias .job-hours-row__day {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.25;
    color: #555454;
    text-align: left;
}

body.single-thesi_ergasias .job-hours-row__time {
    min-width: 120px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.25;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-location-map {
    width: calc(100% - 74px);
    height: 236px;
    margin: 0 37px;
    border-radius: 20px;
    overflow: hidden;
}

body.single-thesi_ergasias .job-related-section {
    width: 100%;
    min-height: 353px;
    background: #FFFFFF;
    border: 1px solid #EDE6DC;
    border-radius: 14px;
    box-sizing: border-box;
    margin-top: 28px;
    padding: 18px 20px 24px 20px;
}

body.single-thesi_ergasias .job-related-section__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 0 24px 0;
}

body.single-thesi_ergasias .job-related-section__icon {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}

body.single-thesi_ergasias .job-related-section__title {
    margin: 0 0 6px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-related-section__count {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: #7B7070;
    text-align: left;
}

body.single-thesi_ergasias .job-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 6px;
}

body.single-thesi_ergasias .job-related-card {
    width: 607px;
    max-width: 100%;
    min-height: 83px;
    background: #DDE7FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 18px 22px;
    box-sizing: border-box;
}

body.single-thesi_ergasias .job-related-card__title {
    margin: 0 0 8px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-related-card__meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

body.single-thesi_ergasias .job-related-card__type,
body.single-thesi_ergasias .job-related-card__date {
    font-family: 'Geologica', sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

body.single-thesi_ergasias .job-related-card__arrow {
    width: 19px;
    height: 11.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 1439px) {
    body.single-thesi_ergasias .job-details-row {
        gap: 24px;
    }

    body.single-thesi_ergasias .job-details-left {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    body.single-thesi_ergasias .job-info-card {
        width: 549px;
        flex: 0 0 549px;
    }

    body.single-thesi_ergasias .job-hero-card__action {
        padding-bottom: 49px;
    }
}

@media (max-width: 1199px) {
    body.single-thesi_ergasias .job-details-row {
        flex-direction: column;
        gap: 24px;
    }

    body.single-thesi_ergasias .job-details-left,
    body.single-thesi_ergasias .job-info-card {
        width: 100%;
        flex: 1 1 auto;
    }

    body.single-thesi_ergasias .job-hero-card {
        flex-wrap: wrap;
        gap: 24px;
    }

    body.single-thesi_ergasias .job-hero-card__content {
        flex: 1 1 calc(100% - 240px);
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    body.single-thesi_ergasias .job-hero-card__action {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
        padding-left: 22px;
        padding-right: 22px;
        padding-bottom: 30px;
        justify-content: flex-start;
        align-self: flex-start;
    }

    body.single-thesi_ergasias .job-call-btn {
        min-width: 158px;
        width: auto;
    }
}

@media (max-width: 767px) {
    body.single-thesi_ergasias .job-single-page {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    body.single-thesi_ergasias .job-single-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.single-thesi_ergasias .job-back-row {
        margin-bottom: 20px;
    }

    body.single-thesi_ergasias .job-back-link {
        font-size: 16px;
    }

    body.single-thesi_ergasias .job-hero-card {
        border-radius: 14px;
        gap: 18px;
    }

    body.single-thesi_ergasias .job-hero-card__image-col {
        padding: 18px 16px 0 16px;
    }

    body.single-thesi_ergasias .job-hero-image {
        width: 120px;
        height: 95px;
        border-radius: 12px;
    }

    body.single-thesi_ergasias .job-hero-card__content {
        padding: 18px 16px 16px 16px;
        width: 100%;
        flex: 0 0 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    body.single-thesi_ergasias .job-hero-title {
        font-size: 22px;
    }

    body.single-thesi_ergasias .job-location-link,
    body.single-thesi_ergasias .job-location-link--disabled,
    body.single-thesi_ergasias .job-type-row,
    body.single-thesi_ergasias .job-type-text {
        font-size: 15px;
    }

    body.single-thesi_ergasias .job-location-icon {
        width: 16px;
        height: 20px;
        flex: 0 0 16px;
    }

    body.single-thesi_ergasias .job-type-icon {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    body.single-thesi_ergasias .job-hero-card__action {
        width: 100%;
        margin-left: 0;
        padding: 0 16px 18px 16px;
        justify-content: flex-start;
        align-self: flex-start;
    }

    body.single-thesi_ergasias .job-call-btn {
        min-width: 150px;
        width: auto;
        height: 46px;
        gap: 10px;
        padding: 0 18px;
    }

    body.single-thesi_ergasias .job-call-btn__icon {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    body.single-thesi_ergasias .job-call-btn__text {
        font-size: 14px;
    }

    body.single-thesi_ergasias .job-about-section,
    body.single-thesi_ergasias .job-info-card,
    body.single-thesi_ergasias .job-related-section {
        border-radius: 12px;
    }

    body.single-thesi_ergasias .job-about-section__title,
    body.single-thesi_ergasias .job-info-card__title {
        font-size: 20px;
        padding-left: 18px;
        padding-right: 18px;
    }

    body.single-thesi_ergasias .job-about-section__title {
        padding-top: 28px;
        padding-bottom: 20px;
    }

    body.single-thesi_ergasias .job-about-section__text {
        padding: 0 18px 24px 18px;
        font-size: 16px;
    }

    body.single-thesi_ergasias .job-contact-list,
    body.single-thesi_ergasias .job-hours-list {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.single-thesi_ergasias .job-contact-item {
        gap: 14px;
        margin-bottom: 18px;
    }

    body.single-thesi_ergasias .job-contact-item__text,
    body.single-thesi_ergasias .job-hours-row__day {
        font-size: 15px;
    }

    body.single-thesi_ergasias .job-hours-row__time {
        min-width: 85px;
        font-size: 13px;
    }

    body.single-thesi_ergasias .job-info-card__divider {
        width: calc(100% - 36px);
        margin: 0 18px;
    }

    body.single-thesi_ergasias .job-location-map {
        width: calc(100% - 36px);
        height: 190px;
        margin: 0 18px;
        border-radius: 14px;
    }

    body.single-thesi_ergasias .job-related-section {
        padding: 18px 14px 18px 14px;
    }

    body.single-thesi_ergasias .job-related-section__header {
        gap: 12px;
        padding-bottom: 18px;
    }

    body.single-thesi_ergasias .job-related-section__icon {
        width: 44px;
        height: 44px;
    }

    body.single-thesi_ergasias .job-related-section__title {
        font-size: 20px;
    }

    body.single-thesi_ergasias .job-related-section__count {
        font-size: 15px;
    }

    body.single-thesi_ergasias .job-related-list {
        padding-left: 0;
    }

    body.single-thesi_ergasias .job-related-card {
        width: 100%;
        padding: 16px 14px;
    }

    body.single-thesi_ergasias .job-related-card__title {
        font-size: 16px;
    }

    body.single-thesi_ergasias .job-related-card__meta {
        gap: 12px;
    }

    body.single-thesi_ergasias .job-related-card__type,
    body.single-thesi_ergasias .job-related-card__date {
        font-size: 14px;
    }
}

/** page-theseis-ergasias.php **/

body.page-template-page-theseis-ergasias .jobs-archive-page {
    background: #FAFAFA;
    min-height: 100vh;
    padding-top: 42px;
    padding-bottom: 48px;
}

body.page-template-page-theseis-ergasias .jobs-archive-wrapper {
    max-width: 1439px;
    margin: 0 auto;
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
}

body.page-template-page-theseis-ergasias .jobs-archive-back-row {
    margin-bottom: 34px;
}

body.page-template-page-theseis-ergasias .jobs-archive-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #555454;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
}

body.page-template-page-theseis-ergasias .jobs-archive-back-link:hover,
body.page-template-page-theseis-ergasias .jobs-archive-back-link:focus,
body.page-template-page-theseis-ergasias .jobs-archive-back-link:visited {
    color: #555454;
    text-decoration: none;
}

body.page-template-page-theseis-ergasias .jobs-archive-back-arrow {
    font-size: 30px;
    line-height: 1;
    color: #555454;
}

body.page-template-page-theseis-ergasias .jobs-archive-header {
    margin-bottom: 42px;
}

body.page-template-page-theseis-ergasias .jobs-archive-title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: #20212C;
}

body.page-template-page-theseis-ergasias .jobs-archive-filters-section {
    margin-bottom: 22px;
}

body.page-template-page-theseis-ergasias .jobs-archive-filters-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

body.page-template-page-theseis-ergasias .jobs-archive-filter {
    position: relative;
}

body.page-template-page-theseis-ergasias .jobs-archive-filter-button {
    width: 177px;
    height: 48px;
    background: #FAFAFA;
    border: 1px solid #2D3154;
    border-radius: 7px;
    padding: 0 22px 0 25px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #2D3154;
}

body.page-template-page-theseis-ergasias .jobs-archive-filter-button__arrow {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    position: relative;
    flex: 0 0 16px;
}

body.page-template-page-theseis-ergasias .jobs-archive-filter-button__arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    border-right: 2px solid #2D3154;
    border-bottom: 2px solid #2D3154;
    transform: rotate(45deg) translateY(-2px);
    box-sizing: border-box;
}

body.page-template-page-theseis-ergasias .jobs-archive-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 220px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    box-sizing: border-box;
    display: none;
    z-index: 20;
    max-height: 320px;
    overflow-y: auto;
}

body.page-template-page-theseis-ergasias .jobs-archive-dropdown.is-open {
    display: block;
}

body.page-template-page-theseis-ergasias .jobs-archive-dropdown-option {
    display: block;
    padding: 11px 16px;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.2;
    color: #2D3154;
    background: transparent;
}

body.page-template-page-theseis-ergasias .jobs-archive-dropdown-option:hover,
body.page-template-page-theseis-ergasias .jobs-archive-dropdown-option.is-active {
    background: #F1F1F1;
}

body.page-template-page-theseis-ergasias .jobs-archive-divider {
    width: 100%;
    height: 1px;
    background: #2D3154;
}

body.page-template-page-theseis-ergasias .jobs-archive-cards-section {
    margin-top: 24px;
}

body.page-template-page-theseis-ergasias .jobs-archive-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

body.page-template-page-theseis-ergasias .jobs-archive-card {
    width: 100%;
    max-width: 365px;
    height: 355px;
    background: #DDE7FA;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0 auto;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__top {
    flex: 1 1 auto;
    padding: 30px 18px 0 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__excerpt {
    margin-top: 24px;
    margin-bottom: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    color: #70707B;
    text-align: left;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
        "business location"
        "type type";
    column-gap: 14px;
    row-gap: 8px;
    align-items: center;
    margin-top: auto;
    padding-top: 34px;
    padding-bottom: 18px;
    width: 100%;
    min-width: 0;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    color: #3A3A3C;
    text-align: left;
    text-decoration: none;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:link,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:visited,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:hover,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:focus,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:active {
    color: #3A3A3C;
    text-decoration: none;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row span,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:link span,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:visited span,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:hover span,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:focus span,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row:active span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3A3A3C;
    text-decoration: none;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row--business {
    grid-area: business;
    justify-self: start;
    min-width: 0;
    width: 100%;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row--location {
    grid-area: location;
    justify-self: start;
    min-width: 0;
    width: 100%;
    white-space: nowrap;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row--type {
    grid-area: type;
    justify-self: start;
    width: 100%;
    white-space: nowrap;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-icon {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    flex: 0 0 30px;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__meta-icon--business,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-icon--location,
body.page-template-page-theseis-ergasias .jobs-archive-card__meta-icon--type {
    width: 30px;
    height: 30px;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__bottom {
    height: 46px;
    background: #5480D3;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__bottom-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__bottom-link span:first-child {
    padding-left: 50px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}

body.page-template-page-theseis-ergasias .jobs-archive-card__bottom-arrow {
    padding-right: 50px;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}

body.page-template-page-theseis-ergasias .jobs-archive-no-results {
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    color: #3A3A3C;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #F0F0F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222B62;
    text-decoration: none;
    font-size: 28px;
    line-height: 1;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__arrow:hover {
    background: #222B62;
    color: #FFFFFF;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__arrow.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers {
    background: #F0F0F0;
    border-radius: 15px;
    padding: 0 10px;
    min-height: 45px;
    display: flex;
    align-items: center;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers .page-numbers {
    min-width: 36px;
    height: 36px;
    margin: 0 2px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #3A3A3C;
}

body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers .page-numbers.current,
body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers .page-numbers:hover {
    background: #222B62;
    color: #FFFFFF;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
    body.page-template-page-theseis-ergasias .jobs-archive-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-back-link {
        font-size: 20px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-back-arrow {
        font-size: 28px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 1199px) {
    body.page-template-page-theseis-ergasias .jobs-archive-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-filter-button {
        width: 165px;
        height: 46px;
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    body.page-template-page-theseis-ergasias .jobs-archive-page {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-back-row {
        margin-bottom: 22px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-back-link {
        font-size: 16px;
        gap: 7px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-back-arrow {
        font-size: 24px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-header {
        margin-bottom: 30px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-title {
        font-size: 26px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-filters-row {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 18px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-filter-button {
        width: 170px;
        height: 44px;
        font-size: 14px;
        padding-left: 18px;
        padding-right: 18px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-dropdown {
        width: 210px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-dropdown-option {
        font-size: 14px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card {
        max-width: 365px;
        width: 100%;
        height: 355px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__top {
        padding: 24px 16px 0 16px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__title {
        font-size: 18px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__excerpt {
        margin-top: 18px;
        font-size: 15px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__meta-list {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 12px;
        row-gap: 8px;
        padding-top: 24px;
        padding-bottom: 16px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__meta-row {
        font-size: 14px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__bottom-link span:first-child {
        padding-left: 24px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-card__bottom-arrow {
        padding-right: 24px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-pagination {
        margin-top: 28px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-pagination__inner {
        gap: 8px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-pagination__arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers {
        min-height: 40px;
        padding: 0 6px;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-pagination__numbers .page-numbers {
        min-width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body.page-template-page-theseis-ergasias .jobs-archive-filter {
        width: 100%;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-filter-button {
        width: 100%;
        max-width: 100%;
    }

    body.page-template-page-theseis-ergasias .jobs-archive-dropdown {
        width: 100%;
    }
}

/** 404 page **/

.error404 .mylopotamos-404-page {
    width: 100%;
    min-height: calc(100vh - 1px);
    background-image: url('https://development2.crowdpolicy.com/mylopotamos-online/wp-content/uploads/2026/04/Group-19422.svg');
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 80px 20px;
}

.error404 .mylopotamos-404-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error404 .mylopotamos-404-box {
    width: 860px;
    max-width: 100%;
    height: 427px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.error404 .mylopotamos-404-text {
    padding-top: 80px;
    padding-bottom: 32px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
    text-align: center;
}

.error404 .mylopotamos-404-number {
    padding-bottom: 43px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    color: #222B62;
    text-align: center;
}

.error404 .mylopotamos-404-button {
    width: 150px;
    height: 40px;
    background: #676724;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.error404 .mylopotamos-404-button:hover,
.error404 .mylopotamos-404-button:focus {
    background: #222B62;
    color: #FFFFFF;
    text-decoration: none;
}

/** responsive **/

@media (max-width: 991px) {
    .error404 .mylopotamos-404-page {
        padding: 70px 24px;
    }

    .error404 .mylopotamos-404-box {
        width: 100%;
        max-width: 680px;
        height: 380px;
    }

    .error404 .mylopotamos-404-text {
        padding-top: 68px;
        padding-bottom: 28px;
        font-size: 21px;
    }

    .error404 .mylopotamos-404-number {
        padding-bottom: 38px;
        font-size: 88px;
    }
}

@media (max-width: 767px) {
    .error404 .mylopotamos-404-page {
        min-height: 70vh;
        padding: 56px 16px;
        background-size: auto;
    }

    .error404 .mylopotamos-404-box {
        height: auto;
        min-height: 330px;
        border-radius: 18px;
        padding: 0 20px 58px 20px;
    }

    .error404 .mylopotamos-404-text {
        padding-top: 58px;
        padding-bottom: 24px;
        font-size: 19px;
    }

    .error404 .mylopotamos-404-number {
        padding-bottom: 34px;
        font-size: 78px;
    }

    .error404 .mylopotamos-404-button {
        width: 150px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .error404 .mylopotamos-404-page {
        padding: 44px 14px;
    }

    .error404 .mylopotamos-404-box {
        min-height: 300px;
        border-radius: 16px;
        padding-bottom: 46px;
    }

    .error404 .mylopotamos-404-text {
        padding-top: 48px;
        padding-bottom: 20px;
        font-size: 18px;
    }

    .error404 .mylopotamos-404-number {
        padding-bottom: 30px;
        font-size: 68px;
    }
}

/** Work From Mylopotamos page **/

body.page-template-page-work-from-mylopotamos .work-mylopotamos-page {
    width: 100%;
    background: #FAFAFA;
    min-height: 100vh;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero {
    width: 100%;
    height: 423px;
    background: #A1A761;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-content {
    width: 100%;
    background: #FAFAFA;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-row {
    padding: 69px 0 71px 0;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
    color: #555454;
    text-decoration: none;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-link:hover,
body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-link:focus {
    color: #555454;
    text-decoration: none;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-arrow {
    font-size: 28px;
    line-height: 1;
    color: #555454;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-intro {
    padding: 0;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-title {
    margin: 0 0 5px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.25;
    color: #929A4E;
    text-align: left;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-subtitle {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.3;
    color: #222B62;
    text-align: left;
}

/** desktop two columns **/

body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
    display: grid;
    grid-template-columns: minmax(0, 720px) 612px;
    column-gap: 120px;
    align-items: flex-start;
    padding: 57px 0 54px 0;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-list-col {
    width: 100%;
    min-width: 0;
    max-width: 720px;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 24px;
    align-items: flex-start;
    margin-bottom: 30px;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature:last-child {
    margin-bottom: 0;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    margin-top: 3px;
    flex: 0 0 20px;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content {
    min-width: 0;
    width: 100%;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content h3 {
    margin: 0 0 5px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    color: #222B62;
    text-align: left;
    white-space: nowrap;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content p {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.3;
    color: #555454;
    text-align: left;
    white-space: nowrap;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-image-col {
    width: 612px;
    min-width: 0;
    justify-self: end;
    box-sizing: border-box;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
    width: 612px;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section {
    padding: 0 0 65px 0;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.35;
    color: #555454;
    text-align: left;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section p {
    margin: 0 0 22px 0;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section p:last-child {
    margin-bottom: 0;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section ul {
    margin: 0 0 22px 0;
    padding-left: 20px;
}

body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section li {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.25;
    color: #555454;
}

/** responsive **/

@media (max-width: 1439px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        grid-template-columns: minmax(0, 1fr) 520px;
        column-gap: 80px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-list-col {
        max-width: none;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-image-col,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        width: 520px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        height: 383px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content h3,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content p {
        font-size: 18px;
    }
}

/** fix for 1350px to 1200px: smaller image, no overlap **/

@media (max-width: 1350px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        grid-template-columns: minmax(0, 1fr) 460px;
        column-gap: 56px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-list-col {
        max-width: none;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-image-col,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        width: 460px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        height: 338px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content h3,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content p {
        white-space: normal;
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero {
        height: 340px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-row {
        padding-top: 54px;
        padding-bottom: 48px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        grid-template-columns: minmax(0, 1fr) 390px;
        column-gap: 36px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-title {
        font-size: 25px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-subtitle {
        font-size: 21px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content h3,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content p {
        white-space: normal;
        font-size: 17px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section li {
        font-size: 17px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-image-col,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        width: 390px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        height: 286px;
    }
}

@media (max-width: 991px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero {
        height: 280px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__title {
        font-size: 24px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-row {
        padding-top: 42px;
        padding-bottom: 36px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 40px;
        padding-bottom: 42px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-list-col {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-image-col {
        order: 0;
        width: 100%;
        min-width: 0;
        flex: none;
        margin-bottom: 36px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-image {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero {
        height: 220px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__title {
        font-size: 22px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-row {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-link {
        font-size: 17px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-title {
        font-size: 22px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-subtitle {
        font-size: 18px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        padding-top: 32px;
        padding-bottom: 36px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature {
        grid-template-columns: 18px minmax(0, 1fr);
        column-gap: 14px;
        margin-bottom: 24px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__icon {
        width: 18px;
        height: 18px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content h3 {
        font-size: 17px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-feature__content p,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section li {
        font-size: 16px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-text-section {
        padding-bottom: 44px;
    }
}

@media (max-width: 480px) {
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero {
        height: 180px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__inner,
    body.page-template-page-work-from-mylopotamos .work-mylopotamos-wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-hero__title {
        font-size: 20px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-back-row {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-main-title {
        font-size: 20px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-subtitle {
        font-size: 16px;
    }

    body.page-template-page-work-from-mylopotamos .work-mylopotamos-columns {
        padding-top: 28px;
        padding-bottom: 32px;
    }
}

/* =========================
   SINGLE TOURISM GUIDE
========================= */

.tourism-guide-single {
    width: 100%;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Hero */

.tourism-guide-hero {
    width: 100%;
    height: 423px;
    background: #A1A761;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.tourism-guide-hero__inner {
    width: 100%;
    max-width: 1439px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.tourism-guide-hero__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

/* Intro */

.tourism-guide-intro {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

.tourism-guide-intro__inner {
    width: 100%;
    max-width: 1439px;
    margin: 0 auto;
    padding: 78px 80px 31px 80px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 686px 500px;
    column-gap: 130px;
    align-items: center;
    justify-content: center;
}

.tourism-guide-intro__content {
    width: 686px;
    max-width: 100%;
    min-width: 0;
}

.tourism-guide-intro__title {
    margin: 0 0 20px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
    color: #2C2C2C;
}

.tourism-guide-intro__text {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    text-align: left;
    color: #5C5C5C;
}

.tourism-guide-intro__text p {
    margin: 0 0 22px 0;
}

.tourism-guide-intro__text p:last-child {
    margin-bottom: 0;
}

.tourism-guide-intro__text strong {
    font-weight: 600;
    color: #000000;
}

.tourism-guide-intro__image-wrap {
    width: 500px;
    height: 395px;
    position: relative;
    overflow: hidden;
}

.tourism-guide-intro__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Main content */

.tourism-guide-content {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

.tourism-guide-content__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 70px 0;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    text-align: left;
    color: #5C5C5C;
}

.tourism-guide-content__inner h1,
.tourism-guide-content__inner h2,
.tourism-guide-content__inner h3,
.tourism-guide-content__inner h4,
.tourism-guide-content__inner h5,
.tourism-guide-content__inner h6 {
    margin: 0 0 18px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
    color: #2C2C2C;
}

.tourism-guide-content__inner p {
    margin: 0 0 24px 0;
}

.tourism-guide-content__inner p:last-child {
    margin-bottom: 0;
}

.tourism-guide-content__inner strong,
.tourism-guide-content__inner b {
    font-weight: 600;
    color: #000000;
}

.tourism-guide-content__inner ul,
.tourism-guide-content__inner ol {
    margin: 0 0 28px 0;
    padding-left: 24px;
}

.tourism-guide-content__inner li {
    margin-bottom: 8px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    color: #5C5C5C;
}

.tourism-guide-content__inner li::marker {
    color: #A1A761;
}

/* Gallery */

.tourism-guide-gallery {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 0 0 281px 0;
}

.tourism-guide-gallery__inner {
    width: 100%;
    max-width: 1439px;
    height: 357px;
    margin: 0 auto;
    background: #C6C9A0;
    box-sizing: border-box;
    padding: 48px 90px;
    position: relative;
    display: flex;
    align-items: center;
}

.tourism-guide-gallery__track {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tourism-guide-gallery__track::-webkit-scrollbar {
    display: none;
}

.tourism-guide-gallery__item {
    width: 357px;
    height: 261px;
    flex: 0 0 357px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.tourism-guide-gallery__image {
    width: 357px;
    height: 261px;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.tourism-guide-gallery__item:hover .tourism-guide-gallery__image {
    transform: scale(1.04);
}

/* Centered carousel arrows */

.tourism-guide-gallery__arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2D3154;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    box-sizing: border-box;
    font-size: 0;
    line-height: 1;
}

.tourism-guide-gallery__arrow::before {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    color: #2D3154;
    transform: translateY(-2px);
}

.tourism-guide-gallery__arrow--prev::before {
    content: '‹';
}

.tourism-guide-gallery__arrow--next::before {
    content: '›';
}

.tourism-guide-gallery__arrow--prev {
    left: 24px;
}

.tourism-guide-gallery__arrow--next {
    right: 24px;
}

.tourism-guide-gallery__arrow:hover {
    background: #FFFFFF;
}

/* Lightbox */

.tourism-guide-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 110px;
    box-sizing: border-box;
}

.tourism-guide-lightbox.is-active {
    display: flex;
}

.tourism-guide-lightbox__image {
    width: min(1100px, 82vw);
    height: auto;
    max-height: 86vh;
    display: block;
    object-fit: contain;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.tourism-guide-lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: #222B62;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.tourism-guide-lightbox__arrow {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222B62;
    font-size: 46px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000000;
    padding: 0;
    box-sizing: border-box;
}

.tourism-guide-lightbox__arrow span {
    display: block;
    line-height: 1;
    transform: translateY(-3px);
}

.tourism-guide-lightbox__arrow--prev {
    left: 32px;
}

.tourism-guide-lightbox__arrow--next {
    right: 32px;
}

.tourism-guide-lightbox__arrow:hover,
.tourism-guide-lightbox__close:hover {
    background: #FFFFFF;
}

body.tourism-guide-lightbox-open {
    overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
    .tourism-guide-intro__inner {
        padding-left: 60px;
        padding-right: 60px;
        grid-template-columns: minmax(0, 1fr) 460px;
        column-gap: 70px;
    }

    .tourism-guide-intro__content {
        width: 100%;
    }

    .tourism-guide-intro__image-wrap {
        width: 460px;
        height: 364px;
    }

    .tourism-guide-content__inner {
        max-width: calc(100% - 120px);
    }

    .tourism-guide-gallery__inner {
        max-width: calc(100% - 80px);
        height: 357px;
        padding-left: 80px;
        padding-right: 80px;
    }

    .tourism-guide-gallery__item {
        width: 357px;
        height: 261px;
        flex: 0 0 357px;
    }

    .tourism-guide-gallery__image {
        width: 357px;
        height: 261px;
    }
}

@media (max-width: 1199px) {
    .tourism-guide-hero {
        height: 340px;
    }

    .tourism-guide-hero__title {
        font-size: 36px;
    }

    .tourism-guide-intro__inner {
        padding: 64px 40px 36px 40px;
        grid-template-columns: minmax(0, 1fr) 400px;
        column-gap: 45px;
    }

    .tourism-guide-intro__image-wrap {
        width: 400px;
        height: 316px;
    }

    .tourism-guide-intro__title,
    .tourism-guide-content__inner h1,
    .tourism-guide-content__inner h2,
    .tourism-guide-content__inner h3,
    .tourism-guide-content__inner h4,
    .tourism-guide-content__inner h5,
    .tourism-guide-content__inner h6 {
        font-size: 21px;
    }

    .tourism-guide-intro__text,
    .tourism-guide-content__inner,
    .tourism-guide-content__inner li {
        font-size: 18px;
    }

    .tourism-guide-content__inner {
        max-width: calc(100% - 80px);
        padding-bottom: 60px;
    }

    .tourism-guide-gallery {
        padding-bottom: 160px;
    }

    .tourism-guide-gallery__inner {
        max-width: calc(100% - 48px);
        height: 357px;
        padding: 48px 70px;
    }

    .tourism-guide-gallery__item {
        width: 357px;
        height: 261px;
        flex: 0 0 357px;
    }

    .tourism-guide-gallery__image {
        width: 357px;
        height: 261px;
    }
}

@media (max-width: 991px) {
    .tourism-guide-hero {
        height: 280px;
    }

    .tourism-guide-hero__title {
        font-size: 32px;
    }

    .tourism-guide-intro__inner {
        grid-template-columns: 1fr;
        row-gap: 36px;
        padding: 56px 40px 40px 40px;
    }

    .tourism-guide-intro__image-wrap {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 500 / 395;
        margin: 0 auto;
    }

    .tourism-guide-content__inner {
        max-width: calc(100% - 80px);
        padding-bottom: 56px;
    }

    .tourism-guide-gallery__inner {
        max-width: calc(100% - 40px);
        height: 330px;
        padding: 34px 64px;
    }

    .tourism-guide-gallery__item {
        width: 320px;
        height: 234px;
        flex: 0 0 320px;
    }

    .tourism-guide-gallery__image {
        width: 320px;
        height: 234px;
    }

    .tourism-guide-gallery__arrow {
        width: 40px;
        height: 40px;
    }

    .tourism-guide-gallery__arrow::before {
        font-size: 30px;
        transform: translateY(-2px);
    }

    .tourism-guide-gallery__arrow--prev {
        left: 14px;
    }

    .tourism-guide-gallery__arrow--next {
        right: 14px;
    }

    .tourism-guide-lightbox {
        padding: 50px 70px;
    }

    .tourism-guide-lightbox__image {
        width: min(900px, 84vw);
        max-height: 84vh;
    }

    .tourism-guide-lightbox__arrow {
        width: 48px;
        height: 48px;
        font-size: 38px;
    }

    .tourism-guide-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .tourism-guide-lightbox__arrow--prev {
        left: 16px;
    }

    .tourism-guide-lightbox__arrow--next {
        right: 16px;
    }
}

@media (max-width: 767px) {
    .tourism-guide-hero {
        height: 220px;
    }

    .tourism-guide-hero__inner {
        padding: 0 18px;
    }

    .tourism-guide-hero__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .tourism-guide-intro__inner {
        padding: 42px 18px 34px 18px;
        row-gap: 28px;
    }

    .tourism-guide-intro__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .tourism-guide-intro__text {
        font-size: 16px;
        line-height: 1.55;
    }

    .tourism-guide-intro__text p {
        margin-bottom: 18px;
    }

    .tourism-guide-content__inner {
        max-width: calc(100% - 36px);
        padding-bottom: 46px;
        font-size: 16px;
        line-height: 1.55;
    }

    .tourism-guide-content__inner h1,
    .tourism-guide-content__inner h2,
    .tourism-guide-content__inner h3,
    .tourism-guide-content__inner h4,
    .tourism-guide-content__inner h5,
    .tourism-guide-content__inner h6 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .tourism-guide-content__inner p {
        margin-bottom: 20px;
    }

    .tourism-guide-content__inner ul,
    .tourism-guide-content__inner ol {
        padding-left: 20px;
        margin-bottom: 24px;
    }

    .tourism-guide-content__inner li {
        font-size: 16px;
        line-height: 1.55;
    }

    .tourism-guide-gallery {
        padding-bottom: 80px;
    }

    .tourism-guide-gallery__inner {
        max-width: calc(100% - 24px);
        height: 285px;
        padding: 32px 54px;
    }

    .tourism-guide-gallery__track {
        gap: 18px;
    }

    .tourism-guide-gallery__item {
        width: 260px;
        height: 190px;
        flex: 0 0 260px;
    }

    .tourism-guide-gallery__image {
        width: 260px;
        height: 190px;
    }

    .tourism-guide-lightbox {
        padding: 58px 18px 36px 18px;
    }

    .tourism-guide-lightbox__image {
        width: 92vw;
        max-height: 78vh;
    }

    .tourism-guide-lightbox__close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .tourism-guide-lightbox__arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
        background: rgba(255, 255, 255, 0.92);
    }

    .tourism-guide-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .tourism-guide-lightbox__arrow--prev {
        left: 10px;
    }

    .tourism-guide-lightbox__arrow--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .tourism-guide-hero {
        height: 190px;
    }

    .tourism-guide-hero__title {
        font-size: 25px;
    }

    .tourism-guide-intro__inner {
        padding: 36px 16px 30px 16px;
    }

    .tourism-guide-intro__title {
        font-size: 19px;
    }

    .tourism-guide-intro__text,
    .tourism-guide-content__inner,
    .tourism-guide-content__inner li {
        font-size: 15px;
    }

    .tourism-guide-content__inner {
        max-width: calc(100% - 32px);
    }

    .tourism-guide-content__inner h1,
    .tourism-guide-content__inner h2,
    .tourism-guide-content__inner h3,
    .tourism-guide-content__inner h4,
    .tourism-guide-content__inner h5,
    .tourism-guide-content__inner h6 {
        font-size: 19px;
    }

    .tourism-guide-gallery__inner {
        max-width: calc(100% - 20px);
        height: 260px;
        padding: 28px 46px;
    }

    .tourism-guide-gallery__item {
        width: 230px;
        height: 168px;
        flex: 0 0 230px;
    }

    .tourism-guide-gallery__image {
        width: 230px;
        height: 168px;
    }

    .tourism-guide-gallery__arrow {
        width: 34px;
        height: 34px;
    }

    .tourism-guide-gallery__arrow::before {
        font-size: 26px;
        transform: translateY(-2px);
    }

    .tourism-guide-gallery__arrow--prev {
        left: 8px;
    }

    .tourism-guide-gallery__arrow--next {
        right: 8px;
    }

    .tourism-guide-lightbox {
        padding-left: 12px;
        padding-right: 12px;
    }

    .tourism-guide-lightbox__image {
        width: 94vw;
        max-height: 76vh;
    }

    .tourism-guide-lightbox__arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .tourism-guide-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .tourism-guide-lightbox__arrow--prev {
        left: 6px;
    }

    .tourism-guide-lightbox__arrow--next {
        right: 6px;
    }
}

/* =========================
   FRONT PAGE EVENTS SECTION
========================= */

.front-events-section {
    width: 100%;
    min-height: 829px;
    background-color: #FFFFFF;
    background-image: url('https://development2.crowdpolicy.com/mylopotamos-online/wp-content/uploads/2026/05/Group-19670.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-sizing: border-box;
}

.front-events-section__wrapper {
    width: 100%;
    max-width: 1920px;
    min-height: 829px;
    margin: 0 auto;
    padding: 89px 203px 102px 203px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 636px minmax(0, 795px);
    column-gap: 78px;
    align-items: start;
    justify-content: center;
}

.front-events-section__image-col {
    width: 636px;
    height: 638px;
}

.front-events-section__image {
    width: 636px;
    height: 638px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.front-events-section__content-col {
    width: 795px;
    max-width: 100%;
    box-sizing: border-box;
}

.front-events-section__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 33px;
    line-height: 1.2;
    text-align: left;
    color: #000000;
}

.front-events-section__text {
    margin-top: 32px;
    margin-bottom: 33px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.45;
    text-align: left;
    color: #5A5959;
}

.front-events-section__text p {
    margin: 0;
}

.front-events-section__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.front-event-card {
    width: 795px;
    max-width: 100%;
    height: 93px;
    background: #FFFFFF;
    border: 1px solid #A5AB67;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    overflow: hidden;
}

.front-event-card__link {
    width: 100%;
    height: 100%;
    padding: 0 44px 0 30px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr) 26px;
    column-gap: 50px;
    align-items: center;
    text-decoration: none;
}

.front-event-card__link:hover,
.front-event-card__link:focus,
.front-event-card__link:visited {
    text-decoration: none;
}

.front-event-card__date {
    width: 135px;
    height: 42px;
    background: #A5AB67;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
}

.front-event-card__content {
    min-width: 0;
}

.front-event-card__title {
    margin: 0 0 6px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #484848;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.front-event-card__meta {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #484848;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.front-event-card__arrow {
    width: 26px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    color: #A5AB67;
    transform: translateY(-1px);
}

.front-events-section__button-wrap {
    margin-top: 40px;
}

.front-events-section__button {
    width: 393px;
    height: 75px;
    background: #A5AB67;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.front-events-section__button:hover,
.front-events-section__button:focus,
.front-events-section__button:visited {
    color: #FFFFFF;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1599px) {
    .front-events-section__wrapper {
        padding-left: 120px;
        padding-right: 120px;
        grid-template-columns: 560px minmax(0, 720px);
        column-gap: 60px;
    }

    .front-events-section__image-col,
    .front-events-section__image {
        width: 560px;
        height: 562px;
    }

    .front-events-section__content-col {
        width: 720px;
    }

    .front-event-card {
        width: 720px;
    }

    .front-event-card__link {
        grid-template-columns: 125px minmax(0, 1fr) 26px;
        column-gap: 36px;
        padding-left: 22px;
        padding-right: 34px;
    }

    .front-event-card__date {
        width: 125px;
    }
}

@media (max-width: 1399px) {
    .front-events-section__wrapper {
        padding-left: 70px;
        padding-right: 70px;
        grid-template-columns: 500px minmax(0, 1fr);
        column-gap: 50px;
    }

    .front-events-section__image-col,
    .front-events-section__image {
        width: 500px;
        height: 502px;
    }

    .front-events-section__content-col {
        width: 100%;
    }

    .front-event-card {
        width: 100%;
    }

    .front-events-section__title {
        font-size: 31px;
    }

    .front-events-section__text {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .front-events-section {
        min-height: unset;
    }

    .front-events-section__wrapper {
        min-height: unset;
        padding: 70px 40px 80px 40px;
        grid-template-columns: 1fr;
        row-gap: 44px;
    }

    .front-events-section__image-col,
    .front-events-section__image {
        width: 100%;
        max-width: 636px;
        height: auto;
        aspect-ratio: 636 / 638;
        margin: 0 auto;
    }

    .front-events-section__content-col {
        width: 100%;
        max-width: 795px;
        margin: 0 auto;
    }

    .front-events-section__button-wrap {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .front-events-section__wrapper {
        padding: 52px 18px 64px 18px;
        row-gap: 34px;
    }

    .front-events-section__title {
        font-size: 27px;
        text-align: left;
    }

    .front-events-section__text {
        margin-top: 22px;
        margin-bottom: 28px;
        font-size: 17px;
        line-height: 1.5;
    }

    .front-events-section__cards {
        gap: 18px;
    }

    .front-event-card {
        height: auto;
        min-height: 112px;
    }

    .front-event-card__link {
        padding: 18px 20px;
        grid-template-columns: 1fr 30px;
        grid-template-areas:
            "date arrow"
            "content arrow";
        column-gap: 14px;
        row-gap: 14px;
    }

    .front-event-card__date {
        grid-area: date;
        width: 130px;
        height: 40px;
        font-size: 12px;
    }

    .front-event-card__content {
        grid-area: content;
    }

    .front-event-card__title {
        font-size: 18px;
        white-space: normal;
    }

    .front-event-card__meta {
        font-size: 15px;
        white-space: normal;
    }

    .front-event-card__arrow {
        grid-area: arrow;
        align-self: center;
        justify-self: end;
        font-size: 28px;
    }

    .front-events-section__button {
        width: 100%;
        max-width: 393px;
        height: 66px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .front-events-section__wrapper {
        padding: 44px 16px 56px 16px;
    }

    .front-events-section__title {
        font-size: 25px;
    }

    .front-events-section__text {
        font-size: 16px;
    }

    .front-event-card__link {
        padding: 16px;
    }

    .front-event-card__date {
        width: 120px;
        height: 38px;
        font-size: 11px;
        border-radius: 12px;
    }

    .front-event-card__title {
        font-size: 17px;
    }

    .front-event-card__meta {
        font-size: 14px;
    }
}
/* =========================
   SINGLE EVENT PAGE
========================= */

.single-event-page {
    width: 100%;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Hero */

.single-event-hero {
    width: 100%;
    height: 423px;
    background: #A1A761;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.single-event-hero__inner {
    width: 100%;
    max-width: 1439px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.single-event-hero__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

/* Content */

.single-event-content-section {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

.single-event-content-section__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 0 70px 0;
    box-sizing: border-box;
}

.single-event-back-row {
    margin-bottom: 38px;
}

.single-event-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: #555454;
    text-decoration: none;
}

.single-event-back-link:hover,
.single-event-back-link:focus,
.single-event-back-link:visited {
    color: #555454;
    text-decoration: none;
}

.single-event-back-arrow {
    font-size: 30px;
    line-height: 1;
    color: #555454;
}

.single-event-header {
    max-width: 980px;
    margin-bottom: 42px;
}

.single-event-title {
    margin: 0 0 22px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    text-align: left;
    color: #222B62;
}

.single-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.single-event-meta__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    color: #5A5959;
}

.single-event-meta__item::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A5AB67;
    display: inline-block;
    flex: 0 0 10px;
}

.single-event-content {
    width: 100%;
    max-width: 1280px;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
    color: #5C5C5C;
    text-align: left;
}

.single-event-content h1,
.single-event-content h2,
.single-event-content h3,
.single-event-content h4,
.single-event-content h5,
.single-event-content h6 {
    margin: 0 0 18px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    color: #2C2C2C;
}

.single-event-content p {
    margin: 0 0 24px 0;
}

.single-event-content strong,
.single-event-content b {
    font-weight: 600;
    color: #000000;
}

.single-event-content ul,
.single-event-content ol {
    margin: 0 0 28px 0;
    padding-left: 24px;
}

.single-event-content li {
    margin-bottom: 8px;
}

.single-event-content li::marker {
    color: #A1A761;
}

/* Gallery */

.single-event-gallery {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 0 0 120px 0;
}

.single-event-gallery__inner {
    width: 100%;
    max-width: 1439px;
    height: 357px;
    margin: 0 auto;
    background: #C6C9A0;
    box-sizing: border-box;
    padding: 48px 90px;
    position: relative;
    display: flex;
    align-items: center;
}

.single-event-gallery__track {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.single-event-gallery__track::-webkit-scrollbar {
    display: none;
}

.single-event-gallery__item {
    width: 357px;
    height: 261px;
    flex: 0 0 357px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.single-event-gallery__image {
    width: 357px;
    height: 261px;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.single-event-gallery__item:hover .single-event-gallery__image {
    transform: scale(1.04);
}

.single-event-gallery__arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2D3154;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    box-sizing: border-box;
    font-size: 0;
    line-height: 1;
}

.single-event-gallery__arrow::before {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    color: #2D3154;
    transform: translateY(-2px);
}

.single-event-gallery__arrow--prev::before {
    content: '‹';
}

.single-event-gallery__arrow--next::before {
    content: '›';
}

.single-event-gallery__arrow--prev {
    left: 24px;
}

.single-event-gallery__arrow--next {
    right: 24px;
}

.single-event-gallery__arrow:hover {
    background: #FFFFFF;
}

/* Lightbox */

.single-event-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 110px;
    box-sizing: border-box;
}

.single-event-lightbox.is-active {
    display: flex;
}

.single-event-lightbox__image {
    width: min(1100px, 82vw);
    height: auto;
    max-height: 86vh;
    display: block;
    object-fit: contain;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.single-event-lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: #222B62;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.single-event-lightbox__arrow {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222B62;
    font-size: 46px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000000;
    padding: 0;
    box-sizing: border-box;
}

.single-event-lightbox__arrow span {
    display: block;
    line-height: 1;
    transform: translateY(-3px);
}

.single-event-lightbox__arrow--prev {
    left: 32px;
}

.single-event-lightbox__arrow--next {
    right: 32px;
}

.single-event-lightbox__arrow:hover,
.single-event-lightbox__close:hover {
    background: #FFFFFF;
}

body.single-event-lightbox-open {
    overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
    .single-event-content-section__inner {
        max-width: calc(100% - 120px);
    }

    .single-event-gallery__inner {
        max-width: calc(100% - 80px);
        height: 357px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1199px) {
    .single-event-hero {
        height: 340px;
    }

    .single-event-hero__title {
        font-size: 36px;
    }

    .single-event-content-section__inner {
        max-width: calc(100% - 80px);
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .single-event-title {
        font-size: 31px;
    }

    .single-event-content {
        font-size: 18px;
    }

    .single-event-gallery__inner {
        max-width: calc(100% - 48px);
        height: 357px;
        padding: 48px 70px;
    }
}

@media (max-width: 991px) {
    .single-event-hero {
        height: 280px;
    }

    .single-event-hero__title {
        font-size: 32px;
    }

    .single-event-content-section__inner {
        max-width: calc(100% - 80px);
        padding-top: 54px;
    }

    .single-event-gallery__inner {
        max-width: calc(100% - 40px);
        height: 330px;
        padding: 34px 64px;
    }

    .single-event-gallery__item {
        width: 320px;
        height: 234px;
        flex: 0 0 320px;
    }

    .single-event-gallery__image {
        width: 320px;
        height: 234px;
    }

    .single-event-gallery__arrow {
        width: 40px;
        height: 40px;
    }

    .single-event-gallery__arrow::before {
        font-size: 30px;
        transform: translateY(-2px);
    }

    .single-event-gallery__arrow--prev {
        left: 14px;
    }

    .single-event-gallery__arrow--next {
        right: 14px;
    }

    .single-event-lightbox {
        padding: 50px 70px;
    }

    .single-event-lightbox__image {
        width: min(900px, 84vw);
        max-height: 84vh;
    }

    .single-event-lightbox__arrow {
        width: 48px;
        height: 48px;
        font-size: 38px;
    }

    .single-event-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .single-event-lightbox__arrow--prev {
        left: 16px;
    }

    .single-event-lightbox__arrow--next {
        right: 16px;
    }
}

@media (max-width: 767px) {
    .single-event-hero {
        height: 220px;
    }

    .single-event-hero__title {
        font-size: 28px;
    }

    .single-event-content-section__inner {
        max-width: calc(100% - 36px);
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .single-event-back-link {
        font-size: 16px;
    }

    .single-event-title {
        font-size: 26px;
    }

    .single-event-meta {
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .single-event-meta__item {
        font-size: 15px;
    }

    .single-event-content {
        font-size: 16px;
        line-height: 1.55;
    }

    .single-event-content h1,
    .single-event-content h2,
    .single-event-content h3,
    .single-event-content h4,
    .single-event-content h5,
    .single-event-content h6 {
        font-size: 20px;
    }

    .single-event-gallery {
        padding-bottom: 80px;
    }

    .single-event-gallery__inner {
        max-width: calc(100% - 24px);
        height: 285px;
        padding: 32px 54px;
    }

    .single-event-gallery__track {
        gap: 18px;
    }

    .single-event-gallery__item {
        width: 260px;
        height: 190px;
        flex: 0 0 260px;
    }

    .single-event-gallery__image {
        width: 260px;
        height: 190px;
    }

    .single-event-lightbox {
        padding: 58px 18px 36px 18px;
    }

    .single-event-lightbox__image {
        width: 92vw;
        max-height: 78vh;
    }

    .single-event-lightbox__close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .single-event-lightbox__arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
        background: rgba(255, 255, 255, 0.92);
    }

    .single-event-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .single-event-lightbox__arrow--prev {
        left: 10px;
    }

    .single-event-lightbox__arrow--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .single-event-hero {
        height: 190px;
    }

    .single-event-hero__title {
        font-size: 25px;
    }

    .single-event-content-section__inner {
        max-width: calc(100% - 32px);
    }

    .single-event-title {
        font-size: 24px;
    }

    .single-event-content {
        font-size: 15px;
    }

    .single-event-gallery__inner {
        max-width: calc(100% - 20px);
        height: 260px;
        padding: 28px 46px;
    }

    .single-event-gallery__item {
        width: 230px;
        height: 168px;
        flex: 0 0 230px;
    }

    .single-event-gallery__image {
        width: 230px;
        height: 168px;
    }

    .single-event-gallery__arrow {
        width: 34px;
        height: 34px;
    }

    .single-event-gallery__arrow::before {
        font-size: 26px;
        transform: translateY(-2px);
    }

    .single-event-gallery__arrow--prev {
        left: 8px;
    }

    .single-event-gallery__arrow--next {
        right: 8px;
    }

    .single-event-lightbox {
        padding-left: 12px;
        padding-right: 12px;
    }

    .single-event-lightbox__image {
        width: 94vw;
        max-height: 76vh;
    }

    .single-event-lightbox__arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .single-event-lightbox__arrow span {
        transform: translateY(-2px);
    }

    .single-event-lightbox__arrow--prev {
        left: 6px;
    }

    .single-event-lightbox__arrow--next {
        right: 6px;
    }
}

/* =========================
   EVENTS ARCHIVE PAGE
========================= */

.events-archive-page {
    width: 100%;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Hero */

.events-archive-hero {
    width: 100%;
    height: 423px;
    background: #A1A761;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.events-archive-hero__inner {
    width: 100%;
    max-width: 1439px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.events-archive-hero__title {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

/* Content */

.events-archive-content {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

.events-archive-content__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 0 90px 0;
    box-sizing: border-box;
}

.events-archive-back-row {
    margin-bottom: 36px;
}

.events-archive-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: #555454;
    text-decoration: none;
}

.events-archive-back-link:hover,
.events-archive-back-link:focus,
.events-archive-back-link:visited {
    color: #555454;
    text-decoration: none;
}

.events-archive-back-arrow {
    font-size: 30px;
    line-height: 1;
    color: #555454;
}

/* Search */

.events-archive-search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.events-archive-search__input {
    width: 100%;
    max-width: 560px;
    height: 56px;
    border: 1px solid #A5AB67;
    border-radius: 10px;
    background: #FFFFFF;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #484848;
    outline: none;
}

.events-archive-search__input:focus {
    border-color: #2D3154;
}

.events-archive-search__button {
    width: 170px;
    height: 56px;
    border: 0;
    border-radius: 10px;
    background: #A5AB67;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    cursor: pointer;
}

.events-archive-search__clear {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.2;
    color: #555454;
    text-decoration: none;
}

.events-archive-search__clear:hover {
    color: #2D3154;
    text-decoration: underline;
}

.events-archive-search-results-label {
    margin-bottom: 24px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.4;
    color: #5A5959;
}

.events-archive-search-results-label strong {
    font-weight: 600;
    color: #2D3154;
}

/* Cards */

.events-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.events-archive-card {
    width: 100%;
    min-height: 126px;
    background: #FFFFFF;
    border: 1px solid #A5AB67;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    overflow: hidden;
}

.events-archive-card__link {
    width: 100%;
    min-height: 126px;
    padding: 24px 44px 24px 30px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 36px;
    column-gap: 46px;
    align-items: center;
    text-decoration: none;
}

.events-archive-card__link:hover,
.events-archive-card__link:focus,
.events-archive-card__link:visited {
    text-decoration: none;
}

.events-archive-card__date {
    width: 150px;
    min-height: 46px;
    background: #A5AB67;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
}

.events-archive-card__content {
    min-width: 0;
}

.events-archive-card__title {
    margin: 0 0 8px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.25;
    color: #2D3154;
    text-align: left;
}

.events-archive-card__meta {
    margin-bottom: 10px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    color: #484848;
    text-align: left;
}

.events-archive-card__excerpt {
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.45;
    color: #5A5959;
    text-align: left;
}

.events-archive-card__arrow {
    width: 36px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    color: #A5AB67;
    transform: translateY(-1px);
}

.events-archive-no-results {
    width: 100%;
    padding: 50px 20px;
    background: #FAFAFA;
    border-radius: 14px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #5A5959;
}

/* Pagination */

.events-archive-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.events-archive-pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.events-archive-pagination li {
    margin: 0;
    padding: 0;
}

.events-archive-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F2F2F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #2D3154;
    text-decoration: none;
}

.events-archive-pagination .page-numbers.current,
.events-archive-pagination .page-numbers:hover {
    background: #A5AB67;
    color: #FFFFFF;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
    .events-archive-content__inner {
        max-width: calc(100% - 120px);
    }
}

@media (max-width: 1199px) {
    .events-archive-hero {
        height: 340px;
    }

    .events-archive-hero__title {
        font-size: 36px;
    }

    .events-archive-content__inner {
        max-width: calc(100% - 80px);
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .events-archive-card__link {
        grid-template-columns: 140px minmax(0, 1fr) 34px;
        column-gap: 34px;
    }
}

@media (max-width: 991px) {
    .events-archive-hero {
        height: 280px;
    }

    .events-archive-hero__title {
        font-size: 32px;
    }

    .events-archive-search {
        flex-wrap: wrap;
    }

    .events-archive-search__input {
        max-width: none;
        flex: 1 1 100%;
    }

    .events-archive-search__button {
        width: 160px;
    }
}

@media (max-width: 767px) {
    .events-archive-hero {
        height: 220px;
    }

    .events-archive-hero__title {
        font-size: 28px;
    }

    .events-archive-content__inner {
        max-width: calc(100% - 36px);
        padding-top: 42px;
        padding-bottom: 54px;
    }

    .events-archive-back-row {
        margin-bottom: 28px;
    }

    .events-archive-back-link {
        font-size: 16px;
    }

    .events-archive-back-arrow {
        font-size: 26px;
    }

    .events-archive-search {
        gap: 10px;
        margin-bottom: 28px;
    }

    .events-archive-search__input {
        height: 50px;
        font-size: 15px;
    }

    .events-archive-search__button {
        width: 100%;
        height: 50px;
        font-size: 15px;
    }

    .events-archive-search__clear {
        width: 100%;
        text-align: center;
    }

    .events-archive-card {
        min-height: unset;
    }

    .events-archive-card__link {
        min-height: unset;
        padding: 20px;
        grid-template-columns: 1fr 30px;
        grid-template-areas:
            "date arrow"
            "content arrow";
        column-gap: 14px;
        row-gap: 16px;
    }

    .events-archive-card__date {
        grid-area: date;
        width: 135px;
        min-height: 42px;
        font-size: 12px;
    }

    .events-archive-card__content {
        grid-area: content;
    }

    .events-archive-card__title {
        font-size: 20px;
    }

    .events-archive-card__meta {
        font-size: 15px;
    }

    .events-archive-card__excerpt {
        font-size: 15px;
    }

    .events-archive-card__arrow {
        grid-area: arrow;
        align-self: center;
        justify-self: end;
        font-size: 30px;
    }

    .events-archive-pagination {
        margin-top: 36px;
    }

    .events-archive-pagination ul {
        gap: 7px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .events-archive-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .events-archive-hero {
        height: 190px;
    }

    .events-archive-hero__title {
        font-size: 25px;
    }

    .events-archive-content__inner {
        max-width: calc(100% - 32px);
    }

    .events-archive-card__link {
        padding: 16px;
    }

    .events-archive-card__date {
        width: 122px;
        min-height: 38px;
        font-size: 11px;
        border-radius: 12px;
    }

    .events-archive-card__title {
        font-size: 18px;
    }

    .events-archive-card__meta,
    .events-archive-card__excerpt {
        font-size: 14px;
    }
}

/* =========================
   FRONT PAGE APP SECTION
========================= */

.front-app-section {
    width: 100%;
    min-height: 710px;
    background-color: #F5F5F5;
    background-image: url('https://development2.crowdpolicy.com/mylopotamos-online/wp-content/uploads/2026/05/Group-20186.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-sizing: border-box;
    overflow: hidden;
}

.front-app-section__wrapper {
    width: 100%;
    max-width: 1920px;
    min-height: 710px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 610px) 750px;
    column-gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 0 120px;
    box-sizing: border-box;
}

.front-app-section__content {
    width: 610px;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 20px;
}

.front-app-section__logo {
    width: 86px;
    height: 86px;
    display: block;
    object-fit: contain;
    margin: 0 0 66px 0;
}

.front-app-section__title {
    margin: 0 0 96px 0;
    font-family: 'Geologica', sans-serif;
    font-size: 34px;
    line-height: 1.35;
    text-align: left;
    color: #3B3B3A;
}

.front-app-section__title-before {
    font-weight: 400;
    color: #3B3B3A;
}

.front-app-section__title-highlight {
    font-weight: 700;
    color: #222B62;
}

.front-app-section__title-after {
    display: block;
    font-weight: 400;
    color: #3B3B3A;
}

.front-app-section__download-title {
    margin: 0 0 30px 0;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
    color: #222B62;
}

.front-app-section__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.front-app-section__store-link {
    display: inline-flex;
    width: 156px;
    height: 47px;
    text-decoration: none;
}

.front-app-section__store-link:hover,
.front-app-section__store-link:focus,
.front-app-section__store-link:visited {
    text-decoration: none;
}

.front-app-section__store-image {
    width: 156px;
    height: 47px;
    display: block;
    object-fit: contain;
}

.front-app-section__media {
    width: 750px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-app-section__video {
    width: 750px;
    height: 700px;
    display: block;
    object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1599px) {
    .front-app-section__wrapper {
        grid-template-columns: minmax(0, 500px) 650px;
        column-gap: 60px;
        padding-left: 80px;
        padding-right: 80px;
    }

    .front-app-section__media,
    .front-app-section__video {
        width: 650px;
        height: 607px;
    }
}

@media (max-width: 1399px) {
    .front-app-section__wrapper {
        grid-template-columns: minmax(0, 460px) 580px;
        column-gap: 48px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .front-app-section__media,
    .front-app-section__video {
        width: 580px;
        height: 542px;
    }

    .front-app-section__title {
        font-size: 31px;
        margin-bottom: 72px;
    }

    .front-app-section__download-title {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .front-app-section {
        min-height: unset;
    }

    .front-app-section__wrapper {
        min-height: unset;
        grid-template-columns: 1fr;
        row-gap: 44px;
        padding: 70px 40px 70px 40px;
    }

    .front-app-section__content {
        width: 100%;
        max-width: 610px;
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }

    .front-app-section__logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 44px;
    }

    .front-app-section__title {
        text-align: center;
        margin-bottom: 48px;
    }

    .front-app-section__download-title {
        text-align: center;
    }

    .front-app-section__buttons {
        justify-content: center;
    }

    .front-app-section__media {
        width: 100%;
        max-width: 750px;
        height: auto;
        margin: 0 auto;
    }

    .front-app-section__video {
        width: 100%;
        height: auto;
        max-height: 700px;
    }
}

@media (max-width: 767px) {
    .front-app-section__wrapper {
        padding: 54px 18px 58px 18px;
        row-gap: 34px;
    }

    .front-app-section__logo {
        width: 72px;
        height: 72px;
        margin-bottom: 34px;
    }

    .front-app-section__title {
        font-size: 26px;
        margin-bottom: 38px;
    }

    .front-app-section__download-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .front-app-section__buttons {
        flex-wrap: wrap;
        gap: 14px;
    }

    .front-app-section__store-link,
    .front-app-section__store-image {
        width: 145px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .front-app-section__wrapper {
        padding: 46px 16px 52px 16px;
    }

    .front-app-section__title {
        font-size: 23px;
    }

    .front-app-section__download-title {
        font-size: 20px;
    }

    .front-app-section__buttons {
        flex-direction: column;
    }

    .front-app-section__store-link,
    .front-app-section__store-image {
        width: 156px;
        height: 47px;
    }
}