/* Wrapper */
.pw-1cd4db55-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    font-family: 'Instrument Sans', sans-serif;
}

@media (max-width: 1024px) {
    .pw-1cd4db55-wrapper {
        flex-direction: column;
    }
}

/* Base Tier Styles */
.pw-1cd4db55-tier {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 42px;
    gap: 32px;
    flex: 1;
    min-height: 616px;
    position: relative;
}

.pw-1cd4db55-tier-standard {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #131313;
}

.pw-1cd4db55-tier-featured {
    background: #8B6565;
    color: #FFFFFF;
    padding-top: 48px; /* Extra padding for badge space */
    min-height: 776px;
    margin-top: -80px; /* To make it taller than others if aligned center */
    margin-bottom: -80px;
}

@media (max-width: 1024px) {
    .pw-1cd4db55-tier {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        min-height: auto;
    }
    .pw-1cd4db55-tier-featured {
        padding-top: 64px;
    }
}


/* Badge */
.pw-1cd4db55-badge-wrapper {
    position: absolute;
    top: 32px;
    left: 42px;
    display: flex;
}

.pw-1cd4db55-badge {
    padding: 4px 12px;
    background: #FFFFFF;
    color: #404040;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}

/* Header */
.pw-1cd4db55-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.pw-1cd4db55-tier-featured .pw-1cd4db55-header {
    margin-top: 24px; /* Gap below the badge */
}

.pw-1cd4db55-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
}

.pw-1cd4db55-price {
    font-weight: 700;
    font-size: 36px;
    line-height: 64px;
    letter-spacing: -1.12px;
}

.pw-1cd4db55-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4A6267;
    margin-top: 8px;
}

.pw-1cd4db55-tier-featured .pw-1cd4db55-desc {
    color: #FFFFFF;
}


/* Features List */
.pw-1cd4db55-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    flex-grow: 1; /* Pushes button to bottom */
}

.pw-1cd4db55-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.pw-1cd4db55-divider {
    width: 16px;
    height: 1px;
    background: #BFC8CA;
    flex: none;
}

.pw-1cd4db55-divider-white {
    width: 16px;
    height: 1px;
    background: #FFFFFF;
    flex: none;
}

.pw-1cd4db55-feature-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}


/* Footer / Button */
.pw-1cd4db55-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 32px;
    width: 100%;
    margin-top: auto;
}

.pw-1cd4db55-tier-featured .pw-1cd4db55-footer {
    padding-top: 64px;
}

.pw-1cd4db55-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    width: 100%;
    height: 56px;
    background: #8B6565;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.pw-1cd4db55-btn:hover {
    opacity: 0.9;
    color: inherit;
}

.pw-1cd4db55-tier-featured .pw-1cd4db55-btn {
    background: #FFFFFF;
    color: #363636;
}