/* ============================================
   HOST PROCESS SECTION STYLES
============================================ */

.host-process-section {
    padding: 60px 12px;
    background: var(--light-bg, #f9f9f9);
}

.host-process-section .container {
    max-width: 1400px;
    margin: auto;
}

/* Title */
.process-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--accent);
}

/* Grid Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Step Cards */
.step-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    transition: .3s ease;
    border: 1px solid transparent;
}

/* Make whole card clickable */
.process-steps a.step-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Hover Effect */
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    border-color: var(--accent);
}

/* Card Image */
.step-card img {
    width: 75px;
    height: 75px;
    margin-bottom: 18px;
}

/* Card Title */
.step-card h3 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Card Description */
.step-card p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive — FIT ALL CARDS IN ONE MOBILE SCREEN */
@media (max-width: 768px) {

    /* Title smaller */
    .process-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* 2×2 grid (4 cards visible in one screen) */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    /* Smaller card padding */
    .step-card {
        padding: 18px 10px;
        border-radius: 10px;
    }

    /* Smaller images */
    .step-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    /* Smaller text */
    .step-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .step-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Top & side spacing reduced */
    .host-process-section {
        padding: 30px 10px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .process-title {
        font-size: 20px;
    }

    .step-card {
        padding: 15px 8px;
    }

    .step-card img {
        width: 45px;
        height: 45px;
    }
}