/*
 Theme Name:   Webify Blog
 Theme URI:    https://ariham.com
 Description:  Fast Company-style editorial theme for WordPress news, jobs & community. Child theme of Divi.
 Author:       Webify Projects
 Author URI:   https://ariham.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  wp-insider
*/

/* ── Import Divi parent styles ──────────────────────────────── */
/* Handled via functions.php wp_enqueue_style */

/* ── Job Board Styles ─────────────────────────────────────── */
.wp-job-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #3b82f6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wp-job-card .job-title {
    font-size: 1.25rem;
    margin: 0 0 12px 0 !important;
    font-weight: 700;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wp-job-card .job-title a {
    color: #1d4ed8;
    text-decoration: none;
}

.wp-job-card .job-title a:hover {
    text-decoration: underline;
}

.wp-job-card .job-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 16px 0 !important;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wp-job-card .job-meta strong {
    color: #334155;
    font-weight: 600;
}

.wp-job-card .job-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 !important;
    font-family: Georgia, serif;
}