/* GHWL Design Studio - Reusable Components Stylesheet */

/* Speaker Card Component */
.component-speaker-card {
    display: flex;
    flex-direction: column;
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #FFFFFF;
}

.speaker-image-wrapper {
    width: 100%;
    height: 380px;
    background: #334155;
    position: relative;
    overflow: hidden;
}

.speaker-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-details {
    padding: 20px;
    background: linear-gradient(180deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,1) 100%);
    border-bottom: 4px solid var(--primary-color);
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.speaker-title {
    font-size: 0.9rem;
    color: #94A3B8;
}

/* Dialogue Bubble Component */
.component-dialogue-bubble {
    background: #E2FDCB;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    max-width: 450px;
    box-shadow: var(--shadow-sm);
    color: #1E293B;
}

.component-dialogue-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #E2FDCB transparent;
    display: block;
    width: 0;
}

.dialogue-speaker-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dialogue-text {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
}

/* CTA Block Component */
.component-cta-block {
    background: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1E293B;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 16px;
}

.cta-button-mock {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
}

/* Timeline Component */
.component-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
}

.component-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--secondary-color);
}

.timeline-step {
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.timeline-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1E293B;
}

.timeline-desc {
    font-size: 0.85rem;
    color: #64748B;
}

/* Checklist Component */
.component-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
}

.checklist-icon {
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Statistics Card Component */
.component-stat-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 600;
}