/*
  Eye-catchy style (requested):
  - Red block with drop shadow
  - Bigger white text
  - White button with red text + icon
  - Button aligned on the same line as the text
*/

.ppb-block-wrapper {
    border: 0;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.26);
}

.ppb-style-banner.ppb-block-wrapper {
    border-radius: 0;
}

.ppb-align-left {
    text-align: left;
}

.ppb-align-center {
    text-align: center;
}

.ppb-align-center .ppb-grid {
    justify-content: center;
}

.ppb-align-center .ppb-copy {
    text-align: center;
}

.ppb-align-right {
    text-align: right;
}

.ppb-align-right .ppb-grid {
    justify-content: flex-end;
}

.ppb-align-right .ppb-copy {
    text-align: right;
}

.ppb-inner {
    max-width: 920px;
    margin: 0 auto;
}

.ppb-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ppb-copy {
    flex: 1;
    min-width: 240px;
}

.ppb-heading {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: 0.01em;
}

.ppb-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    opacity: 0.95;
}

.ppb-button-wrap {
    flex: 0 0 auto;
}

.ppb-pin-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid currentColor;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
    white-space: nowrap;
}

.ppb-pin-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.22);
    filter: brightness(1.02);
}

.ppb-pin-icon i {
    font-size: 20px;
    line-height: 1;
}

.ppb-pin-label {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .ppb-inner {
        max-width: 100%;
    }
    .ppb-block-wrapper {
        padding: 16px 16px;
    }

    .ppb-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .ppb-button-wrap {
        margin-top: 12px;
    }

    .ppb-pin-button {
        justify-content: center;
        width: 100%;
    }
}
