/* Blog Specific Styles */

:root {
    --blog-body: #475569;
    --blog-heading: #1e293b;
    --blog-accent: #0ea5e9;
    --blog-bg: #f8fafc;
}

.blog-hero-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(var(--blog-accent) 0.5px, transparent 0.5px);
    background-size: 32px 32px;
    background-attachment: fixed;
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.15);
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--blog-body);
}

.blog-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--blog-heading);
}

.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--blog-heading);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
    color: var(--blog-body);
}

.summary-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--blog-accent);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2.5rem 0;
}

.pro-tip-box {
    background: #1e293b;
    color: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.pro-tip-box::before {
    content: "💡";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    opacity: 0.1;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-table th {
    background: #0ea5e9;
    color: white;
    text-align: left;
    padding: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:nth-child(even) {
    background: #f8fafc;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-trigger {
    background: white;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger:hover {
    background: #f1f5f9;
}

.faq-content {
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.cta-box {
    background: linear-gradient(135deg, #020780 0%, #0ea5e9 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .blog-table {
        display: block;
        overflow-x: auto;
    }
}
