/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2026 | 17:33:58 */
.recruiter-profile {
    display: flex;
    gap: 50px;
    align-items: center;
}

.recruiter-profile__photo img {
    max-width: 260px;
    border-radius: 12px;
}

.recruiter-profile__content {
    flex: 1;
}

.recruiter-profile__title {
    font-size: 36px;
    margin-bottom: 10px;
}

.divider {
    display: block;
    height: 2px;
    background: #e5e7eb;
    margin: 20px 0;
}

.divider--accent {
    width: 30px;
    height: 4px;
    background: #f97316;
    margin: 10px 0 20px;
}

.recruiter-profile__main {
    display: flex;
    gap: 40px;
}

.recruiter-profile__info h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
}

.info-icon {
    width: 24px;
    background-color: #002E5C1A;
    text-align: center;
    font-weight: bold;
	padding: 2px;
}

.info-icon.linkedin {
    background: #0a66c2;
    color: #fff;
}

.recruiter-profile__badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.recruiter-profile__badges img {
    max-width: 120px;
}

@media (max-width: 768px) {

    .recruiter-profile {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .recruiter-profile__photo img {
        max-width: 200px;
        margin: 0 auto;
    }

    .recruiter-profile__content {
        width: 100%;
    }

    .recruiter-profile__title {
        font-size: 28px;
    }

    .recruiter-profile__main {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .recruiter-profile__info h2 {
        font-size: 22px;
    }

    .divider--accent {
        margin-left: auto;
        margin-right: auto;
    }

    .info-row {
        justify-content: center;
        font-size: 15px;
    }

    .recruiter-profile__badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .recruiter-profile__badges img {
        max-width: 100px;
    }
}