/* Blog Page Specific Styles */

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav .separator {
    color: #6c757d;
}

.breadcrumb-nav .current {
    color: #6c757d;
    font-weight: 500;
}

/* Article Header */
.article-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 500;
}

.reading-time {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Article Hero Image */
.article-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.3), rgba(21, 101, 192, 0.3));
    z-index: 1;
}

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

/* Article Content */
.article-content {
    padding: 4rem 0;
}

.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.article-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-quote {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    font-style: italic;
    position: relative;
}

.article-quote p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.article-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.timeline-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-left: 2px solid #e9ecef;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 1.5rem;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-list li:last-child {
    border-left-color: transparent;
}

/* Tech Specs Section */
.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.spec-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.spec-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item li:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: var(--primary-color);
    display: inline;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #dee2e6;
}

.highlight-box h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

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

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Related Projects */
.related-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.related-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    flex-shrink: 0;
}

.related-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.related-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 0.5rem;
}

.related-link {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.related-link:hover {
    text-decoration: underline;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Newsletter Signup */
.newsletter-signup p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.75rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* More News Section */
.more-news {
    background: #f8f9fa;
    padding: 4rem 0;
}

.more-news h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.news-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.news-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.news-date {
    color: #666;
}

.news-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.news-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e68900;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-hero {
        height: 40vh;
    }
    
    .tech-specs {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .highlight-box {
        padding: 2rem 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .stats-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 2rem 0 1.5rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1.15rem;
    }
    
    .article-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }
    
    .article-quote {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .article-quote p {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        padding: 1.5rem 1rem;
    }
    
    .more-news h2 {
        font-size: 2rem;
    }
}

/* Iceland Data Center Hero Section */
.iceland-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d7a8f 50%, #1a1a1a 100%);
    overflow: hidden;
    color: white;
}

.iceland-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
}

.iceland-hero .hero-overlay-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.iceland-hero .project-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.iceland-hero .hero-text-block {
    flex: 1;
    max-width: 600px;
}

.iceland-hero .project-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.iceland-hero .project-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.iceland-hero .hero-logo-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.iceland-hero .hero-giga-logo {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .iceland-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .iceland-hero .project-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .iceland-hero .hero-text-block {
        max-width: 100%;
    }
    
    .iceland-hero .hero-logo-block {
        justify-content: center;
    }
}

/* Nordic Expansion Hero Section */
.nordic-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d7a8f 50%, #1a1a1a 100%);
    overflow: hidden;
    color: white;
}

.nordic-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
}

.nordic-hero .hero-overlay-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.nordic-hero .project-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.nordic-hero .hero-text-block {
    flex: 1;
    max-width: 600px;
}

.nordic-hero .project-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.nordic-hero .project-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.nordic-hero .hero-logo-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nordic-hero .hero-giga-logo {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nordic-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .nordic-hero .project-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nordic-hero .hero-text-block {
        max-width: 100%;
    }
    
    .nordic-hero .hero-logo-block {
        justify-content: center;
    }
}

/* GIGA-42 Hero Section */
.giga-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #355d5d 0%, #82a5a2 50%, #1a1a1a 100%);
    overflow: hidden;
    color: white;
}

.giga-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
}

.giga-hero .hero-overlay-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.giga-hero .project-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.giga-hero .hero-text-block {
    flex: 1;
    max-width: 600px;
}

.giga-hero .project-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.giga-hero .project-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.giga-hero .hero-logo-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.giga-hero .hero-giga-logo {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .giga-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .giga-hero .project-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .giga-hero .hero-text-block {
        max-width: 100%;
    }
    
    .giga-hero .hero-logo-block {
        justify-content: center;
    }
}