/* SF Pro Display Font */
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

.blog-main {
    font-family: 'SF Pro Display', sans-serif;
    max-width: 900px;
    margin: 160px auto 80px;
    padding: 0 20px;
    color: var(--text-color);
}

/* Section Layout */
.blog-main section {
    display: block;
    width: 100%;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

/* Typography */
.blog-main h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-main h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 35px 0 15px;
}

.blog-main p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 20px;
}

/* Label */
.blog-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

/* Image */
.blog-img-box {
    width: 100%;
    margin: 25px 0;
}

.blog-img-box img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* CTA */
.cta {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-main {
        margin-top: 120px;
        text-align: center;
    }

    .blog-main h1,
    .blog-main h2,
    .blog-main p {
        text-align: center;
    }
}