/**
 * Benefits Tags Block - Frontend Styles
 * Matches VIPBC theme styling
 */

.benefits-tags-block-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.benefits-tags-block-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-tags-top-title {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.benefits-tags-main-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 1.5rem;
    color: #172541;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.benefits-tags-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 3rem;
    color: #172541;
    text-align: center;
    max-width: 800px;
}

.benefits-tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefits-tag-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    background-color: #F4EFE6;
    flex: 0 0 auto;
}

.benefits-tag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CCA43B;
    flex-shrink: 0;
}

.benefits-tag-icon svg {
    width: 10px;
    height: 10px;
    color: #FFFFFF;
}

.benefits-tag-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: inherit;
}

/* Responsive Design */
@media screen and (max-width: 768px) {

    .benefits-tags-main-heading {
        font-size: 1.75rem;
    }

    .benefits-tags-description {
        margin-bottom: 2rem;
    }

    .benefits-tags-grid {
        justify-content: flex-start;
        gap: 1rem;
        align-items: stretch;
    }

    .benefits-tag-item {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
}

/* Wide and Full Width Support */
.benefits-tags-block-wrapper.alignwide,
.benefits-tags-block-wrapper.alignfull {
    max-width: 100%;
}

.benefits-tags-block-wrapper.alignwide .benefits-tags-block-container,
.benefits-tags-block-wrapper.alignfull .benefits-tags-block-container {
    max-width: 100%;
    padding: 0 2rem;
}

