@font-face {
    font-family: 'GeneralSansRegular';
    src: url(/assets/fonts/GeneralSans-Regular.woff2);
}

@font-face {
    font-family: 'GeneralSansRegularItalic';
    src: url(/assets/fonts/GeneralSans-RegularItalic.woff2);
}

@font-face {
    font-family: 'GeneralSansLight';
    src: url(/assets/fonts/GeneralSans-Light.woff2);
}

@font-face {
    font-family: 'BoskaLight';
    src: url(/assets/fonts/Boska-Light.woff2);
}

@font-face {
    font-family: 'BoskaItalicLight';
    src: url(/assets/fonts/Boska-LightItalic.woff2);
}

@font-face {
    font-family: 'BoskaItalicRegular';
    src: url(/assets/fonts/Boska-MediumItalic.woff2);
}
* {
    box-sizing: border-box;
  }
body,
html {
    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
    /* overflow-x: hidden; */
    cursor: url('/storage/Artboard2.png'), auto;
}

body {
    padding-left: 30px !important;
    padding-right: 30px !important;

}

.job-posting {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.job-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.job-meta {
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 1.25rem;
}

.job-meta span:not(:last-child)::after {
    content: " | ";
    color: #999;
}

.section {
    margin-bottom: 1.5rem;
}

.section h2 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000;
}

.section p {
    margin-bottom: 1rem;
}

.section ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    color: #222;
}

.section ul li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.apply-button {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 12px 25px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 150px;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    transition-duration: 0.3s;
}

.apply-button:hover {
    background-color: #444;
    transition-duration: 0.3s;
}

@media (max-width: 768px) {
    body {
        padding: 0 !important;
    }
}