/* blog-dark-theme.css — shared styles for blog post & hub pages (idgod.ph) */

.s-blog-post {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e9e9e9;
    background-color: #202020;
}

.s-blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.s-blog-post .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #cfcfcf;
}

.s-blog-post .content {
    background: #262626;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.s-blog-post h2 {
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3a3a3a;
}

.s-blog-post h3 {
    margin: 1.5rem 0 0.5rem;
}

.s-blog-post p {
    margin-bottom: 1rem;
    color: #e9e9e9;
}

.s-blog-post ul,
.s-blog-post ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.s-blog-post li {
    margin-bottom: 0.5rem;
    color: #e9e9e9;
}

.s-blog-post .highlight-box {
    background: #272a31;
    border-left: 4px solid #79030e;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.s-blog-post .state-card {
    background: #262626;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #79030e;
}

.s-blog-post .state-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.s-blog-post .success-rate {
    background: #6ea8ff;
    color: #0e0e0e;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
}

.s-blog-post .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.s-blog-post .feature-card {
    background: #262626;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.35);
}

.s-blog-post .feature-card h4 {
    margin-bottom: 0.5rem;
}

.s-blog-post table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    color: #e9e9e9;
}

.s-blog-post th,
.s-blog-post td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
}

.s-blog-post th {
    background: #2c2c2c;
    font-weight: bold;
}

.s-blog-post tr:hover {
    background: rgba(255,255,255,0.04);
}

.s-blog-post .cta-section {
    background: #2c2c2c;
    color: #e9e9e9;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.s-blog-post .cta-section h2 {
    border: none;
}

.s-blog-post .btn {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 1rem 0.5rem;
    transition: background 0.3s;
}

.s-blog-post .btn:hover {
    background: #e55a00;
}

.s-blog-post .btn-secondary {
    background: transparent;
    border: 2px solid #e9e9e9;
    color: #e9e9e9;
}

.s-blog-post .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.s-blog-post .disclaimer {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-style: italic;
    margin-top: 2rem;
    text-align: center;
}

.s-blog-post .emphasized {
    font-weight: 600;
}

.s-blog-post .hero-image-wrapper {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: #2a2a2a;
}

.s-blog-post .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .s-blog-post h1 {
        font-size: 2rem;
    }

    .s-blog-post .content {
        padding: 1.5rem;
    }

    .s-blog-post .state-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .s-blog-post .success-rate {
        margin-top: 0.5rem;
    }

    .s-blog-post .features-grid {
        grid-template-columns: 1fr;
    }

    .s-blog-post .cta-section {
        padding: 2rem 1.5rem;
    }

    .s-blog-post .hero-image-wrapper {
        max-height: 260px;
        border-radius: 8px;
    }
}
