/* ==========================
   Current Openings Page CSS
   ========================== */

.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.openings-notice {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 32px;
    background: #f4f9fd;
    border-radius: 16px;
    border: 1px solid #d6eaf8;
}

.notice-icon {
    font-size: 3.5rem;
    color: #6dbfe8;
    margin-bottom: 20px;
}

.openings-notice h2 {
    font-size: 1.8rem;
    color: #1a3a5c;
    font-weight: 700;
    margin-bottom: 14px;
}

.openings-notice p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.openings-notice a {
    color: #6dbfe8;
    font-weight: 600;
    text-decoration: none;
}

.openings-notice a:hover {
    text-decoration: underline;
}

.openings-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.openings-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a3a5c;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.openings-btn:hover {
    background: #6dbfe8;
    transform: translateY(-2px);
}

.openings-btn--secondary {
    background: transparent;
    border: 2px solid #1a3a5c;
    color: #1a3a5c !important;
}

.openings-btn--secondary:hover {
    background: #6dbfe8;
    border-color: #6dbfe8;
    color: #fff !important;
}

@media (max-width: 768px) {
    .page-content-section { padding: 40px 0; }
    .openings-notice { padding: 36px 20px; }
    .openings-notice h2 { font-size: 1.4rem; }
    .openings-links { flex-direction: column; align-items: center; }
}