/* Wilnick AI Summary – Frontend block */

.was-block {
    position: relative;
    border-radius: 12px;
    padding: 20px 20px 20px 28px;
    margin: 28px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.was-block__title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.was-block__summary {
    margin: 0 0 16px;
    color: #333;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
}

.was-block__ask-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
    font-weight: 600;
}

.was-block__ask-label .was-label-plain {
    color: #aaa;
    font-weight: 500;
}

.was-block__ask-label .was-label-accent {
    font-weight: 700;
}

.was-block__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.was-ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.2s, transform 0.15s;
}

.was-ai-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: scale(1.08);
}

.was-ai-btn__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.was-ai-btn__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media ( max-width: 480px ) {
    .was-block {
        padding: 16px 16px 16px 22px;
    }
    .was-ai-btn {
        width: 40px;
        height: 40px;
    }
}
