.calendar-preview { padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); transform: rotate(1deg); }
.calendar-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.calendar-top span { padding: 5px 10px; border-radius: 999px; color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, var(--surface)); font-size: 11px; font-weight: 800; }
.calendar-days, .calendar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.calendar-days { padding: 18px 0 10px; color: var(--muted); text-align: center; font-size: 11px; }
.calendar-grid i { height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-soft); }
.calendar-grid i.booked { background: color-mix(in srgb, var(--orange) 18%, var(--surface)); }
.calendar-grid i.active { background: linear-gradient(135deg, var(--orange), var(--blue)); }
.appointment-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 15px; border-radius: 14px; background: var(--surface-soft); }
.appointment-row > span { width: 10px; height: 42px; border-radius: 99px; background: var(--green); }
.appointment-row strong, .appointment-row small { display: block; }
.appointment-row small { color: var(--muted); }
.sector-grid, .system-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sector-grid div, .system-grid div { display: grid; place-items: center; min-height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); font-weight: 800; text-align: center; }
.appointment-process { grid-template-columns: repeat(4, 1fr); }
.related-section { padding-top: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: grid; gap: 7px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); transition: transform .2s ease, border-color .2s ease; }
.related-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.related-card span, .related-card small { color: var(--orange); font-weight: 800; }
.related-card strong { font-size: 17px; }
@media (max-width: 980px) { .sector-grid, .system-grid, .appointment-process { grid-template-columns: repeat(2, 1fr); } .related-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .calendar-preview { transform: none; padding: 16px; } .sector-grid, .system-grid, .appointment-process { grid-template-columns: 1fr; } }

