/* Employment page styles */

.employment-section {
    padding: 40px 0 96px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employment-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.form-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #1a1c1e;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.position-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 0;
}

.position-type-card {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: block;
}

.position-type-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 4px rgba(0, 0, 0, 0.1);
    border-color: rgba(0,0,0,0.15);
}

.position-type-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.account-manager-position-card .position-type-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.instructor-position-card .position-type-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.position-type-icon .icon {
    width: 48px;
    height: 48px;
}

.position-type-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1a1c1e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.position-type-card p {
    font-size: 16px;
    font-weight: bold;
    color: #44474f;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive design */
@media (max-width: 905px) {
    .employment-section {
        padding: 40px 0 64px;
    }

    .employment-container {
        padding: 0 24px;
    }

    .form-section-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .employment-container {
        padding: 0 16px;
    }

    .employment-section {
        padding: 32px 0 48px;
    }

    .form-section-title {
        margin-bottom: 20px;
    }

    .position-type-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .position-type-card {
        padding: 24px;
    }
}