/* --- Recruiter Landing Page External Styles --- */

/* Action Buttons */
.join_the_network {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #f97316; /* Standardized to HireHub Orange */
    border: 2px solid #f97316;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join_the_network:hover {
    background-color: transparent;
    color: #f97316 !important;
    border-color: #f97316 !important;
    text-decoration: none;
}

/* Section Containers */
.recruiter-hero {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 2rem 1rem;
}

.recruiter-features {
    padding-top: 4rem 0;
    background-color: #f9fafb;
}

.container-6xl {
    max-width: 72rem;
    margin: 0 auto;
}

/* Header Typography */
.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-xl {
    font-size: 3.75rem; /* text-6xl */
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.subtitle-lg {
    font-size: 1.25rem;
    color: #4b5563;
    margin-top: 1rem;
}

/* Perks Grid */
.perks-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.perk-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-top: 4px solid #f97316;
    width: 100%;
    max-width: 40rem;
    text-align: center;
}

.perk-text {
    color: #1f2937;
    font-weight: 500;
    margin: 0;
}

/* Blue CTA Block */
.blue-banner {
    background-color: #1e3a8a; /* bg-blue-900 */
    color: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.banner-title {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.banner-text {
    color: #dbeafe; /* text-blue-100 */
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
}

/* Advantage Cards */
.advantage-card {
    padding: 2.5rem 1.5rem;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.advantage-desc {
    color: #4b5563;
}

.footer-action {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}