/* Blog Detail Page Styles */

/* Blog Hero Section */
.blog-hero {
    height: 70vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

[data-theme="dark"] .blog-hero-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(51, 1, 1, 0.7) 50%, 
        rgba(0, 0, 0, 0.85) 100%);
}

[data-theme="light"] .blog-hero-overlay {
    background: linear-gradient(135deg, 
        rgba(227, 186, 186, 0.9) 0%, 
        rgba(255, 240, 240, 0.8) 50%, 
        rgba(208, 162, 162, 0.9) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .blog-breadcrumb a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

[data-theme="light"] .blog-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: #E52222;
}

[data-theme="dark"] .blog-breadcrumb span {
    color: #666666;
}

[data-theme="light"] .blog-breadcrumb span {
    color: #999999;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

.blog-category {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 34, 34, 0.15);
    border: 1px solid #E52222;
    color: #E52222;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .blog-date,
[data-theme="dark"] .blog-read-time {
    color: #b0b0b0;
    font-size: 13px;
    letter-spacing: 1px;
}

[data-theme="light"] .blog-date,
[data-theme="light"] .blog-read-time {
    color: #666666;
    font-size: 13px;
    letter-spacing: 1px;
}

.blog-date i,
.blog-read-time i {
    color: #E52222;
    margin-right: 8px;
}

.blog-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .blog-hero-title {
    color: #ffffff;
}

[data-theme="light"] .blog-hero-title {
    color: #1a1a1a;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E52222;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

[data-theme="dark"] .author-name {
    color: #ffffff;
}

[data-theme="light"] .author-name {
    color: #1a1a1a;
}

[data-theme="dark"] .author-role {
    color: #b0b0b0;
    font-size: 12px;
}

[data-theme="light"] .author-role {
    color: #666666;
    font-size: 12px;
}

/* Blog Content Section */
.blog-content-section {
    padding: 100px 60px;
}

[data-theme="dark"] .blog-content-section {
    background: #000000;
}

[data-theme="light"] .blog-content-section {
    background: #ffffff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
    position: relative;
}

/* Social Share Sidebar */
.social-share-sidebar {
    position: sticky;
    top: 120px;
    left: -100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.share-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

[data-theme="dark"] .share-title {
    color: #666666;
}

[data-theme="light"] .share-title {
    color: #999999;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

[data-theme="dark"] .share-btn {
    background: #1a1a1a;
    color: #b0b0b0;
    border: 1px solid #2a2a2a;
}

[data-theme="light"] .share-btn {
    background: #f5f5f5;
    color: #666666;
    border: 1px solid #e8e8e8;
}

.share-btn:hover {
    transform: translateY(-3px);
    border-color: #E52222;
    background: #E52222;
    color: #ffffff;
}

/* Article Content */
.blog-main-content {
    position: relative;
}

.blog-article {
    margin-bottom: 60px;
}

.article-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 500;
}

[data-theme="dark"] .lead-text {
    color: #e0e0e0;
}

[data-theme="light"] .lead-text {
    color: #333333;
}

.article-body {
    font-size: 17px;
    line-height: 1.9;
}

[data-theme="dark"] .article-body {
    color: #b0b0b0;
}

[data-theme="light"] .article-body {
    color: #666666;
}

.article-body h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .article-body h2 {
    color: #ffffff;
}

[data-theme="light"] .article-body h2 {
    color: #1a1a1a;
}

.article-body p {
    margin-bottom: 25px;
}

.article-quote {
    position: relative;
    padding: 40px 50px;
    margin: 50px 0;
    border-left: 4px solid #E52222;
}

[data-theme="dark"] .article-quote {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

[data-theme="light"] .article-quote {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.article-quote i {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 30px;
    color: #E52222;
    opacity: 0.3;
}

.article-quote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

[data-theme="dark"] .article-quote p {
    color: #ffffff;
}

[data-theme="light"] .article-quote p {
    color: #1a1a1a;
}

.article-quote cite {
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .article-quote cite {
    color: #b0b0b0;
}

[data-theme="light"] .article-quote cite {
    color: #666666;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    padding: 30px;
    text-align: center;
    border: 1px solid;
    transition: all 0.3s ease;
}

[data-theme="dark"] .benefit-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .benefit-card {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #E52222;
}

[data-theme="dark"] .benefit-card:hover {
    background: #2a2a2a;
    box-shadow: 0 10px 30px rgba(229, 34, 34, 0.3);
}

[data-theme="light"] .benefit-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 34, 34, 0.15);
    border-radius: 50%;
    font-size: 28px;
    color: #E52222;
}

.benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .benefit-card h3 {
    color: #ffffff;
}

[data-theme="light"] .benefit-card h3 {
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 14px;
    margin: 0;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    margin: 30px 0;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #E52222;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.styled-list strong {
    color: #E52222;
}

.numbered-list {
    counter-reset: item;
    list-style: none;
    margin: 30px 0;
}

.numbered-list li {
    counter-increment: item;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #E52222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

/* Article Image */
.article-image {
    margin: 50px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    height: auto;
    border: 1px solid;
}

[data-theme="dark"] .article-image img {
    border-color: #2a2a2a;
}

[data-theme="light"] .article-image img {
    border-color: #e8e8e8;
}

.image-caption {
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
}

[data-theme="dark"] .image-caption {
    color: #666666;
}

[data-theme="light"] .image-caption {
    color: #999999;
}

/* Tech Specs */
.tech-specs {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.tech-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px;
    border-left: 3px solid #E52222;
}

[data-theme="dark"] .tech-item {
    background: #1a1a1a;
}

[data-theme="light"] .tech-item {
    background: #f5f5f5;
}

.tech-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E52222;
}

[data-theme="dark"] .tech-value {
    color: #ffffff;
}

[data-theme="light"] .tech-value {
    color: #1a1a1a;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin: 40px 0;
    border: 2px solid #E52222;
}

[data-theme="dark"] .info-box {
    background: rgba(229, 34, 34, 0.1);
}

[data-theme="light"] .info-box {
    background: rgba(229, 34, 34, 0.05);
}

.info-box-icon {
    font-size: 35px;
    color: #E52222;
    flex-shrink: 0;
}

.info-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .info-box h4 {
    color: #ffffff;
}

[data-theme="light"] .info-box h4 {
    color: #1a1a1a;
}

.info-box p {
    margin: 0;
}

/* Maintenance Schedule */
.maintenance-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.schedule-item {
    padding: 30px;
    text-align: center;
    border: 1px solid;
}

[data-theme="dark"] .schedule-item {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .schedule-item {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.schedule-frequency {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #E52222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.schedule-tasks {
    text-align: left;
}

.schedule-tasks ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.schedule-tasks li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.schedule-tasks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E52222;
    font-weight: bold;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
    margin: 50px 0 30px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

[data-theme="dark"] .article-tags {
    border-color: #2a2a2a;
}

[data-theme="light"] .article-tags {
    border-color: #e8e8e8;
}

.tags-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .tags-label {
    color: #b0b0b0;
}

[data-theme="light"] .tags-label {
    color: #666666;
}

.tag {
    padding: 8px 18px;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    transition: all 0.3s ease;
}

[data-theme="dark"] .tag {
    background: #1a1a1a;
    color: #b0b0b0;
    border-color: #2a2a2a;
}

[data-theme="light"] .tag {
    background: #f5f5f5;
    color: #666666;
    border-color: #e8e8e8;
}

.tag:hover {
    background: #E52222;
    color: #ffffff;
    border-color: #E52222;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    text-decoration: none;
    border: 1px solid;
    transition: all 0.3s ease;
}

[data-theme="dark"] .nav-prev,
[data-theme="dark"] .nav-next {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .nav-prev,
[data-theme="light"] .nav-next {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.nav-prev:hover,
.nav-next:hover {
    border-color: #E52222;
    transform: translateY(-5px);
}

[data-theme="dark"] .nav-prev:hover,
[data-theme="dark"] .nav-next:hover {
    background: #2a2a2a;
}

[data-theme="light"] .nav-prev:hover,
[data-theme="light"] .nav-next:hover {
    background: #ffffff;
}

.nav-prev i,
.nav-next i {
    font-size: 24px;
    color: #E52222;
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .nav-label {
    color: #666666;
}

[data-theme="light"] .nav-label {
    color: #999999;
}

.nav-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

[data-theme="dark"] .nav-title {
    color: #ffffff;
}

[data-theme="light"] .nav-title {
    color: #1a1a1a;
}

/* Comments Section */
.comments-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid;
}

[data-theme="dark"] .comments-section {
    border-color: #2a2a2a;
}

[data-theme="light"] .comments-section {
    border-color: #e8e8e8;
}

.comments-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .comments-title {
    color: #ffffff;
}

[data-theme="light"] .comments-title {
    color: #1a1a1a;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid;
}

[data-theme="dark"] .comment-item {
    border-color: #2a2a2a;
}

[data-theme="light"] .comment-item {
    border-color: #e8e8e8;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

[data-theme="dark"] .comment-author {
    color: #ffffff;
}

[data-theme="light"] .comment-author {
    color: #1a1a1a;
}

.comment-date {
    font-size: 12px;
}

[data-theme="dark"] .comment-date {
    color: #666666;
}

[data-theme="light"] .comment-date {
    color: #999999;
}

[data-theme="dark"] .comment-text {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 10px;
}

[data-theme="light"] .comment-text {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comment-reply {
    color: #E52222;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.comment-reply:hover {
    opacity: 0.8;
}

/* Comment Form */
.comment-form {
    margin-top: 50px;
    padding: 40px;
    border: 1px solid;
}

[data-theme="dark"] .comment-form {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .comment-form {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.comment-form h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .comment-form h4 {
    color: #ffffff;
}

[data-theme="light"] .comment-form h4 {
    color: #1a1a1a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .comment-form input,
[data-theme="dark"] .comment-form textarea {
    background: #0a0a0a;
    border-color: #2a2a2a;
    color: #ffffff;
}

[data-theme="light"] .comment-form input,
[data-theme="light"] .comment-form textarea {
    background: #ffffff;
    border-color: #d0d0d0;
    color: #1a1a1a;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #E52222;
}

[data-theme="dark"] .comment-form input:focus,
[data-theme="dark"] .comment-form textarea:focus {
    box-shadow: 0 0 20px rgba(229, 34, 34, 0.3);
}

[data-theme="light"] .comment-form input:focus,
[data-theme="light"] .comment-form textarea:focus {
    box-shadow: 0 0 20px rgba(229, 34, 34, 0.2);
}

.comment-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px 40px;
    background: #E52222;
    color: #ffffff;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #8B0000;
    transform: translateY(-3px);
}

[data-theme="dark"] .btn-submit:hover {
    box-shadow: 0 10px 30px rgba(229, 34, 34, 0.5);
}

[data-theme="light"] .btn-submit:hover {
    box-shadow: 0 10px 30px rgba(229, 34, 34, 0.3);
}

/* Sidebar */
.blog-sidebar {
    position: relative;
}

.sidebar-widget {
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid;
}

[data-theme="dark"] .sidebar-widget {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .sidebar-widget {
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E52222;
}

[data-theme="dark"] .widget-title {
    color: #ffffff;
}

[data-theme="light"] .widget-title {
    color: #1a1a1a;
}

/* Search Widget */
.search-widget {
    padding: 0;
    border: none;
    background: transparent;
}

.search-form {
    position: relative;
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 15px 60px 15px 20px;
    border: 1px solid;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
}

[data-theme="dark"] .search-form input {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ffffff;
}

[data-theme="light"] .search-form input {
    background: #f5f5f5;
    border-color: #e8e8e8;
    color: #1a1a1a;
}

.search-form input:focus {
    outline: none;
    border-color: #E52222;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55px;
    background: #E52222;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #8B0000;
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .category-list a {
    color: #b0b0b0;
}

[data-theme="light"] .category-list a {
    color: #666666;
}

.category-list a:hover {
    color: #E52222;
    padding-left: 10px;
}

.category-list span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(229, 34, 34, 0.15);
    color: #E52222;
    border-radius: 3px;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .recent-post-content h4 {
    color: #ffffff;
}

[data-theme="light"] .recent-post-content h4 {
    color: #1a1a1a;
}

.recent-post-item:hover h4 {
    color: #E52222;
}

.recent-post-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="dark"] .recent-post-date {
    color: #666666;
}

[data-theme="light"] .recent-post-date {
    color: #999999;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    padding: 8px 15px;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    transition: all 0.3s ease;
}

[data-theme="dark"] .tags-cloud a {
    background: #0a0a0a;
    color: #b0b0b0;
    border-color: #2a2a2a;
}

[data-theme="light"] .tags-cloud a {
    background: #ffffff;
    color: #666666;
    border-color: #d0d0d0;
}

.tags-cloud a:hover {
    background: #E52222;
    color: #ffffff;
    border-color: #E52222;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #E52222 0%, #8B0000 100%);
    border: none;
    text-align: center;
}

.cta-content i {
    font-size: 45px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #E52222;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Related Articles */
.related-articles {
    padding: 100px 60px;
}

[data-theme="dark"] .related-articles {
    background: #0a0a0a;
}

[data-theme="light"] .related-articles {
    background: #f5f5f5;
}

.related-articles .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-articles .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

[data-theme="dark"] .related-articles .section-title {
    color: #ffffff;
}

[data-theme="light"] .related-articles .section-title {
    color: #1a1a1a;
}

.related-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    border: 1px solid;
    transition: all 0.3s ease;
    overflow: hidden;
}

[data-theme="dark"] .related-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

[data-theme="light"] .related-card {
    background: #ffffff;
    border-color: #e8e8e8;
}

.related-card:hover {
    transform: translateY(-10px);
    border-color: #E52222;
}

[data-theme="dark"] .related-card:hover {
    box-shadow: 0 20px 40px rgba(229, 34, 34, 0.3);
}

[data-theme="light"] .related-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    background: #E52222;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.related-content {
    padding: 30px;
}

.related-content h3 {
    margin-bottom: 15px;
}

.related-content h3 a {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

[data-theme="dark"] .related-content h3 a {
    color: #ffffff;
}

[data-theme="light"] .related-content h3 a {
    color: #1a1a1a;
}

.related-content h3 a:hover {
    color: #E52222;
}

.related-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

[data-theme="dark"] .related-content p {
    color: #b0b0b0;
}

[data-theme="light"] .related-content p {
    color: #666666;
}

.related-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

[data-theme="dark"] .related-meta span {
    color: #666666;
}

[data-theme="light"] .related-meta span {
    color: #999999;
}

.related-meta i {
    color: #E52222;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-container {
        grid-template-columns: 1fr 300px;
        gap: 60px;
    }

    .social-share-sidebar {
        left: -80px;
    }
}

@media (max-width: 1024px) {
    .blog-hero {
        height: 60vh;
        min-height: 500px;
    }

    .blog-hero-content {
        padding: 0 40px;
    }

    .blog-hero-title {
        font-size: 38px;
    }

    .blog-content-section {
        padding: 80px 40px;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .social-share-sidebar {
        position: relative;
        top: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 40px;
    }

    .benefits-grid,
    .maintenance-schedule {
        grid-template-columns: 1fr;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-articles {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        margin-top: 70px;
        height: 50vh;
        min-height: 400px;
    }

    .blog-hero-content {
        padding: 0 20px;
    }

    .blog-hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .blog-meta {
        gap: 15px;
    }

    .blog-content-section {
        padding: 60px 20px;
    }

    .lead-text {
        font-size: 18px;
    }

    .article-body {
        font-size: 15px;
    }

    .article-body h2 {
        font-size: 24px;
        margin: 40px 0 20px;
    }

    .article-quote {
        padding: 30px 25px;
    }

    .article-quote p {
        font-size: 17px;
    }

    .tech-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-box {
        flex-direction: column;
    }

    .comment-item {
        flex-direction: column;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
    }

    .comment-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        padding: 25px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-articles {
        padding: 60px 20px;
    }

    .related-articles .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-quote p {
        font-size: 16px;
    }

    .comment-form {
        padding: 20px;
    }

    .related-articles .section-title {
        font-size: 28px;
    }
}