.recruitment-guide {
    padding: 9.26vh 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.recruitment-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.recruitment-guide .section-title {
    color: #000000;
    font-size: 3.8vh;
    font-weight: 800;
    margin-bottom: 2.22vh;
    text-align: center;
    line-height: 1.2;
}

.recruitment-guide .title-highlight {
    color: #b3ce3a;
}

.recruitment-guide .section-header {
    text-align: center;
    margin-bottom: 5.93vh;
    position: relative;
    z-index: 2;
}

.recruitment-guide .section-badge-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.83vw;
    margin-bottom: 2.22vh;
}

.recruitment-guide .section-line {
    width: 2.08vw;
    height: 0.09vh;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-top: 0.09vh solid #000000;
}

.recruitment-guide .section-category {
    font-family: 'Inter', sans-serif;
    font-size: 1.3vh;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.16vh;
}

.recruitment-guide .section-subtitle {
    color: #545454;
    font-size: 1.8vh;
    line-height: 1.6;
    max-width: 26.04vw;
    margin: 0 auto 2.96vh;
    opacity: 0.8;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.93vh;
    align-items: start;
    max-width: 62.5vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.96vh;
}

.guide-cover {
    position: relative;
    width: 100%;
    max-width: 16.67vw;
    aspect-ratio: 3/4;
    background: white;
    border-radius: 1.85vh;
    box-shadow: 0 1.85vh 5.56vh rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.guide-cover:hover {
    transform: translateY(-0.74vh) rotateY(5deg);
    box-shadow: 0 2.78vh 7.41vh rgba(0, 0, 0, 0.2);
}

.guide-cover-content {
    position: relative;
    z-index: 2;
    padding: 2.96vh 1.25vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.guide-brand {
    display: flex;
    flex-direction: column;
    gap: 0.74vh;
}

.brand-text {
    font-size: 0.65vh;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.185vh;
    text-transform: uppercase;
}

.brand-year {
    font-size: 0.74vh;
    font-weight: 600;
    color: #b3ce3a;
    letter-spacing: 0.093vh;
}

.guide-title {
    display: flex;
    flex-direction: column;
    gap: 0.37vh;
    text-align: center;
    margin: 1.85vh 0;
}

.guide-title-main,
.guide-title-accent {
    font-size: 2.04vh;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.093vh;
}

.guide-title-main {
    color: #0f172a;
}

.guide-title-accent {
    color: #b3ce3a;
}

.guide-subtitle {
    text-align: center;
}

.guide-subtitle span {
    font-size: 0.65vh;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.093vh;
    text-transform: uppercase;
}

.guide-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 20% 20%, rgba(179, 206, 58, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(179, 206, 58, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.guide-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.11vh;
    padding: 1.48vh 2.08vw;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-decoration: none;
    border-radius: 1.48vh;
    font-weight: 700;
    font-size: 1.2vh;
    transition: all 0.3s ease;
    box-shadow: 0 0.74vh 2.96vh rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.guide-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.guide-button:hover::before {
    left: 100%;
}

.guide-button:hover {
    transform: translateY(-0.37vh);
    box-shadow: 0 1.48vh 4.44vh rgba(0, 0, 0, 0.4);
    gap: 1.48vh;
}

.guide-button:hover .guide-arrow {
    transform: translateX(0.37vh);
}

.guide-arrow {
    width: 1.85vh;
    height: 1.85vh;
    transition: all 0.3s ease;
}

.guide-description {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 33.33vh;
}

.description-content {
    max-width: 26.04vw;
    text-align: left;
    width: 100%;
}

.description-text {
    font-size: 1.8vh;
    line-height: 1.6;
    color: #545454;
    margin-bottom: 2.96vh;
    font-weight: 400;
}

.description-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.85vh;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.93vh;
    padding: 1.6vh 1.25vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.48vh;
    border: 0.052vw solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(0.93vh);
    box-shadow: 0 0.37vh 1.85vh rgba(0, 0, 0, 0.05);
    width: 100%;
}

.highlight-item:hover {
    transform: translateY(-0.185vh);
    box-shadow: 0 0.74vh 2.96vh rgba(0, 0, 0, 0.1);
    border-color: rgba(179, 206, 58, 0.3);
}

.highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, rgba(179, 206, 58, 0.2), rgba(179, 206, 58, 0.1));
    transform: scale(1.1);
}

.highlight-icon {
    width: 3.2vh;
    height: 3.2vh;
    background: linear-gradient(135deg, rgba(179, 206, 58, 0.1), rgba(179, 206, 58, 0.05));
    border-radius: 0.74vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3ce3a;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item span {
    font-size: 1.6vh;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .recruitment-guide {
        padding: 4vh 3vw !important;
    }

    .recruitment-guide .section-header {
        margin-bottom: 3vh !important;
    }

    .recruitment-guide .section-title {
        font-size: 2.5vh !important;
        margin-bottom: 1.5vh !important;
    }

    .recruitment-guide .section-subtitle {
        font-size: 1.2vh !important;
        max-width: 95% !important;
        margin: 0 auto 1.5vh auto !important;
    }

    .recruitment-guide .section-badge-new {
        gap: 1.5vw !important;
        margin-bottom: 1.5vh !important;
    }

    .recruitment-guide .section-line {
        width: 3vw !important;
        height: 0.08vh !important;
    }

    .recruitment-guide .section-category {
        font-size: 1.1vh !important;
    }

    .guide-content {
        grid-template-columns: 1fr !important;
        gap: 3vh !important;
        max-width: 100% !important;
    }

    .guide-hero {
        order: 2 !important;
        align-items: center !important;
        gap: 2vh !important;
    }

    .guide-cover {
        max-width: 60vw !important;
        margin: 0 auto !important;
        border-radius: 1.2vh !important;
    }

    .guide-cover-content {
        padding: 2vh 1.5vw !important;
    }

    .guide-title-main,
    .guide-title-accent {
        font-size: 1.8vh !important;
    }

    .guide-subtitle span {
        font-size: 0.8vh !important;
    }

    .brand-text {
        font-size: 0.8vh !important;
    }

    .brand-year {
        font-size: 0.9vh !important;
    }

    .guide-button {
        padding: 1.2vh 2.5vw !important;
        font-size: 1vh !important;
        width: 100% !important;
        max-width: 200px !important;
        border-radius: 0.8vh !important;
        gap: 0.8vh !important;
    }

    .guide-arrow {
        width: 1.4vh !important;
        height: 1.4vh !important;
    }

    .guide-description {
        order: 1 !important;
        min-height: auto !important;
    }

    .description-content {
        max-width: 100% !important;
        text-align: left !important;
    }

    .description-text {
        font-size: 1.6vh !important;
        line-height: 1.5 !important;
        margin-bottom: 2vh !important;
    }

    .description-highlights {
        display: none !important;
    }

    .highlight-item {
        padding: 1.2vh 1.5vw !important;
        gap: 1vh !important;
        flex-direction: row !important;
        text-align: left !important;
        border-radius: 0.8vh !important;
    }

    .highlight-icon {
        width: 2.5vh !important;
        height: 2.5vh !important;
        margin: 0 !important;
        border-radius: 0.6vh !important;
    }

    .highlight-item span {
        font-size: 0.9vh !important;
        line-height: 1.3 !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .recruitment-guide {
        padding: 6vh 5vw !important;
    }

    .recruitment-guide .section-title {
        font-size: 3vh !important;
    }

    .recruitment-guide .section-subtitle {
        font-size: 1.3vh !important;
        max-width: 85% !important;
    }

    .guide-content {
        gap: 3.5vh !important;
        max-width: 95% !important;
    }

    .guide-cover {
        max-width: 22vw !important;
    }

    .guide-title-main,
    .guide-title-accent {
        font-size: 2vh !important;
    }

    .guide-button {
        padding: 1.5vh 2.5vw !important;
        font-size: 1.1vh !important;
    }

    .description-content {
        max-width: 100% !important;
    }

    .description-text {
        font-size: 1.3vh !important;
    }

    .highlight-item {
        padding: 1.5vh 2vw !important;
        gap: 1.2vh !important;
    }

    .highlight-item span {
        font-size: 1.1vh !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .recruitment-guide {
        padding: 9vh 4vw !important;
    }

    .guide-content {
        max-width: 90% !important;
        gap: 5vh !important;
    }

    .recruitment-guide .section-title {
        font-size: 3.6vh !important;
    }

    .recruitment-guide .section-subtitle {
        font-size: 1.55vh !important;
        max-width: 75% !important;
    }

    .guide-cover {
        max-width: 20vw !important;
    }

    .description-content {
        max-width: 30vw !important;
    }

    .description-text {
        font-size: 1.55vh !important;
    }
}
