/* Biblical Business Blog Custom Styles */

/* Image Styling - Override Tailwind */
img {
    border-radius: 1rem !important;
}

.rounded-2xl,
img.rounded-2xl,
.elementor img,
.elementor-widget img,
section img,
div img {
    border-radius: 1rem !important;
}

/* Specific override for aspect-square images */
.aspect-square {
    border-radius: 1rem !important;
}

/* Affiliate Disclosure Styling */
.affiliate-disclosure {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #92400e;
}

/* Blog Post Header */
.biblical-post-header {
    margin-bottom: 32px;
}

.biblical-post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.biblical-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 14px;
}

.video-reference {
    background-color: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.video-reference .label {
    color: #1d4ed8;
    font-weight: 500;
    font-size: 14px;
}

.video-reference .title {
    font-weight: 600;
    color: #1e40af;
}

/* Content Sections */
.biblical-section {
    margin-bottom: 32px;
}

.biblical-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.biblical-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

/* Key Insights Styling */
.key-insights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.insight-number {
    width: 24px;
    height: 24px;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.insight-number span {
    color: #d97706;
    font-weight: bold;
    font-size: 14px;
}

.insight-text {
    color: #374151;
    line-height: 1.7;
}

/* Scripture References */
.scripture-references {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scripture-item {
    background: linear-gradient(to right, #fef3c7, #dbeafe);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #f59e0b;
}

.scripture-reference {
    color: #d97706;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.scripture-verse {
    color: #111827;
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 16px;
    border-left: 4px solid #f59e0b;
    padding-left: 16px;
}

.scripture-application {
    color: #374151;
    line-height: 1.7;
}

.scripture-application strong {
    color: #111827;
}

/* Study Tip Box */
.study-tip {
    margin-top: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 16px;
}

.study-tip p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Call to Action */
.biblical-cta {
    background: linear-gradient(to right, #d97706, #b45309);
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-align: center;
    margin: 32px 0;
}

.biblical-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.biblical-cta p {
    color: #fef3c7;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.biblical-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: #d97706;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.biblical-cta a:hover {
    background-color: #fef3c7;
    transform: translateY(-2px);
}

/* Footer Disclaimers */
.biblical-disclaimers {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
    margin-top: 32px;
}

.disclaimer-box {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 24px;
    font-size: 14px;
    color: #6b7280;
}

.disclaimer-box h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.disclaimer-box ul {
    margin: 0;
    padding-left: 20px;
}

.disclaimer-box li {
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .biblical-post-title {
        font-size: 2rem;
    }
    
    .biblical-post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .video-reference {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .insight-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .insight-number {
        align-self: flex-start;
    }
    
    .biblical-cta {
        padding: 24px 16px;
    }
    
    .biblical-cta h3 {
        font-size: 1.25rem;
    }
    
    .biblical-cta a {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .biblical-cta,
    .affiliate-disclosure {
        display: none;
    }
    
    .biblical-post-title {
        color: #000;
    }
    
    .scripture-item {
        background: #f9f9f9;
        border: 1px solid #ccc;
    }
}