/* All-Inclusive Paket — Split layout */

.p3-all-inclusive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
}

/* Image side */
.p3-all-inclusive-image {
    position: relative;
    min-height: 500px;
}

.p3-all-inclusive-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content side */
.p3-all-inclusive-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    background: #ffffff;
}

.p3-all-inclusive-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0b0620;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.p3-all-inclusive-content .p3-ai-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 2rem;
}

/* Checklist */
.p3-ai-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.p3-ai-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    font-weight: 500;
    color: #0b0620;
}

.p3-ai-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #00851a, #167b35);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(11, 98, 0, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Guarantee highlight */
.p3-ai-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0faf0;
    border: 1px solid #d0e8d0;
    color: #0b0620;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 22px;
    font-weight: 500;
}

.p3-ai-guarantee strong {
    font-size: 32px;
    line-height: 1;
    color: #00851a;
    white-space: nowrap;
}

/* Bullet points */
.p3-ai-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.p3-ai-points li {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.p3-ai-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00851a;
    font-weight: 700;
}

/* Subtext below CTA */
.p3-ai-subtext {
    font-size: 13px;
    color: #6b7280;
    margin: 0.5rem 0 0;
}

/* CTA */
.p3-all-inclusive-content .wp-block-button__link {
    background: linear-gradient(135deg, #00851a, #167b35) !important;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(11, 98, 0, 0.25);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.p3-all-inclusive-content .wp-block-button__link:hover {
    box-shadow: 0 6px 20px rgba(11, 98, 0, 0.35);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .p3-all-inclusive {
        grid-template-columns: 1fr;
    }

    .p3-all-inclusive-image {
        min-height: 300px;
    }

    .p3-all-inclusive-content {
        padding: 2.5rem 1.5rem;
    }

    .p3-ai-guarantee {
        padding: 0.75rem 1rem;
        font-size: 14px;
        gap: 0.5rem;
    }

    .p3-ai-guarantee strong {
        font-size: 22px;
    }

    .p3-all-inclusive-content .wp-block-buttons {
        justify-content: center;
    }
}
