.jri-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jri-hero {
    background: linear-gradient(135deg, #2a9d8f, #264653);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.jri-hero-title {
    font-size: 2.5em;
    margin: 0 0 10px;
}

.jri-hero-subtitle {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
}

.jri-search-sticky {
    position: sticky;
    top: 20px;
    z-index: 10;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.jri-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.jri-search-input,
.jri-filter-select {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.jri-search-input:focus,
.jri-filter-select:focus {
    border-color: #2a9d8f;
    outline: none;
}

.jri-apply-button,
.jri-clear-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jri-apply-button {
    background: #2a9d8f;
    color: #fff;
}

.jri-apply-button:hover {
    background: #207c6e;
}

.jri-clear-button {
    background: #e76f51;
    color: #fff;
}

.jri-clear-button:hover {
    background: #d65a3c;
}

.jri-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.jri-job-card {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jri-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.jri-job-header {
    margin-bottom: 15px;
}

.jri-job-title {
    font-size: 1.3em;
    margin: 0 0 10px;
    color: #264653;
}

.jri-company-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #264653;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-right: 10px;
}

.jri-pub-date {
    color: #6b7280;
    font-size: 0.9em;
    margin-right: 10px;
}

.jri-new-badge {
    display: inline-block;
    background: #e76f51;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

.jri-job-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.jri-job-footer {
    text-align: right;
}

.jri-apply-button {
    display: inline-block;
    background: #2a9d8f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.jri-apply-button:hover {
    background: #207c6e;
}

.jri-pagination {
    text-align: center;
    margin-top: 20px;
}

.jri-pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #e0e7ff;
    border-radius: 6px;
    text-decoration: none;
    color: #2a9d8f;
    transition: background 0.3s ease;
}

.jri-pagination a:hover {
    background: #e0e7ff;
}

.jri-no-jobs {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 20px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

@media (max-width: 768px) {
    .jri-hero {
        padding: 20px;
    }
    .jri-hero-title {
        font-size: 1.8em;
    }
    .jri-hero-subtitle {
        font-size: 1em;
    }
    .jri-jobs-grid {
        grid-template-columns: 1fr;
    }
    .jri-search-form {
        flex-direction: column;
    }
    .jri-search-sticky {
        position: static;
        box-shadow: none;
    }
}