.bold-cta-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.bold-cta-title {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.bold-cta-subtitle {
    margin: 0 0 30px 0;
    font-size: 1.125rem;
    line-height: 1.5;
    max-width: 800px;
    align-self: inherit;
}

.bold-cta-wrapper[style*="text-align: center"] .bold-cta-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bold-cta-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    align-self: flex-start;
}

.bold-cta-wrapper[style*="text-align: center"] .bold-cta-button {
    align-self: center;
}

.bold-cta-wrapper[style*="text-align: right"] .bold-cta-button {
    align-self: flex-end;
}

.bold-cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: inherit;
}