* { box-sizing: border-box; }
body {
    margin: 0;
    background: #0c0c0c;
    font-family: "Inter", sans-serif;
    color: #e7e7e7;
}
.container { max-width: 1000px; margin: 0 auto; padding: 28px; }

.site-header {
    padding: 40px 0 35px;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(214, 181, 109, 0.18);
    text-align: center;
}
.logo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #d8bd76;
    letter-spacing: 3px;
    margin-bottom: 10px;
    transition: 0.25s;
}
.logo:hover { transform: scale(1.04); }

.refresh-btn {
    margin-top: 18px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #d8bd76;
    background: #131313;
    border: 1px solid rgba(214, 181, 109, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
}
.refresh-btn:hover { background: #1a1a1a; transform: scale(1.03); }

/* ===========================
   Вакансии в 2 колонки
=========================== */
.results {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px 40px;
}

.card {
    background: #131313;
    padding: 22px 26px;
    border-radius: 14px;
    border: 1px solid rgba(214, 181, 109, 0.28);
    transition: 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(214, 181, 109, 0.45); }

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f4e5c4;
    margin-bottom: 14px;
    line-height: 1.45;
}
.card-bottom { display: flex; justify-content: space-between; align-items: center; }

.open-link {
    text-decoration: none;
    color: #d8bd76;
    font-weight: 600;
    border-bottom: 1px solid rgba(214, 181, 109, 0.45);
    padding-bottom: 2px;
    transition: 0.25s;
}
.open-link:hover { border-color: rgba(214, 181, 109, 0.9); }

.date { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); }

.load-more {
    display: block;
    margin: 25px auto;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
    color: #d8bd76;
    background: #151515;
    border: 1px solid rgba(214, 181, 109, 0.45);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}
.load-more:hover { background: #1e1e1e; transform: translateY(-2px); }