.blog-content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 152px;
  }
  
  .content-container {
    max-width: 1010px;  
    width: 100%;
    padding: 0 20px;
  }

.post-meta {
    color: #F5F5F4;
    box-shadow: 
        0 1px 4px rgba(255, 255, 255, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.blog-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
}

.post-intro {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #A1A1AA;
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
}

.post-section {
    margin-bottom: 40px;
}

.post-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;   
    margin-bottom: 20px;
    color: #fff;
}

.post-section p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.post-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-section li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.nav-button {
    font-family: 'Nunito Sans', sans-serif;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.nav-button.outline {
    border: 1px solid #A1A1AA;
    background: transparent;
}

.nav-button.outline:hover {
    opacity: 0.8;
}

.nav-button.cta {
    background: linear-gradient(to right, #0062FF, #00B2FF);
    border: none;
}

.nav-button.cta:hover {
    opacity: 0.9;
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

