/* Content Strategy article specific styles */

/* Article layout */
.article-content {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* Hero graphic */
.hero-graphic {
    margin: 2rem 0 3rem;
    border-radius: 8px;
    overflow: hidden;
}

/* SVG animations */
.pulse-circle {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { 
        stroke-width: 2;
        stroke-opacity: 0.8;
    }
    50% { 
        stroke-width: 6;
        stroke-opacity: 1;
    }
    100% { 
        stroke-width: 2;
        stroke-opacity: 0.8;
    }
}

.floating-element {
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.growth-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 3s 0.5s forwards ease-in-out;
}

@keyframes dash {
    to { stroke-dashoffset: 0; }
}

.growth-point {
    opacity: 0;
    animation: appear 0.5s forwards ease-in-out;
    animation-delay: 3s;
}

.growth-point:nth-child(2) { animation-delay: 1.2s; }
.growth-point:nth-child(3) { animation-delay: 1.7s; }
.growth-point:nth-child(4) { animation-delay: 2.2s; }
.growth-point:nth-child(5) { animation-delay: 2.7s; }

@keyframes appear {
    to { opacity: 1; }
}

.step-box {
    transition: all 0.3s ease;
}

.step-box:hover {
    fill: #1a1a1a;
    transform: translateY(-5px);
}

/* Introduction styling */
.introduction {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d0d0d0;
    border-left: 3px solid #4D36DC;
    padding-left: 1.5rem;
}

.introduction p {
    margin-bottom: 1.2rem;
}

/* Section styling */
.article-section {
    margin-bottom: 4rem;
}

.article-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accent-emoji {
    font-size: 1.8rem;
    color: #d0d0d0;
}

/* Strategy benefits */
.strategy-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #4D36DC;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #191919;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Blueprint steps */
.blueprint-graphic {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blueprint-steps-detail {
    margin-top: 3rem;
}

.step-detail {
    margin-bottom: 2.5rem;
    padding-left: 3rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #4D36DC;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-detail h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-detail ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.step-detail li {
    margin-bottom: 0.7rem;
    color: #bbb;
}

.step-detail strong {
    color: #8A65FF;
}

/* Business stages */
.business-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stage-card {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stage-card:hover {
    transform: translateY(-5px);
    background-color: #191919;
}

.stage-card h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    text-align: center;
    font-size: 1.3rem;
}

.stage-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.stage-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.stage-card li {
    margin-bottom: 0.7rem;
    color: #bbb;
}

/* Efficiency strategies */
.efficiency-strategies {
    margin: 2rem 0;
}

.strategy-item {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.strategy-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.atomization-graphic {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.strategy-item ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.strategy-item li {
    margin-bottom: 0.7rem;
    color: #bbb;
}

/* Measurement matrix */
.measurement-matrix {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.matrix-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background-color: #1a1a1a;
}

.header-cell {
    padding: 1rem;
    font-weight: bold;
    color: #fff;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.row-cell {
    padding: 1rem;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    background-color: #151515;
}

.row-cell:last-child {
    border-right: none;
}

.matrix-row:last-child .row-cell {
    border-bottom: none;
}

.row-cell ul {
    margin: 0;
    padding-left: 1.2rem;
}

.row-cell li {
    margin-bottom: 0.5rem;
    color: #bbb;
}

.measurement-tip {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 3px solid #4D36DC;
}

/* Pitfalls list */
.pitfalls-list {
    margin: 2rem 0;
}

.pitfall {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #8A65FF;
}

.pitfall h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Conclusion */
.conclusion {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 4rem;
}

.article-cta {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background-color: #151515;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #4D36DC;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.article-cta:hover {
    transform: translateY(-5px);
    background-color: #191919;
}

.article-cta p {
    font-size: 1.2rem;
    color: #fff;
}

/* Article navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #222;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-to-articles, .prev-article, .next-article {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background-color: #151515;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: none;
}

.back-to-articles:hover, .prev-article:hover, .next-article:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strategy-benefits, .business-stages {
        grid-template-columns: 1fr;
    }
    
    .matrix-header, .matrix-row {
        grid-template-columns: 1fr;
    }
    
    .header-cell, .row-cell {
        border-right: none;
    }
    
    .article-nav {
        flex-direction: column;
    }
}

/* Make sure header is not sticky */
header {
    position: static !important;
} 