/* OGB Banner Styles */

.ogb-banner {
    position: relative;
    width: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Fallback gradient background */
    background: linear-gradient(135deg, #4A90D9 0%, #2E5C8A 50%, #1E3A5F 100%);
}

.ogb-banner.ogb-banner-has-bg {
    background: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin-top: 40px;
}

.ogb-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    position: relative;
    min-height: 250px;
}

.ogb-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

/* Logo OGB */
.ogb-logo {
    text-align: center;
    margin-bottom: 10px;
}

.ogb-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Czerwony pasek */
.ogb-red-bar {
    padding: 15px 30px;
    text-align: center;
    margin: 0 -40px;
    position: relative;
}

.ogb-red-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Dolna sekcja */
.ogb-bottom-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.ogb-bottom-left {
    flex-shrink: 0;
}

.ogb-blue-box {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
}

.ogb-blue-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ogb-bottom-center {
    flex: 1;
}

.ogb-white-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Puchary */
.ogb-trophies {
    position: absolute;
    right: 40px;
    bottom: 4;
    z-index: 4;
}

.ogb-trophies img {
    max-height: 200px;
    width: auto;
    display: block;
}

/* Responsywność */
@media (max-width: 1024px) {
    .ogb-red-text {
        font-size: 24px;
    }
    
    .ogb-trophies img {
        max-height: 160px;
    }
    
    .ogb-trophies {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .ogb-banner-inner {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }
    
    .ogb-banner-content {
        width: 100%;
    }
    
    .ogb-red-bar {
        margin: 0 -20px;
        padding: 12px 20px;
    }
    
    .ogb-red-text {
        font-size: 18px;
    }
    
    .ogb-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .ogb-blue-box {
        padding: 8px 15px;
    }
    
    .ogb-blue-text {
        font-size: 14px;
    }
    
    .ogb-white-text {
        font-size: 14px;
    }
    
    .ogb-trophies {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }
    
    .ogb-trophies img {
        max-height: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .ogb-red-text {
        font-size: 16px;
    }
    
    .ogb-logo img {
        max-height: 45px;
    }
    
    .ogb-blue-text,
    .ogb-white-text {
        font-size: 12px;
    }
}
