.pt-216-wrapper {
    font-family: inherit;
    color: #333;
	--pt-216-glow-1: rgba(238, 85, 31, 0.4);
	--pt-216-glow-2: rgba(123, 167, 162, 0.2);
}

.pt-216-grid {
    display: grid;
    gap: 30px;
    align-items: stretch; /* Force all cards in a row to have the exact same height */
}

.pt-216-grid.columns-1 { grid-template-columns: 1fr; }
.pt-216-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.pt-216-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.pt-216-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .pt-216-grid.columns-3, .pt-216-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pt-216-grid {
        grid-template-columns: 1fr !important;
    }
}

.pt-216-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure card takes full height of the grid cell */
}

.pt-216-card.featured {
    border-color: #0d6efd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(1.02);
    z-index: 1;
}

@media (max-width: 767px) {
	.pt-216-card.featured {
		transform: none;
	}
}

.pt-216-hover-lift .pt-216-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pt-216-hover-glow .pt-216-card:hover {
    box-shadow: 0 0 20px 5px var(--pt-216-glow-1), 0 0 40px 10px var(--pt-216-glow-2);
    transform: translateY(-5px);
}

.pt-216-hover-scale .pt-216-card:hover {
    transform: scale(1.05);
}

.pt-216-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.pt-216-header {
    margin-bottom: 30px;
}

.pt-216-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pt-216-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0d6efd;
}
.pt-216-icon svg {
    width: 40px;
    height: 40px;
    fill: #0d6efd;
}

.pt-216-price-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-weight: 700;
}

.pt-216-currency {
    font-size: 20px;
    margin-top: 5px;
    margin-right: 2px;
}

.pt-216-price {
    font-size: 48px;
    line-height: 1;
    display: none;
}

.pt-216-price.active {
    display: inline-block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }\n    to { opacity: 1; transform: translateY(0); }\n}

.pt-216-period {
    font-size: 16px;
    color: #888;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
}

.pt-216-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; /* Push the footer and button to the very bottom */
}

.pt-216-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-216-features li {
    padding: 12px 15px;
    border-bottom: none;
    display: flex;
    align-items: center;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.03), 1px 1px 5px rgba(0,0,0,0.05);
}

.pt-216-features li:last-child {
    margin-bottom: 0;
}

.pt-216-feature-icon {
    margin-right: 10px;
    color: #0d6efd;
}

.pt-216-footer {
    margin-top: auto; /* Acts as a backup safety net to push button down */
}

.pt-216-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.pt-216-btn:hover {
    opacity: 0.9;
    color: #fff;
}
