.row.custom-ms{
    max-width: 1073px;
    color: #FFF;
    font-family: "CF Asty Std";
    margin-left: 0 !important;
    padding: 24px;
    background-size: cover;
    justify-content: center;
}
.row.custom-ms .text1{
    font-size: 35.936px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.row.custom-ms .text2{
    font-size: 24.448px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
}
.row.custom-ms .text3{
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}

.program-rail .cards-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 500px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.program-rail .card{
    width: 220.439px;
    height: 199.625px;
    padding: 29.427px 16px;
    align-items: center;
    gap: 10px;
    color: #FFF;
    border-radius: 2.597px;
    background: rgba(155, 28, 69, 0.60);
    backdrop-filter: blur(7.0971879959106445px);
}

.card .title{
    text-align: center;
    font-family: "CF Asty Std";
    font-size: 20.772px;
    font-style: normal;
    font-weight: 850;
    line-height: 130%;
}

.card .points .point{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    text-align: left;

    font-family: "CF Asty Std";
    font-size: 15.579px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.mb-24{
    margin-bottom: 24px;
}
.mb-32{
    margin-bottom: 32px;
}
.mb-48{
    margin-bottom: 48px;
}

.banner-container .custom-container a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C8006A;
}

.bottom-extra{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.bottom-extra .text-bottom-extra{
    color: #FFF;
    font-family: "CF Asty Std";
    font-size: 16.442px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;

    max-width: 282px;
}

.oroi-text {
  position: absolute;
  bottom: 8px;
  left: 4px;
  color: var(--Grey-600-Extra-Light, #EFEFEF);
  font-family: "CF Asty Std";
  font-size: 12.982px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  text-decoration: underline;
}

/* modal */
.oroi-modal { 
  position: fixed; inset: 0;
  display: none;
  z-index: 1000;
}
.oroi-modal[aria-hidden="false"] { display: block; }

.oroi-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}

.oroi-dialog {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 640px);
  max-height: 80vh;
  overflow: auto;
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 20px 16px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.oroi-close {
  position: absolute; top: 8px; right: 10px;
  background: transparent; border: 0; font-size: 24px; cursor: pointer;
}

/* optional: lock body scroll όταν ανοίγει */
.body-locked { overflow: hidden; }

@media (max-width: 768px) {
    .desktop{
        display: none !important;
    }
    .mobile{
        display: flex !important;
    }

    .row.custom-ms .text1{
        font-size: 29.821px;
        line-height: 110%;
    }
    .row.custom-ms .text2{
        font-size: 20px;
        line-height: 130%;
    }
    .row.custom-ms .text3{
        font-size: 16px;
        line-height: 130%;
    }
    .program-rail .cards-container{
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .program-rail .cards-container .card{
        min-width: 220px;
    }
    .program-rail{
        max-width: 100%;
    }

    .row.custom-ms{
        padding: 8px;
        justify-content: center;
    }
    .bottom-extra{
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px){
    .desktop{
        display: flex !important;
    }
    .mobile{
        display: none !important;
    }
}