/* ========================================================================== Student Welcome Guide Reusable components for the guide landing page and topic pages. ========================================================================== */ /* ---------- Page metadata strip (topic pages) ---------- */ .guide-meta { max-width: 720px; margin: 0 auto 8px; display: flex; flex-wrap: wrap; gap: 8px 12px; font-family: 'Inter', sans-serif; font-size: 13px; color: #667085; } .guide-meta .guide-tag { display: inline-flex; align-items: center; gap: 6px; background: #F9FAFB; border: 1px solid #EAECF0; border-radius: 999px; padding: 4px 12px; white-space: nowrap; } .guide-tag.is-evergreen { color: #2D738C; } .guide-tag.is-annual { color: #B54708; background: #FFFAEB; border-color: #FEDF89; } .guide-tag.is-frequent { color: #B42318; background: #FEF3F2; border-color: #FECDCA; } /* ---------- Information boxes ---------- */ .guide-box { max-width: 720px; margin: 28px auto; border: 1px solid #EAECF0; border-left-width: 4px; border-radius: 12px; padding: 18px 20px; background: #F9FAFB; font-family: 'Inter', sans-serif; } .guide-box .guide-box-title { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: #101828; margin: 0 0 6px; } .guide-box p { font-size: 15px; line-height: 24px; color: #344054; margin: 0; } .guide-box p + p { margin-top: 8px; } .guide-box--warning { background: #FFFBFA; border-color: #FED4CB; border-left-color: #FA7850; } .guide-box--warning .guide-box-title { color: #B42318; } .guide-box--macedonia { background: #FFFAEB; border-color: #FEDF89; border-left-color: #F79009; } .guide-box--macedonia .guide-box-title { color: #B54708; } .guide-box--msos { background: #F5FAFB; border-color: #C3E0E7; border-left-color: #2D738C; } .guide-box--msos .guide-box-title { color: #2D738C; } /* ---------- Checklists ---------- */ .guide-checklist { max-width: 720px; margin: 16px auto; padding: 0; list-style: none; display: grid; gap: 10px; } .guide-checklist li { position: relative; padding-left: 34px; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 26px; color: #344054; } .guide-checklist li::before { content: "\f00c"; /* fa-check */ font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; font-size: 11px; color: #2D738C; background: #EAF3F5; border-radius: 50%; display: flex; align-items: center; justify-content: center; } /* Numbered (ordered) variant for step-by-step processes */ .guide-steps { max-width: 720px; margin: 16px auto; padding: 0; list-style: none; counter-reset: guide-step; display: grid; gap: 10px; } .guide-steps li { position: relative; padding-left: 40px; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 26px; color: #344054; } .guide-steps li::before { counter-increment: guide-step; content: counter(guide-step); position: absolute; left: 0; top: 1px; width: 26px; height: 26px; font-size: 13px; font-weight: 600; color: #FFFFFF; background: #2D738C; border-radius: 50%; display: flex; align-items: center; justify-content: center; } /* ---------- Stage timeline (journey page) ---------- */ .guide-timeline { max-width: 720px; margin: 24px auto; position: relative; padding-left: 8px; } .guide-stage { position: relative; padding: 0 0 26px 40px; border-left: 2px solid #EAECF0; } .guide-stage:last-child { border-left-color: transparent; padding-bottom: 0; } .guide-stage .guide-stage-num { position: absolute; left: -17px; top: -2px; width: 32px; height: 32px; border-radius: 50%; background: #2D738C; color: #FFFFFF; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px #FFFFFF; } .guide-stage h3 { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 600; color: #101828; margin: 2px 0 10px; } .guide-stage .guide-substage { font-weight: 600; color: #2D738C; font-size: 14px; margin: 12px 0 6px; } /* ---------- Deadline table ---------- */ .guide-table-wrap { max-width: 860px; margin: 20px auto; overflow-x: auto; } .guide-table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 15px; min-width: 640px; } .guide-table th, .guide-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #EAECF0; vertical-align: top; color: #344054; line-height: 22px; } .guide-table thead th { background: #F9FAFB; color: #101828; font-weight: 600; border-bottom: 1px solid #D0D5DD; } .guide-table tbody tr:hover { background: #FCFCFD; } .guide-table td:first-child { font-weight: 600; color: #101828; white-space: nowrap; } /* ---------- Landing hero ---------- */ .guide-landing { font-family: 'Inter', sans-serif; } .guide-landing-hero { background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); border-bottom: 1px solid #EAECF0; padding: 72px 24px 56px; text-align: center; } .guide-landing-hero .guide-eyebrow { display: inline-block; color: #2D738C; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; } .guide-landing-hero h1 { max-width: 820px; margin: 0 auto 18px; font-size: 42px; line-height: 1.15; color: #101828; } .guide-landing-hero p { max-width: 720px; margin: 0 auto 12px; font-size: 17px; line-height: 28px; color: #475467; } .guide-quote { margin: 20px 0; padding: 16px 20px; border-left: 4px solid #2D738C; background: #F5FAFB; border-radius: 0 8px 8px 0; color: #344054; font-style: italic; line-height: 26px; } .guide-linklist { list-style: none; margin: 16px 0; padding: 0; } .guide-linklist li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px solid #EAECF0; line-height: 24px; } .guide-linklist li::before { content: "\f0c1"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 9px; font-size: 13px; color: #2D738C; } .guide-linklist a { color: #2D738C; font-weight: 500; text-decoration: none; word-break: break-word; } .guide-linklist a:hover { text-decoration: underline; } .guide-landing-hero .guide-lead { max-width: 720px; margin: 0 auto 4px; font-size: 19px; line-height: 30px; color: #344054; font-weight: 500; } .guide-last-checked { margin-top: 10px; font-size: 14px; color: #667085; font-style: italic; } .guide-hero-image { max-width: 960px; margin: 28px auto 24px; width: 100%; aspect-ratio: 3 / 1; border-radius: 14px; overflow: hidden; } .guide-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; } .guide-hero-image--placeholder { display: flex; align-items: center; justify-content: center; background: #F2F4F7; border: 2px dashed #D0D5DD; color: #667085; } .guide-hero-image--placeholder span { font-size: 15px; font-weight: 500; } .guide-hero-image--placeholder i { margin-right: 8px; } /* ---------- Still need help? ---------- */ .guide-help { max-width: 860px; margin: 44px auto 0; padding-top: 28px; border-top: 1px solid #E4E7EC; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .guide-help-contact { display: flex; flex-direction: column; align-items: flex-start; } .guide-help-title { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; font-size: 20px; font-weight: 700; color: #101828; } .guide-help-title i { color: #ff6b2c; } .guide-help-contact p { margin: 0 0 16px; color: #475467; line-height: 25px; } .guide-help-email { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 8px; background: #fff; border: 1.5px solid #D0D5DD; color: #344054; font-weight: 600; text-decoration: none; transition: border-color .15s, color .15s, transform .15s; } .guide-help-email:hover { border-color: #ff6b2c; color: #ff6b2c; transform: translateY(-1px); } /* Viber community card + button */ .guide-viber { background: linear-gradient(135deg, #f3f1ff 0%, #ece8ff 100%); border: 1px solid #ddd6fe; border-radius: 14px; padding: 20px 22px; display: flex; flex-direction: column; align-items: flex-start; } .guide-viber-title { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; font-size: 17px; font-weight: 700; color: #4b3fb0; line-height: 22px; } .guide-viber-title i, .guide-viber-btn i { color: #7360F2; } .guide-viber-text { margin: 0 0 16px; color: #475467; line-height: 24px; } .guide-viber-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg, #7360F2 0%, #8f7ff7 100%); color: #fff; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 8px 20px rgba(115, 96, 242, .35); transition: transform .15s, box-shadow .15s; } .guide-viber-btn i { color: #fff; font-size: 20px; } .guide-viber-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(115, 96, 242, .45); } /* Was this page helpful? */ .guide-feedback { grid-column: 1 / -1; margin-top: 6px; padding-top: 22px; border-top: 1px solid #E4E7EC; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; } /* Ensure hidden children stay hidden even though some have their own display rule. */ .guide-feedback [hidden] { display: none !important; } .guide-feedback-q { margin: 0; font-weight: 600; color: #344054; } .guide-feedback-buttons { display: flex; gap: 10px; } .guide-feedback-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 8px; background: #fff; border: 1.5px solid #D0D5DD; color: #344054; font-weight: 600; font-size: 15px; cursor: pointer; transition: border-color .15s, color .15s, background .15s; } .guide-feedback-btn i { font-size: 13px; color: #98A2B3; } .guide-feedback-btn[data-vote="yes"]:hover { border-color: #12B76A; color: #12B76A; background: #F6FEF9; } .guide-feedback-btn[data-vote="yes"]:hover i { color: #12B76A; } .guide-feedback-btn[data-vote="no"]:hover { border-color: #F04438; color: #F04438; background: #FFFBFA; } .guide-feedback-btn[data-vote="no"]:hover i { color: #F04438; } /* Locked state after voting: dim the buttons, keep the chosen one vivid. */ .guide-feedback-btn:disabled { cursor: default; opacity: .55; } .guide-feedback-btn.is-selected { opacity: 1; color: #fff; } .guide-feedback-btn.is-selected[data-vote="yes"] { background: #12B76A; border-color: #12B76A; } .guide-feedback-btn.is-selected[data-vote="no"] { background: #F04438; border-color: #F04438; } .guide-feedback-btn.is-selected i { color: #fff; } .guide-feedback-msg { margin: 0; color: #475467; font-weight: 500; } .guide-feedback-msg a { color: #7360F2; font-weight: 600; } /* Optional comment box shown after "No". */ .guide-feedback-comment { flex-basis: 100%; margin-top: 4px; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; } .guide-feedback-comment-label { flex-basis: 100%; margin: 0; font-size: 14px; font-weight: 600; color: #344054; } .guide-feedback-comment-input { flex: 1 1 300px; max-width: 520px; padding: 10px 12px; border: 1.5px solid #D0D5DD; border-radius: 8px; font: inherit; color: #101828; resize: vertical; } .guide-feedback-comment-input:focus { outline: none; border-color: #7360F2; box-shadow: 0 0 0 3px rgba(115, 96, 242, .15); } .guide-feedback-comment-send { flex: 0 0 auto; margin: 0; padding: 11px 24px; border: none; border-radius: 8px; background: #7360F2; color: #fff; font-weight: 600; font-size: 15px; cursor: pointer; transition: background .15s, transform .15s; } .guide-feedback-comment-send:hover { background: #5f4de6; transform: translateY(-1px); } .guide-feedback-comment-send:disabled { opacity: .6; cursor: default; transform: none; } .guide-feedback-comment-thanks { flex-basis: 100%; margin: 0; color: #12B76A; font-weight: 600; } @media (max-width: 640px) { .guide-help { grid-template-columns: 1fr; } } /* ---------- Route builder ---------- */ .guide-route { max-width: 920px; margin: -36px auto 0; position: relative; background: #FFFFFF; border: 1px solid #EAECF0; border-radius: 20px; box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08); padding: 28px; } .guide-route h2 { font-size: 22px; color: #101828; margin: 0 0 4px; text-align: left; } .guide-route .guide-route-sub { color: #667085; font-size: 15px; margin: 0 0 20px; } .guide-route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; } .guide-field { display: flex; flex-direction: column; gap: 6px; } .guide-field label { font-size: 13px; font-weight: 600; color: #344054; } .guide-field select { appearance: none; -webkit-appearance: none; font-family: 'Inter', sans-serif; font-size: 15px; color: #101828; padding: 11px 36px 11px 14px; border: 1px solid #D0D5DD; border-radius: 10px; background: #FFFFFF url("data:image/svg+xml;utf8,") no-repeat right 12px center; cursor: pointer; } .guide-field select:focus { outline: none; border-color: #2D738C; box-shadow: 0 0 0 3px rgba(45,115,140,0.12); } .guide-route-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; } .guide-route-result { margin-top: 24px; border-top: 1px solid #EAECF0; padding-top: 22px; } .guide-route-result[hidden] { display: none; } .guide-route-result h3 { font-size: 19px; color: #101828; margin: 0 0 6px; } .guide-route-result .guide-route-context { color: #667085; font-size: 14px; margin: 0 0 16px; } .guide-route-result ol { list-style: none; counter-reset: guide-step; padding: 0; margin: 0; display: grid; gap: 12px; } .guide-route-result ol li { position: relative; padding-left: 40px; font-size: 16px; line-height: 25px; color: #344054; } .guide-route-result ol li::before { counter-increment: guide-step; content: counter(guide-step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; font-size: 13px; font-weight: 600; color: #FFFFFF; background: #FA7850; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .guide-route-result a { color: #2D738C; font-weight: 500; text-decoration: underline; } /* ---------- Quick links ---------- */ .guide-section { max-width: 1080px; margin: 56px auto; padding: 0 24px; } .guide-section > h2 { font-size: 26px; color: #101828; text-align: center; margin: 0 0 6px; } .guide-section > .guide-section-sub { text-align: center; color: #667085; margin: 0 0 28px; } .guide-quicklinks { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; } .guide-quicklink { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid #EAECF0; border-radius: 12px; background: #FFFFFF; color: #101828; font-weight: 500; font-size: 15px; text-decoration: none; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; } .guide-quicklink:hover { border-color: #2D738C; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,24,40,0.06); } .guide-quicklink i { color: #2D738C; font-size: 18px; width: 22px; text-align: center; } /* ---------- Notice / before-you-rely blocks on landing ---------- */ .guide-notice { max-width: 820px; margin: 0 auto; background: #FFFBFA; border: 1px solid #FED4CB; border-radius: 14px; padding: 22px 24px; } .guide-notice h3 { color: #B42318; font-size: 17px; margin: 0 0 12px; display: flex; align-items: center; gap: 10px; } .guide-notice ul { margin: 0; padding-left: 20px; color: #344054; line-height: 26px; } .guide-notice li { margin-bottom: 4px; } /* ---------- Responsive ---------- */ @media (max-width: 768px) { .guide-landing-hero { padding: 52px 20px 44px; } .guide-landing-hero h1 { font-size: 32px; } .guide-hero-image { aspect-ratio: 2 / 1; } .guide-route { margin-top: 24px; padding: 22px; border-radius: 16px; } .guide-route-actions .btn { width: 100%; text-align: center; } }