/* Twigeo Job Listings */

.twigeo-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin: 2em 0;
}

.twigeo-job-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: #1a202c;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.twigeo-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: #e53e3e;
}

.twigeo-job-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.twigeo-job-card__title {
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #1a202c;
}

.twigeo-job-card__badge {
    font-size: .75em;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.twigeo-job-card__badge--remote {
    background: #fed7d7;
    color: #c53030;
}

.twigeo-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .88em;
    color: #718096;
    margin-bottom: 14px;
}

.twigeo-job-card__highlight {
    font-size: .92em;
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.twigeo-job-card__cta {
    font-size: .9em;
    font-weight: 600;
    color: #e53e3e;
    margin-top: auto;
}

/* Single Job Page */
.twigeo-single-job {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em 1em;
}

.twigeo-single-job__header {
    margin-bottom: 2em;
}

.twigeo-single-job__title {
    font-size: 2em;
    font-weight: 800;
    margin: 0 0 .5em;
    line-height: 1.2;
}

.twigeo-single-job__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .95em;
    color: #718096;
}

.twigeo-single-job__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.twigeo-single-job__content {
    font-size: 1.05em;
    line-height: 1.8;
    color: #2d3748;
}

.twigeo-single-job__content h2,
.twigeo-single-job__content h3 {
    margin-top: 1.5em;
    color: #1a202c;
}

.twigeo-single-job__content ul {
    padding-left: 1.5em;
}

.twigeo-single-job__content li {
    margin-bottom: .5em;
}

.twigeo-single-job__apply {
    margin-top: 2.5em;
    padding: 2em;
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border-radius: 12px;
    text-align: center;
}

.twigeo-single-job__apply-btn {
    display: inline-block;
    background: #e53e3e;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background .2s;
}

.twigeo-single-job__apply-btn:hover {
    background: #c53030;
    color: #fff;
}

@media (max-width: 600px) {
    .twigeo-jobs-grid {
        grid-template-columns: 1fr;
    }
    .twigeo-single-job__title {
        font-size: 1.5em;
    }
}
