.komunikacija-page,
.gpb-page,
.front-page {
    display: flex;
    flex-direction: column;
}

.komunikacija-page > section,
.gpb-page > section,
.front-page > section {
    order: var(--gpb-order, 0);
}

.gpb-is-hidden {
    display: none !important;
}

.gpb-custom-block {
    background: #fcfbfa;
    padding: 80px 0;
}

.gpb-custom-block:nth-child(even) {
    background: #f5f0e8;
}

.gpb-custom-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.gpb-custom-subtitle {
    font-family: raleway, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 22px;
}

.gpb-custom-body {
    font-family: raleway, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.komunikacija-checklist li::before {
    content: "\2713" !important;
    color: var(--primary-color, #d4af37) !important;
}

.dates-list li::before {
    content: "\2022" !important;
    color: var(--primary-color, #d4af37) !important;
}

/* Premium Custom Hero Block */
.gpb-custom-hero {
    background: linear-gradient(115deg, #f8f4ee 0%, #ffffff 58%, #f2eadf 100%);
    padding: clamp(56px, 7vw, 92px) 0;
    overflow: hidden;
}

.gpb-custom-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gpb-custom-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.gpb-custom-hero-left .gpb-custom-hero-media {
    order: 0;
}
.gpb-custom-hero-left .gpb-custom-hero-copy {
    order: 1;
}

.gpb-custom-hero-right .gpb-custom-hero-media {
    order: 1;
}
.gpb-custom-hero-right .gpb-custom-hero-copy {
    order: 0;
}

.gpb-custom-hero-media {
    position: relative;
    width: min(100%, 620px);
    padding: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 22px 58px rgba(72, 55, 35, 0.12);
    border-radius: 4px;
}

.gpb-custom-hero-media::before {
    content: "";
    position: absolute;
    inset: auto auto -16px -20px;
    width: 46%;
    height: 36%;
    border-left: 1px solid rgba(212, 175, 55, 0.42);
    border-bottom: 1px solid rgba(212, 175, 55, 0.42);
    pointer-events: none;
}

.gpb-custom-hero-right .gpb-custom-hero-media::before {
    inset: auto -20px -16px auto;
    border-left: none;
    border-right: 1px solid rgba(212, 175, 55, 0.42);
}

.gpb-custom-hero-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.gpb-custom-hero-copy {
    max-width: 620px;
}

.gpb-custom-hero-copy h2 {
    font-size: clamp(28px, 4.1vw, 54px);
    font-family: playfairdisplay-bold, 'playfair display', serif;
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: #221f1b;
    margin: 0 0 18px 0;
}

.gpb-custom-hero-copy .gpb-custom-subtitle {
    margin-top: 18px;
    margin-bottom: 18px;
    font-family: raleway, sans-serif;
    font-size: clamp(16px, 1.35vw, 19px);
    color: #29251f !important;
    font-weight: 700;
    line-height: 1.45;
}

.gpb-custom-hero-copy .gpb-custom-body {
    font-size: 16px;
    line-height: 1.8;
    color: #5f5a52 !important;
    margin-bottom: 30px;
    font-family: raleway, sans-serif;
}

@media (max-width: 768px) {
    .gpb-custom-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    
    .gpb-custom-hero-left .gpb-custom-hero-media,
    .gpb-custom-hero-left .gpb-custom-hero-copy,
    .gpb-custom-hero-right .gpb-custom-hero-media,
    .gpb-custom-hero-right .gpb-custom-hero-copy {
        order: unset !important;
    }
    
    .gpb-custom-hero-copy {
        max-width: 100%;
    }
    
    .gpb-custom-hero-media {
        width: 100% !important;
        justify-self: center;
    }
}

