/* Engineer Careers PC Styles */
/* 
Created: 2025-08-26
Description: PC styles for Engineer Careers page based on design mockup
*/

@media (min-width: 768px) {
    .header-sv {
        background-color: transparent;
    }
    
    .header__nav-link {
        color: var(--color-white);
        font-weight: 500;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .header__cta-link:hover {
        border-color: var(--color-light-green);
        color: var(--color-light-green);
    }

/* Service Hero */
.service-hero {
    position: relative;
    margin: 0;
    padding: 0;
    background: none;
    overflow: hidden;
}

.service-hero__container {
    position: relative;
    width: 100vw;
    min-height: 75vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: none;
    z-index: 1;
}

.service-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 75vh;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.service-hero__image img {
    width: 100vw;
    height: 128vh;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.service-hero__title {
    position: absolute;
    left: 28%;
    bottom: 120px;
    z-index: 2;
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
}

/* Intro Section */
.careers-intro {
    padding: 80px 0;
    background: #fff;
}

.careers-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.careers-intro__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

.careers-intro__text p {
    margin-bottom: 1.5rem;
}

.careers-intro__text p:last-child {
    margin-bottom: 0;
}

/* Requirements Section */
.careers-requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.careers-requirements__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.careers-requirements__header {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-requirements__label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #8a2be2;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid #8a2be2;
    border-radius: 25px;
}

.careers-requirements__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Requirement Blocks */
.req-block {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.req-block:last-child {
    margin-bottom: 0;
}

.req-block__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.req-block__marker {
    color: #8a2be2;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.req-block__body {
    color: #666;
    line-height: 1.7;
}

.req-block__text {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.req-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8a2be2;
    font-weight: bold;
}

.req-list li:last-child {
    border-bottom: none;
}

/* Definition List for detailed info */
.req-dl {
    display: grid;
    gap: 1.5rem;
}

.req-dl dt {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.req-dl dd {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.req-dl dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Technology categories */
.req-tech {
    line-height: 1.8;
}

.req-tech__cat {
    font-weight: 700;
    color: #8a2be2;
}

/* Detailed information within welcome skills */
.req-details {
    margin-top: 2rem;
    padding-top: 2rem;
}

.req-details__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.req-details__title:first-child {
    margin-top: 0;
}

.req-details__content {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.req-details__content strong {
    color: #8a2be2;
    font-weight: 700;
}

/* CTA Section */
.req-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.req-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.req-cta__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.req-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.req-cta__contact {
    margin-bottom: 2rem;
}

.req-cta__contact-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.req-cta__contact-sub {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.req-cta__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.careers-cta__button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid;
}

.careers-cta__button--job {
    background: white;
    color: #8a2be2;
    border-color: #8a2be2;
    width: 100%;
    justify-content: center;
}

.careers-cta__button--job:hover {
    background: #8a2be2;
    color: white;
    transform: translateY(-2px);
}

.careers-cta__button--contact {
    background: #8a2be2;
    color: white;
    border-color: #8a2be2;
}

.careers-cta__button--contact:hover {
    background: #7a1eb8;
    border-color: #7a1eb8;
    transform: translateY(-2px);
}

.careers-cta__button--careers {
    background: transparent;
    color: #8a2be2;
    border-color: #8a2be2;
}

.careers-cta__button--careers:hover {
    background: #8a2be2;
    color: white;
    transform: translateY(-2px);
}

/* Fade in animation */
.js-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-in.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.pc_contents_none {
    display: block;
}

.sp_contents_none {
    display: none;
}

}

/* Contact Form */
.contact-form {
    margin: 32px 0;
    padding: 0 20px;
    max-width: 100%;
    overflow: hidden;
}

.contact-form iframe {
    width: 100%;
    height: 1700px;
    min-height: 700px;
    border-radius: 12px;
    background: #faf8ff;
    box-shadow: 0 2px 12px rgba(102,51,153,0.07);
    border: none;
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-form {
        padding: 0 15px;
        margin: 24px 0;
    }
    
    .contact-form iframe {
        height: 1600px;
    }
}

@media (max-width: 768px) {
    .req-cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .careers-cta__button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-form {
        padding: 0 10px;
        margin: 20px 0;
    }
    
    .contact-form iframe {
        height: 1500px;
        border-radius: 8px;
    }
}
