@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+Telugu:wght@400;500;600;700&display=swap');

.blog-post-card {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: 'Inter', 'Noto Sans Telugu', sans-serif;
    color: #0f172a;
    line-height: 1.7;
}

.post-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 40px 36px;
}

.post-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.post-header h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
}

.post-header p {
    color: #cbd5e1 !important;
    margin-bottom: 0 !important;
}

.post-content {
    padding: 36px;
}

.section-heading {
    font-size: 1.45rem;
    font-weight: 700 !important;
    margin-bottom: 12px;
    color: #1e293b !important;
    font-family: 'Inter', sans-serif !important;
}

.intro-desc {
    color: #475569 !important;
    margin-bottom: 28px !important;
}

.step-block {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title .step-number {
    background: #eff6ff;
    color: #2563eb;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

ul.step-list {
    list-style: none;
    padding-left: 0;
}

ul.step-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #334155;
}

ul.step-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #2563eb;
    font-weight: bold;
}

.command-card {
    background-color: #0f172a;
    color: #38bdf8;
    font-family: monospace;
    font-size: 0.92rem;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 12px 0;
}

.path-card {
    background-color: #f1f5f9;
    border-left: 4px solid #2563eb;
    font-family: monospace;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin: 12px 0;
}

.success-card {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #16a34a;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 32px;
    color: #14532d;
    display: flex;
    gap: 14px;
}

.post-footer {
    border-top: 1px solid #e2e8f0;
    padding: 20px 36px;
    background-color: #f8fafc;
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #475569;
}