/* ======================================================= */
/* ====== SOFTWARE SOLUTION BANNER CSS =================== */
/* ======================================================= */

.software-banner {
    background-color: white;
    padding-top: 5rem;    /* py-20 */
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e7eb; /* border-b */
}
@media (min-width: 640px) { /* sm:py-24 */
    .software-banner {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.software-banner-container {
    /* width: 100%; */
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem; /* mb-4 */
}

.icon-background {
    padding: 1rem; /* p-4 */
    background-color: #f3f4f6; /* bg-gray-100 */
    color: #374151; /* text-gray-700 */
    border-radius: 9999px; /* rounded-full */
    display: inline-flex;
}

.banner-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700; /* font-bold */
    color: #1f2937; /* text-gray-800 */
    letter-spacing: -0.025em; /* tracking-tight */
}
@media (min-width: 640px) { /* sm:text-5xl */
    .banner-title {
        font-size: 3rem;
    }
}

.banner-subtitle {
    margin-top: 1rem; /* mt-4 */
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}