/* ── Lablulu Content Creator — Frontend Post Styles ──────────────────────── */

/* Tip list — Section 3 */
.lcc-tip-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.lcc-tip-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    line-height: 1.6;
}
.lcc-tip-list li:last-child { border-bottom: none; }
.lcc-tip-list li:hover { background: #f8fafc; border-radius: 6px; }

/* Learn list — Section 4 */
.lcc-learn-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 640px) {
    .lcc-learn-list { grid-template-columns: 1fr; }
}
.lcc-learn-list li {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #166534;
}

/* Activity list — Section 5 */
.lcc-activity-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.lcc-activity-list li {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonials — Section 7 */
.lcc-testimonial {
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    padding: 24px 28px 20px;
    margin: 14px 0;
    font-style: normal;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    position: relative;
}
.lcc-testimonial::before {
    content: '\201C';
    font-size: 52px;
    color: #e2e8f0;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}
.lcc-testimonial p {
    margin: 0 0 10px;
    padding-left: 24px;
}
.lcc-testimonial cite {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    padding-left: 24px;
}

/* FAQ wrapper — Section 9 */
.lcc-faq {
    margin: 16px 0 24px;
}
.lcc-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 12px;
    background: #fff;
    transition: box-shadow 0.15s;
}
.lcc-faq-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.lcc-faq-item h3 {
    color: #1d4ed8;
    font-size: 16px;
    margin: 0 0 12px;
    line-height: 1.4;
}
.lcc-faq-item p {
    color: #4b5563;
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* Intro & conclusion */
p.intro, p.lcc-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    border-left: 4px solid #f59e0b;
    padding-left: 18px;
    margin-bottom: 24px;
}
p.conclusion, p.lcc-conclusion {
    background: #eff6ff;
    border-radius: 10px;
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Responsive iframes */
.wp-block-embed__wrapper iframe,
article iframe[src*="youtube"] {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 10px;
}
