/**
 * Egns Submit Page Info Widget Style
 */

.egns-submit-page-wrapper {
    width: 100%;
}

/* Hero Header */
.egns-submit-hero {
    text-align: center;
    background-color: #111; /* Default Dark */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.egns-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.egns-submit-hero h1 {
    font-family: var(--font-playfair, sans-serif);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.egns-submit-hero p {
    font-family: var(--font-worksans, sans-serif);
    font-size: 18px;
    color: #ddd;
    margin: 0;
    line-height: 1.6;
}

/* Info Card */
.egns-submit-info-card {
    background-color: #fff;
    margin: -40px auto 0; /* Negative margin to overlap header slightly */
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    width: 90%; /* Responsive width */
}

.egns-info-block {
    margin-bottom: 25px;
}

.egns-info-block:last-child {
    margin-bottom: 0;
}

.egns-info-block h3 {
    font-family: var(--font-worksans, sans-serif);
    font-size: 22px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 15px;
}

.egns-info-block .content {
    font-family: var(--font-worksans, sans-serif);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.egns-info-block .content p {
    margin-bottom: 15px;
}

.egns-info-block .content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.egns-info-block .content ul li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .egns-submit-hero h1 {
        font-size: 36px;
    }
    .egns-submit-hero p {
        font-size: 16px;
    }
    .egns-submit-info-card {
        padding: 25px;
        margin-top: 0; /* Remove overlap on mobile */
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}