/* =========================================================
   BUSINESS SPOTLIGHT
   Custom CSS only - Bootstrap handles the form styling
   ========================================================= */

.spotlight-hero {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: .5rem;
    padding: 42px 45px 0;
    margin-bottom: 22px;
    text-align: center;
    overflow: hidden;
}

.spotlight-hero h1 {
    max-width: 760px;
    margin: 0 auto 10px;
    color: #1267d6;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.spotlight-hero h1 .green {
    color: #19a552;
}

.hero-tagline {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.hero-description {
    max-width: 720px;
    margin: 0 auto 22px;
    color: #444;
    font-size: 16px;
    line-height: 1.65;
}

.instagram-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.instagram-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
}

.instagram,
.instagram-gradient {
    text-decoration: none;
    background: linear-gradient(
        90deg,
        #ff6a4d 0%,
        #ff2d78 45%,
        #ff0099 70%,
        #d900d7 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.spotlight-examples {
    max-width: 720px;
    margin: 30px auto;
}

.examples-title {
    margin-bottom: 16px;
    color: #1267d6;
    font-size: 20px;
    font-weight: 700;
}

.examples-grid {
    display: flex;
    justify-content: center;
    gap: 4%;
}

.example-post {
    display: block;
    width: 32%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .5rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.example-post img {
    display: block;
    width: 100%;
    height: auto;
}

.example-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.view-post {
    padding: 3% 4%;
    color: #1267d6;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.how-title {
    margin: 30px 0 14px;
    color: #1267d6;
    font-size: 22px;
    font-weight: 700;
}

.spotlight-process {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #075aa9;
    border-radius: .5rem;
    padding: 2.5% 2%;
    margin-bottom: 27px;
}

.process-item {
    flex: 1 1 22%;
    color: #fff;
    text-align: center;
    font-size: clamp(10px, 1.5vw, 13px);
    line-height: 1.3;
}

.process-icon {
    margin-bottom: 3%;
    font-size: clamp(18px, 3vw, 25px);
}

.process-arrow {
    flex: 0 1 4%;
    padding: 0 1%;
    color: rgba(255, 255, 255, .55);
    font-size: clamp(20px, 3vw, 28px);
}

.collaboration-copy {
    max-width: 720px;
    margin: 0 auto 20px;
    color: #444;
    font-size: 16px;
    line-height: 1.65;
}

.collaboration-copy strong {
    color: #168d49;
}

.ready-box {
    margin: 30px -45px 0;
    padding: 25px 30px 20px;
    background: #f5fbf7;
    border-top: 1px solid #d8ecde;
}

.ready-box p {
    margin: 0;
    color: #168d49;
    font-size: 18px;
    font-weight: 700;
}

.down-arrow {
    margin-top: 6px;
    color: #1267d6;
    font-size: 24px;
    font-weight: bold;
}

.form-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: .5rem;
    padding: 35px 38px 40px;
}

.form-card h2 {
    margin-bottom: 8px;
}

.form-subtitle {
    margin-bottom: 10px;
    color: #666;
}

.required-note {
    margin-bottom: 28px;
    color: #666;
    font-size: 13px;
}

.required {
    color: #dc3545;
    font-weight: 600;
}

.optional {
    color: #6c757d;
    font-size: .875em;
    font-weight: normal;
}

.section-title {
    margin: 35px 0 18px;
    padding-bottom: 8px;
    color: #1267d6;
    font-size: 19px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
}

.section-title:first-of-type {
    margin-top: 0;
}

/*
 * This is a design-specific box.
 * Bootstrap handles the form controls inside it.
 */
#businessPageUrlGroup {
    display: none;
}

/*
 * Optional custom styling around the agreements.
 * The checkboxes themselves use Bootstrap.
 */
.agreements {
    margin-top: 35px;
    padding: 25px;
    background: #f7f9fc;
    border: 1px solid #dde3ea;
    border-radius: .5rem;
}

.agreements h3 {
    margin-bottom: 18px;
    font-size: 19px;
}

@media (max-width: 700px) {

    .spotlight-hero {
        padding: 30px 20px 0;
    }

    .spotlight-hero h1 {
        font-size: 29px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .examples-grid {
        flex-direction: column;
        gap: 15px;
    }

    .example-post {
        width: 100%;
    }

    .spotlight-process {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 10px;
        padding: 22px 15px;
    }

    .process-arrow {
        display: none;
    }

    .process-item {
        font-size: 12px;
    }

    .ready-box {
        margin: 28px -20px 0;
        padding: 22px 18px 18px;
    }

    .form-card {
        padding: 24px 20px 30px;
    }

    .agreements {
        padding: 20px 17px;
    }
}