/* Invitation banner (Rail Business Days pozvánka) */
.invitation-banner-area {
    position: relative;
    padding: 60px 0;
    background-color: #f5fbfc;
    background-image: linear-gradient(135deg, #f5fbfc 0%, #eaf6f8 100%);
    text-align: center;
}

.invitation-banner-area .sec-title {
    margin-bottom: 35px;
}

.invitation-banner__inner {
    position: relative;
    display: inline-block;
    max-width: 1024px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(32, 186, 209, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.invitation-banner__inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(32, 186, 209, 0.35);
}

.invitation-banner__inner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Zoom overlay hint */
.invitation-banner__inner::after {
    content: "\f00e"; /* fa-search-plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #ffffff;
    background-color: #20bad1;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.invitation-banner__inner:hover::after {
    opacity: 1;
    transform: scale(1);
}

@media only screen and (max-width: 767px) {
    .invitation-banner-area {
        padding: 40px 0;
    }
}
