.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.apply-page {
    min-height: 50vh;
}

.apply-page--narrow {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.apply-hero {
    text-align: center;
    margin-bottom: 2rem;
}
.apply-hero.compact { margin-bottom: 1.5rem; text-align: left; }
.apply-hero h1 { font-size: 1.75rem; color: var(--primary-dark); }
.apply-hero h2 { font-size: 1.2rem; margin-top: 0.5rem; color: var(--text-muted); }
.apply-hero p { color: var(--text-muted); }

.apply-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.recruitment-list {
    display: grid;
    gap: 1rem;
}
.recruitment-item {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}
.recruitment-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(13, 110, 79, 0.12);
    text-decoration: none;
}
.recruitment-item h3 { margin-bottom: 0.5rem; }

.grid-apply {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

.campaign-info {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.campaign-info h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.success-card { text-align: center; padding: 2.5rem; }
.success-card h2 { color: var(--success); margin-bottom: 0.5rem; }
.ref-box {
    background: var(--primary-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 1.5rem 0;
}
.ref-box span { display: block; font-size: 0.85rem; color: var(--text-muted); }
.ref-box strong { font-size: 1.5rem; color: var(--primary-dark); letter-spacing: 0.05em; }

.apply-footer { text-align: center; margin-top: 2rem; font-size: 0.9rem; }

.action-details summary {
    cursor: pointer;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}
.detail-panel {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius);
    min-width: 200px;
}

@media (max-width: 768px) {
    .grid-apply { grid-template-columns: 1fr; }
}
