/* HighPass Features Showcase Widget Styles */

.hp-features-showcase {
    width: 100%;
    padding: 4rem 2rem;
}

.hp-showcase-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e293b;
}

.hp-showcase-main-heading .highlight {
    position: relative;
    color: #6366f1;
    display: inline-block;
}

.hp-has-underline .hp-showcase-main-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #6366f1;
    border-radius: 2px;
}

.hp-showcase-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hp-image-right .hp-showcase-wrapper {
    flex-direction: row-reverse;
}

.hp-showcase-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.hp-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hp-showcase-content {
    flex: 1;
    padding: 2rem 0;
}

.hp-showcase-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    color: #1e293b;
}

.hp-showcase-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    color: #64748b;
}

.hp-showcase-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hp-showcase-button:hover {
    color: #4f46e5;
    transform: translateX(5px);
}

.hp-showcase-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hp-showcase-button:hover svg {
    transform: translateX(3px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hp-features-showcase {
        padding: 3rem 2rem;
    }

    .hp-showcase-main-heading {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 2.5rem;
    }

    .hp-showcase-wrapper {
        gap: 2rem;
    }

    .hp-showcase-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hp-showcase-wrapper {
        flex-direction: column;
    }

    .hp-image-right .hp-showcase-wrapper {
        flex-direction: column;
    }

    .hp-showcase-content {
        text-align: center;
        padding: 1rem 0;
    }

    .hp-showcase-title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .hp-showcase-description {
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hp-features-showcase {
        padding: 2rem 1rem;
    }

    .hp-showcase-main-heading {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 2rem;
    }

    .hp-showcase-wrapper {
        gap: 1.5rem;
    }

    .hp-showcase-content {
        padding: 0.5rem 0;
    }

    .hp-showcase-title {
        font-size: clamp(1.25rem, 2vw, 1.75rem);
        margin-bottom: 1rem;
    }

    .hp-showcase-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hp-showcase-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}
