/* News Article Specific Styles */
.article-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: #666;
}

.article-date, .article-category, .article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.article-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 50px 0 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin: 35px 0 20px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.content-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 40px 0;
    position: relative;
}

.content-divider::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #27ae60;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
}

.highlight-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #27ae60;
    font-style: italic;
    border-left: 4px solid #27ae60;
    padding: 20px 30px;
    background-color: rgba(39, 174, 96, 0.05);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.feature-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #27ae60;
    font-size: 16px;
}

.case-study-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #27ae60;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.case-study-header i {
    font-size: 24px;
    color: #27ae60;
}

.case-study-header h3 {
    margin: 0;
    color: #333;
}

.results-highlight {
    background-color: #27ae60;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.results-highlight .stat {
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.benefit-item p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.use-cases-container {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.use-cases-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.use-cases-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.use-cases-list li:last-child {
    border-bottom: none;
}

.use-case-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
}

.use-cases-list li i {
    color: #27ae60;
    font-size: 18px;
}

.implementation-container {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.implementation-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.implementation-steps li {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e1e1e1;
    display: flex;
    align-items: flex-start;
}

.implementation-steps li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.tech-container {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.tech-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tech-list li i {
    color: #27ae60;
}

.strategy-item {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.strategy-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.strategy-item p {
    margin-bottom: 0;
}

.benefits-list {
    padding-left: 20px;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 5px;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

.challenges-table {
    margin: 30px 0;
    overflow-x: auto;
}

.challenges-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.challenges-table th {
    background-color: #27ae60;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.challenges-table td {
    padding: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.challenges-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.service-list, .success-stories {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.service-list li, .success-stories li {
    position: relative;
    padding: 15px 15px 15px 35px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-list li:before, .success-stories li:before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 15px;
    color: #27ae60;
    font-weight: bold;
}

.service-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

.cta-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f7fa;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cta-section h2 {
    margin-top: 0;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #219653;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #27ae60;
    color: white;
}

.related-articles {
    background-color: #f5f7fa;
    padding: 60px 0;
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 25px;
}

.article-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #27ae60;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.article-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
}

.article-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.code-block {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 5px;
    margin: 25px 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-x: auto;
    max-height: 400px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.code-block code {
    display: block;
    padding: 15px;
}

.language-vba {
    color: #333;
}

.language-vba .comment {
    color: #008000;
}

.language-vba .keyword {
    color: #0000FF;
    font-weight: bold;
}

.language-vba .string {
    color: #A31515;
}

.language-vba .function {
    color: #795E26;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .article-content {
        padding: 40px 0;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .strategy-item {
        padding: 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .implementation-steps li {
        padding-left: 50px;
    }
    
    .challenges-table {
        overflow-x: auto;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
} 