/* Voice and Tone article specific styles */

/* Article layout */
.article-content {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* Make sure header is not sticky */
header {
    position: static !important;
}

/* Hero graphic */
.hero-graphic {
    margin: 2rem 0 3rem;
    border-radius: 8px;
    overflow: hidden;
}

/* SVG animations */
.voices-element {
    opacity: 0;
    animation: fadeIn 0.8s 0.2s forwards ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.brand-circle {
    animation: pulse 4s infinite ease-in-out;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    animation: draw 2s forwards ease-in-out, pulse 4s 2s infinite ease-in-out;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes pulse {
    0% { stroke-width: 2; stroke-opacity: 0.8; }
    50% { stroke-width: 4; stroke-opacity: 1; }
    100% { stroke-width: 2; stroke-opacity: 0.8; }
}

/* Introduction styling */
.introduction {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d0d0d0;
    border-left: 3px solid #6A3093;
    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;
}

/* Comparison graphic */
.comparison-graphic {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Voice questions */
.voice-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.question-card {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    border-left: 3px solid #6A3093;
}

.question-card:hover {
    transform: translateY(-5px);
    background-color: #191919;
}

.question-number {
    background-color: #6A3093;
    color: #fff;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.question-content h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.question-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Voice Chart */
.voice-chart {
    margin: 2rem 0;
}

.voice-characteristic {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #6A3093;
}

.voice-characteristic h3 {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 1.3rem;
}

.highlight {
    color: #A044FF;
}

.voice-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.do, .dont {
    padding: 1.2rem;
    border-radius: 5px;
}

.do {
    background-color: rgba(106, 48, 147, 0.15);
    border-left: 3px solid #6A3093;
}

.dont {
    background-color: rgba(255, 74, 74, 0.15);
    border-left: 3px solid #FF4A4A;
}

.do h4, .dont h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.do h4 {
    color: #A044FF;
}

.dont h4 {
    color: #FF4A4A;
}

.do p, .dont p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 0;
}

/* Tone matrix */
.tone-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.tone-scenario {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #A044FF;
}

.tone-scenario h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.tone-scenario p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tone-example {
    background-color: rgba(160, 68, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.tone-example p {
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 0;
}

/* Case studies */
.case-studies {
    margin: 2rem 0;
}

.case {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #6A3093;
}

.case h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.case p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.case ul {
    margin: 1rem 0;
}

.case li {
    color: #bbb;
    margin-bottom: 0.5rem;
}

/* Implementation steps */
.implementation-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    background-color: #6A3093;
    color: #fff;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pitfalls */
.pitfalls {
    margin: 2rem 0;
}

.pitfall {
    background-color: #151515;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #A044FF;
}

.pitfall h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.pitfall p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pitfall strong {
    color: #A044FF;
}

/* 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 #6A3093;
    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) {
    .voice-questions, .voice-examples, .tone-matrix {
        grid-template-columns: 1fr;
    }
    
    .article-nav {
        flex-direction: column;
    }
} 