/* Widget Styles for Greek Boxed Event Page */
.gbep-1-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 1200px; /* Updated width */
    margin: 0 auto;
}

.gbep-1-banner {
    width: 100%;
    aspect-ratio: 16 / 9; /* Mobile default */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gbep-1-content {
    padding: 30px;
}

.gbep-1-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.gbep-1-btn {
    display: inline-block;
    background-color: #0073e6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.gbep-1-btn:hover {
    background-color: #005bb5;
    color: #ffffff;
}

.gbep-1-btn-top {
    margin-bottom: 25px;
}

.gbep-1-btn-bottom {
    margin-top: 25px;
}

.gbep-1-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.gbep-1-notice {
    background-color: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 4px;
    color: #495057;
    font-size: 14px;
    margin-bottom: 25px;
}

.gbep-1-top-notice {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .gbep-1-btn {
        width: auto;
    }
    .gbep-1-banner {
         aspect-ratio: auto; /* Revert desktop to original behavior */
         height: 400px; /* Adjusted height for wider banner */
    }
}
