@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,700&display=swap');

.hw-solution-lead-2297 {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 72px 15px 56px 15px;
    background-color: #f5f7fa;
    box-sizing: border-box;
    font-family: 'PT Sans', sans-serif;
}

.hw-solution-frame-2297 {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hw-solution-h2-2297 {
    color: #002c77;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 32px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.hw-solution-body-2297 {
    color: #002c77;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.hw-solution-h2-2297.hw-fade-in,
.hw-solution-body-2297.hw-fade-in {
    opacity: 1;
}

.hw-solution-claim-2297 {
    color: #002c77;
    font-weight: 700;
    font-style: italic;
    font-size: 24px;
    text-align: center;
    margin: 40px auto 0 auto;
    border-top: 2px solid #fdc82f;
    border-bottom: 2px solid #fdc82f;
    padding: 24px 32px;
    max-width: 640px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 0 rgba(253, 200, 47, 0);
}

@keyframes hw-glow-pulse-2297 {
    0% {
        box-shadow: 0 0 0 rgba(253, 200, 47, 0);
    }
    50% {
        box-shadow: 0 0 24px rgba(253, 200, 47, 0.2);
    }
    100% {
        box-shadow: 0 0 0 rgba(253, 200, 47, 0);
    }
}

.hw-solution-claim-2297.hw-animate-glow {
    animation: hw-glow-pulse-2297 2s ease-in-out forwards;
}

@media (max-width: 1024px) {
    .hw-solution-lead-2297 {
        padding: 60px 20px 40px 20px;
    }
}

@media (max-width: 767px) {
    .hw-solution-h2-2297 {
        font-size: 22px;
    }
    .hw-solution-body-2297 {
        font-size: 16px;
    }
    .hw-solution-claim-2297 {
        font-size: 19px;
        padding: 20px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hw-solution-h2-2297,
    .hw-solution-body-2297 {
        opacity: 1 !important;
        transition: none !important;
    }
    .hw-solution-claim-2297.hw-animate-glow {
        animation: none !important;
    }
}