/* =========================================
   PROFESSIONALS
========================================= */

.professionals-top {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.professionals-top h2 {

    margin-top: 22px;

    max-width: 760px;
}

.professionals-top p {

    max-width: 460px;
}

/* =========================================
   SPONSORED PLACEHOLDERS
========================================= */

.sponsored-placeholder {

    border:
        2px dashed rgba(252,64,2,0.25);

    background:
        rgba(252,64,2,0.03);
}


/* ICON */
.placeholder-icon {

    width: 72px;
    height: 72px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background:
        rgba(252,64,2,0.08);

    color: var(--accent);

    font-size: 42px;
    font-weight: 300;
}


/* TEXT */
.sponsored-placeholder h3 {

    margin-bottom: 16px;
}

.sponsored-placeholder p {

    margin-bottom: 24px;

    line-height: 1.85;
}


/* =========================================
   AFFILIATE CTA
========================================= */

.professional-affiliate-btn {

    margin-top: 18px;
}


/* =========================================
   GRID
========================================= */

.professionals-grid {

    display: grid;
    grid-template-columns: 1fr 0.95fr;

    gap: 24px;
}


/* =========================================
   LEFT
========================================= */

.directory-column {

    display: flex;
    flex-direction: column;

    gap: 24px;
}


/* =========================================
   PROFESSIONAL CARD
========================================= */

.professional-card {

    padding: 30px;
}


/* TOP */
.professional-top {

    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}


/* AVATAR */
.professional-avatar {

    width: 72px;
    height: 72px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        var(--gradient-accent);

    color: white;

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 14px 30px rgba(252,64,2,0.18);
}


/* BADGE */
.professional-badge {

    display: inline-flex;

    padding: 10px 14px;

    border-radius: 100px;

    background:
        rgba(252,64,2,0.08);

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 14px;
}

.professional-top h3 {

    margin-bottom: 8px;

    font-size: 30px;
}

.professional-top p {

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================
   INFO
========================================= */

.professional-info {

    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 30px;
}


/* ROW */
.professional-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(15,35,68,0.06);
}

.professional-row span {

    color: var(--text-light);

    font-size: 14px;
}

.professional-row strong {

    color: var(--primary);

    font-size: 15px;
}


/* =========================================
   FORM CARD
========================================= */

.lead-form-card {

    padding: 34px;
}


/* TOP */
.lead-form-top {

    margin-bottom: 30px;
}

.lead-form-top h3 {

    margin-top: 22px;
    margin-bottom: 18px;

    font-size: 38px;
}


/* FORM */
.lead-form {

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================
   TCPA
========================================= */

.tcpa-box {

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(15,35,68,0.04);

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .professionals-grid {

        grid-template-columns: 1fr;
    }

}

@media (max-width: 992px) {

    .professionals-top {

        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 768px) {

    .professional-top {

        flex-direction: column;
        align-items: flex-start;
    }

    .lead-form-card {

        padding: 24px;
    }

    .lead-form-top h3 {

        font-size: 30px;
    }

}