/* Page-specific styles for blog.html (loaded after css/style.css) */

.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 12px;
}

.page-hero h1 span {
    color: var(--secondary);
}

.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.blog-embed-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-embed-wrap {
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
}
