﻿/* ===== GUIDELINE PAGE ===== */
.guide-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    background: var(--tw-bg-opacity, #ffffff);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.dark .guide-card {
    background: #1f2937;
    border-color: #374151;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.guide-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.guide-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.dark .guide-title {
    color: #ffffff;
}

.guide-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

.dark .guide-text {
    color: #d1d5db;
}

.guide-note {
    margin-top: 24px;
    padding: 20px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.dark .guide-note {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
}


.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.timeline {
    list-style: none;
    padding-left: 20px;
    border-left: 3px solid #dee2e6;
}

    .timeline li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 16px;
        color: #495057;
    }

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 6px;
}
