/* Daily Plate — central daily-ritual home page card */

.daily-plate {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px 24px;
    margin: 20px 0 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.daily-plate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.daily-plate-title {
    font-size: 1.15em;
    font-weight: 700;
    color: #1F2933;
    margin: 0;
}

.daily-plate-subtitle {
    font-size: 0.85em;
    color: #6B7280;
    margin: 0;
}

.daily-plate-streak {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85em;
    color: #4B5563;
    background: #F3F4F6;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.daily-plate-streak .flame {
    font-size: 1em;
}

.daily-plate-streak.zero {
    color: #9CA3AF;
    background: #F9FAFB;
}

.daily-plate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .daily-plate-grid {
        grid-template-columns: 1fr;
    }
    .daily-plate {
        padding: 16px;
    }
}

.daily-plate-slot {
    display: block;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
    position: relative;
}

.daily-plate-slot:hover {
    transform: translateY(-1px);
    border-color: #2563EB;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.daily-plate-slot.completed {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.daily-plate-slot.completed:hover {
    border-color: #22C55E;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.10);
}

.daily-plate-slot-title {
    font-size: 0.78em;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.daily-plate-slot-pick {
    font-size: 1.0em;
    font-weight: 600;
    color: #1F2933;
    line-height: 1.3;
}

.daily-plate-slot-cta {
    font-size: 0.82em;
    color: #2563EB;
    margin-top: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.daily-plate-slot.completed .daily-plate-slot-cta {
    color: #16A34A;
}

.daily-plate-slot-reason {
    font-size: 0.75em;
    font-weight: 500;
    color: #6B7280;
    background: #F3F4F6;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.daily-plate-slot.completed .daily-plate-slot-reason {
    color: #6B7280;
    background: #FFFFFF;
}

.daily-plate-check {
    color: #16A34A;
    font-size: 0.95em;
    font-weight: 700;
}
