/* Features: H1-H6 Styling, Professional Links, Gradient Borders, Code Block Styling, 
Responsive Tables, Blockquote Design, List Spacing */

.blog-content {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 17px;
}

/* Headings Styling */
.blog-content h1, .blog-content h2, .blog-content h3, 
.blog-content h4, .blog-content h5, .blog-content h6 {
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

/* Link Styling with Theme Color */
.blog-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 123, 255, 0.2);
    transition: 0.3s;
}

.blog-content a:hover {
    background: rgba(0, 123, 255, 0.1);
    border-bottom-color: #007bff;
    border-radius: 4px;
}

/* Code Block Styling (For Developers) */
.blog-content pre {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #333;
    margin: 20px 0;
}

.blog-content code {
    font-family: 'Courier New', Courier, monospace;
    color: #f8f8f2;
}

/* Table Styling */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #181818;
}

.blog-content table th, .blog-content table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: left;
}

.blog-content table th {
    background: #222;
    color: #007bff;
}

/* Blockquote Styling */
.blog-content blockquote {
    border-left: 5px solid #007bff;
    padding: 15px 25px;
    margin: 25px 0;
    background: #1e1e1e;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}
/* Features: Tech-Blue Gradient, Animated Underline expansion, Hover Glow Effect, External Link (target="_blank") Icon Support, No-follow Dashed Styling, Smooth Cubic-Bezier Transition, Target existing .post-content class */

.post-content a {
    color: #38bdf8 !important; /* Modern Tech Blue */
    text-decoration: none !important;
    font-weight: 600 !important;
    position: relative;
    padding: 0 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1.5px solid rgba(56, 189, 248, 0.3) !important;
}

/* Hover: Text white ho jayega aur background mein halka glow aayega */
.post-content a:hover {
    color: #fff !important;
    background-color: rgba(56, 189, 248, 0.2) !important;
    border-bottom-color: #38bdf8 !important;
    border-radius: 4px;
}

/* Underline Animation: Line dhire se phailti hui dikhegi */
.post-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -1.5px;
    left: 0;
    background-color: #38bdf8;
    transition: width 0.3s ease-in-out;
}

.post-content a:hover::after {
    width: 100%;
}

/* External Link Icon: FontAwesome icon (f08e) for new tab links */
.post-content a[target="_blank"]::after {
    content: "\f08e"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.8;
    display: inline-block;
    vertical-align: middle;
}

/* SEO No-follow Style: In links ki niche wali line dashed dikhegi */
.post-content a[rel*="nofollow"] {
    border-bottom-style: dashed !important;
}