/* Design System Variables */
:root {
    --pcta-space-label-title: 10px;
    --pcta-space-title-body: 20px;
    --pcta-space-body-btn: 32px;
    --pcta-btn-pad-v: 16px;
    --pcta-btn-pad-h: 26px;
    --pcta-max-width: 600px;
}

.pcta-wrapper {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

/* Alignments */
.pcta-align-left .pcta-wrapper {
    align-items: flex-start;
    text-align: left;
}
.pcta-align-center .pcta-wrapper {
    align-items: center;
    text-align: center;
}

/* Typography & Spacing */
.pcta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: var(--pcta-space-label-title);
}

.pcta-title {
    margin: 0 0 var(--pcta-space-title-body) 0;
    max-width: 800px;
}

.pcta-title-hero {
    font-size: clamp(56px, 5vw, 96px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pcta-title-section {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pcta-body {
    font-size: 17px;
    line-height: 1.65;
    max-width: var(--pcta-max-width);
    margin-bottom: var(--pcta-space-body-btn);
    color: inherit;
    opacity: 0.85;
}

.pcta-body p:last-child { margin-bottom: 0; }

/* Buttons */
.pcta-actions {
    display: flex;
    gap: 16px;
}

.pcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--pcta-btn-pad-v) var(--pcta-btn-pad-h);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pcta-btn-outline {
    background: transparent;
}

.pcta-btn-ghost {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.pcta-btn-ghost:hover {
    gap: 12px;
}

/* Block Type Specifics */
.pcta-type-cta_strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 24px 40px;
    border-radius: 8px;
}
.pcta-type-cta_strip .pcta-title {
    margin: 0;
    font-size: 24px;
}

.pcta-type-cta_card {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .pcta-wrapper { padding: 40px 0; }
    .pcta-type-cta_strip {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}
