/* BLOG STYLING TWEAKS */
.blog-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0.5rem 2.5rem;
    font-family: 'Red Hat Display', sans-serif;
    color: #1a1a1a;
    background: #f9fbfc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-content {
    padding: 70px;
    margin-top: 160px;
}

@media (max-width: 768px) {

    .blog-content {
        padding: 3rem 1.5rem;
    }

    .blog-content h1 {
        font-size: 2rem;
    }

}

/* Headlines */
.blog-content h1 {
    z-index: 10;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    color: #07203a;
    text-align: left;
    border-left: 4px solid #0099cc;
    padding-left: 12px;
}

/* Lead Paragraph */
.blog-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

/* Paragraphs */
.blog-content p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.blog-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.blog-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.05rem;
    text-align: left;
    padding-left: 2rem;
}

.blog-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0099cc;
    font-weight: bold;
}


/* CTA Links */
.blog-content a {
    color: #0099cc;
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover {
    text-decoration: underline;
}

/* HR Styling */
.blog-content hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 3rem 0 1.5rem;
}

/* Table Styling (if needed later) */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    text-align: left;
}

.blog-content table th {
    background-color: #07203a;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 4rem;
    color: #888;
}

.blog-meta {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    background: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid #004085;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.blog-meta strong {
    color: #000;
}

/* Image */
.blog-image {
    margin: 2rem 0;
    text-align: center;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}