/* Article Page Styles */

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f2f4f7 100%);
    padding: 80px 0 40px;
    border-bottom: 1px solid #e4e7ec;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #98a2b3;
}

.breadcrumb a {
    color: #f79009;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #98a2b3;
}

.article-category {
    background: #f79009;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 20px;
    color: #475467;
    margin-bottom: 32px;
    line-height: 1.5;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #101828;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: #98a2b3;
}

/* Featured Image */
.article-featured-image {
    padding: 40px 0;
    background: #ffffff;
}

.featured-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

/* Article Content */
.article-content {
    padding: 40px 0;
    background: #ffffff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-body {
    max-width: none;
}

/* Executive Summary */
.executive-summary {
    background: linear-gradient(135deg, #f79009 0%, #dc6803 100%);
    color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.executive-summary h2 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 24px;
}

.executive-summary p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 24px;
    border-bottom: 2px solid #f79009;
    padding-bottom: 12px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #475467;
    margin-bottom: 20px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 8px;
}

.content-section strong {
    color: #101828;
    font-weight: 600;
}

/* Blockquotes */
blockquote {
    background: #f9fafb;
    border-left: 4px solid #f79009;
    padding: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 18px;
    color: #475467;
    border-radius: 0 8px 8px 0;
}

/* Tables */
.etf-table {
    overflow-x: auto;
    margin: 32px 0;
}

.etf-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.etf-table th {
    background: #f79009;
    color: #ffffff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.etf-table td {
    padding: 16px;
    border-bottom: 1px solid #e4e7ec;
}

.etf-table tr:hover {
    background: #f9fafb;
}

/* Price Levels */
.price-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.level.resistance {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    color: #dc2626;
}

.level.current {
    background: #f0f9ff;
    border: 2px solid #60a5fa;
    color: #2563eb;
}

.level.support {
    background: #f0fdf4;
    border: 2px solid #86efac;
    color: #16a34a;
}

.level-price {
    font-size: 18px;
}

.level-label {
    font-size: 14px;
}

/* Predictions */
.predictions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.prediction {
    background: #ffffff;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.prediction:hover {
    border-color: #f79009;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.prediction-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f79009;
    margin-bottom: 8px;
}

.prediction-source {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 4px;
}

.prediction-timeframe {
    font-size: 12px;
    color: #98a2b3;
}

/* Conclusion */
.conclusion {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #f79009;
}

.conclusion h2 {
    color: #101828;
    margin-bottom: 20px;
}

.conclusion p {
    font-size: 16px;
    line-height: 1.7;
    color: #475467;
    margin-bottom: 16px;
}

/* Article Tags */
.article-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 48px 0;
    padding-top: 32px;
    border-top: 1px solid #e4e7ec;
}

.tag {
    background: #f2f4f7;
    color: #475467;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #f79009;
    color: #ffffff;
}

/* Share Buttons */
.article-share {
    margin: 48px 0;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.article-share h3 {
    margin-bottom: 20px;
    color: #101828;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.facebook {
    background: #4267b2;
    color: #ffffff;
}

.share-btn.telegram {
    background: #0088cc;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 16px;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: #f9fafb;
}

.related-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.related-content h4 a {
    color: #101828;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #f79009;
}

.related-date {
    font-size: 12px;
    color: #98a2b3;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #f79009 0%, #dc6803 100%);
    color: #ffffff;
    border: none;
}

.newsletter-widget h3 {
    color: #ffffff;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    background: #ffffff;
    color: #f79009;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f2f4f7;
}

/* Market Data */
.market-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e4e7ec;
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: #98a2b3;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #101828;
}

.stat-change {
    font-size: 14px;
    font-weight: 600;
}

.stat-change.positive {
    color: #16a34a;
}

.stat-change.negative {
    color: #dc2626;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    
    .article-subtitle {
        font-size: 18px;
    }
    
    .key-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .executive-summary {
        padding: 24px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .price-levels {
        gap: 12px;
    }
    
    .level {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .predictions {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 60px 0 32px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .featured-img {
        height: 250px;
    }
    
    .executive-summary {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

