/* Storytelling 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: 5px;
    overflow: hidden;
}

/* Introduction styling */
.introduction {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d0d0d0;
    border-left: 3px solid #333;
    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;
}

.section-graphic {
    margin: 1.5rem 0;
    border-radius: 5px;
    overflow: hidden;
}

/* Emoji styling */
.emoji {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Feature list */
.feature-list {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: #151515;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.feature-list li strong {
    color: #fff;
    margin-right: 0.5rem;
}

/* Journey map */
.journey-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.journey-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: #151515;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.journey-step:hover {
    transform: translateX(5px);
    background-color: #1a1a1a;
}

.step-number {
    background-color: #333;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Story elements */
.story-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.element {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid #333;
}

.element h3 {
    color: #fff;
    margin-bottom: 0.8rem;
}

/* Case studies */
.case-studies {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.case {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.case:hover {
    transform: translateX(5px);
    background-color: #1a1a1a;
}

.case h3 {
    color: #fff;
    margin-bottom: 0.8rem;
}

/* Implementation steps */
.implementation-steps {
    counter-reset: step;
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
}

.implementation-steps li {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    padding-left: 3rem;
    background-color: #151515;
    border-radius: 5px;
    counter-increment: step;
}

.implementation-steps li::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    background-color: #333;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.implementation-steps li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* 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: 5px;
    text-align: center;
    border-left: 3px solid #444;
}

.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;
}

.back-to-articles, .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, .next-article:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Make sure header is not sticky */
header {
    position: static !important;
} 