/* Careers Page Styles */

/* ROOT THEME VARIABLES RE-USED FROM BASE */
/* We'll specific overrides here */

.careers-hero {
    text-align: center;
    padding: 6.8rem 0.85rem 5.1rem;
    background: radial-gradient(circle at top center, rgb(35 213 12 / 5%) 0%, rgba(255, 255, 255, 0) 60%);
    position: relative;
    overflow: hidden;
}

.hero-graphic {
    width: 102px;
    height: 102px;
    margin: 0 auto 1.7rem;
    background: radial-gradient(circle, #a0ffb858, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 34px rgba(15, 178, 7, 0.349);
    position: relative;
}

/* Abstract Logo Shapes imitating the image */
.hero-graphic::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 1.7px solid #3a7916;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-title {
    font-size: 2.975rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.cursive-highlight {
    font-family: 'Brush Script MT', cursive;
    /* Fallback, real one would need webfont */
    font-style: italic;
    color: #96c549;
    /* Light blue */
    font-weight: 400;
    display: block;
    font-size: 2.975rem;
    margin-top: 0.425rem;
}

.btn-careers-cta {
    display: inline-block;
    background: linear-gradient(135deg, #96c549 0%, #15ad48b5 100%);
    color: #fff;
    padding: 0.68rem 1.7rem;
    border-radius: 6.8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.7rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3.4px 12.75px rgba(139, 92, 246, 0.3);
}

.btn-careers-cta:hover {
    transform: translateY(-1.7px);
    box-shadow: 0 6.8px 17px rgba(139, 92, 246, 0.4);
    opacity: 1;
    /* Override base opacity hover */
}

/* PERKS SECTION */
.perks-section {
    padding: 5.1rem 0;
    text-align: center;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 1.275rem;
    display: block;
    font-weight: 600;
}

.perks-headline {
    font-size: 1.87rem;
    font-weight: 600;
    max-width: 680px;
    margin: 0 auto 3.4rem;
    color: #111;
    line-height: 1.3;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4rem;
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
}

.perk-item {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.perk-icon {
    width: 40.8px;
    height: 40.8px;
    margin-bottom: 0.425rem;
    color: #111;
}

.perk-title {
    font-size: 0.935rem;
    font-weight: 600;
    color: #111;
}

.perk-desc {
    font-size: 0.8075rem;
    color: #4b5563;
    line-height: 1.6;
}

/* ROLES SECTION */
.roles-section {
    padding: 5.1rem 0;
    background: #fff;
}

.roles-header {
    margin-bottom: 2.55rem;
}

.roles-desc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3.4rem;
    margin-bottom: 3.4rem;
}

.roles-headline {
    font-size: 1.7rem;
    font-weight: 600;
    color: #111;
    max-width: 425px;
}

.roles-subtext {
    max-width: 340px;
    color: #4b5563;
    font-size: 0.8075rem;
}

.role-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f3f4f6;
}

.role-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.275rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.role-info h4 {
    font-size: 0.935rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.2125rem;
}

.role-meta {
    font-size: 0.765rem;
    color: #6b7280;
}

.role-meta span {
    margin-right: 0.425rem;
}

.btn-apply {
    background: #96c549;
    color: #fff;
    padding: 0.425rem 0.85rem;
    border-radius: 5.1px;
    text-decoration: none;
    font-size: 0.765rem;
    font-weight: 500;
    transition: background-color 0.2s;
    opacity: 0;
    /* Hidden by default similar to some slick UIs, or just visible */
    transform: translateX(-8.5px);
    transition: all 0.2s ease;
}

/* Show button on hover */
.role-card:hover .btn-apply,
.btn-apply {
    opacity: 1;
    transform: translateX(0);
}


/* TESTIMONIAL */
.testimonial-section {
    background-color: #96c549;
    color: #fff;
    padding: 5.1rem 0.85rem;
    display: flex;
    justify-content: center;
}

.testimonial-container {
    max-width: 900px !important;
    display: grid;
    grid-template-columns: 1fr 255px;
    gap: 3.4rem;
    align-items: center;
}


.quote-content {
    font-size: 1.275rem;
    line-height: 1.5;
    font-weight: 500;
}

.quote-author-img {
    width: 100%;
    max-width: 238px;
    filter: grayscale(100%) contrast(1.2);
    border-radius: 0;
    /* Boxy look per image */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quote-author-img {
        margin: 1.7rem auto 0;
        max-width: 170px;
    }

    .roles-desc-row {
        flex-direction: column;
        gap: 0.85rem;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.125rem;
    }

    .cursive-highlight {
        font-size: 2.125rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .role-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .btn-apply {
        opacity: 1;
        transform: translateX(0);
        width: 100%;
        text-align: center;
    }
}