Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. /**
  2. * Welcome — bacheca attività attive
  3. */
  4. .welcome-bacheca {
  5. --fest-orange: #f58220;
  6. --fest-orange-soft: #ff9a2e;
  7. --fest-purple: #602d91;
  8. --fest-navy: #15265c;
  9. --fest-text: #1a2744;
  10. --fest-text-muted: #4a5568;
  11. --fest-surface: #eef1f7;
  12. --fest-card: #ffffff;
  13. --fest-radius: 1.15rem;
  14. --fest-shadow: 0 4px 24px rgba(21, 38, 92, 0.08), 0 1px 3px rgba(21, 38, 92, 0.06);
  15. width: 100%;
  16. max-width: 72rem;
  17. margin-inline: auto;
  18. padding: 0 0.75rem 2.5rem;
  19. font-family: "Plus Jakarta Sans", "Public Sans", system-ui, sans-serif;
  20. color: var(--fest-text);
  21. }
  22. .misc-wrapper.misc-wrapper--welcome-bacheca {
  23. text-align: start;
  24. align-items: flex-start;
  25. justify-content: flex-start;
  26. padding: 1rem 0 2rem;
  27. max-width: 100%;
  28. min-block-size: auto;
  29. background: transparent;
  30. }
  31. html.welcome-bacheca-page,
  32. html.welcome-bacheca-page body {
  33. background: #f4eef8;
  34. }
  35. /*
  36. * Prova colorazione sfondo — varianti:
  37. * default (nessun attributo) = colorato Fest
  38. * data-bg="soft" = più tenue
  39. * data-bg="bold" = più saturo
  40. */
  41. .welcome-bacheca__bg {
  42. --bg-warm: #fff6ee;
  43. --bg-mid: #f3ebf8;
  44. --bg-cool: #e6edf8;
  45. position: fixed;
  46. inset: 0;
  47. z-index: -1;
  48. overflow: hidden;
  49. pointer-events: none;
  50. background: linear-gradient(
  51. 145deg,
  52. var(--bg-warm) 0%,
  53. var(--bg-mid) 38%,
  54. var(--bg-cool) 100%
  55. );
  56. }
  57. .welcome-bacheca__bg::before {
  58. content: "";
  59. position: absolute;
  60. inset: 0;
  61. background:
  62. radial-gradient(ellipse 75% 55% at 8% 18%, rgba(245, 130, 32, 0.38) 0%, transparent 58%),
  63. radial-gradient(ellipse 70% 50% at 95% 82%, rgba(96, 45, 145, 0.32) 0%, transparent 55%),
  64. radial-gradient(ellipse 55% 40% at 55% 0%, rgba(21, 38, 92, 0.14) 0%, transparent 50%),
  65. radial-gradient(ellipse 45% 35% at 72% 42%, rgba(245, 130, 32, 0.12) 0%, transparent 48%);
  66. pointer-events: none;
  67. }
  68. .welcome-bacheca__bg::after {
  69. content: "";
  70. position: absolute;
  71. inset: 0;
  72. background: linear-gradient(
  73. 118deg,
  74. rgba(245, 130, 32, 0.07) 0%,
  75. transparent 32%,
  76. transparent 58%,
  77. rgba(96, 45, 145, 0.09) 78%,
  78. rgba(21, 38, 92, 0.06) 100%
  79. );
  80. pointer-events: none;
  81. }
  82. .welcome-bacheca__bg[data-bg="soft"] {
  83. --bg-warm: #faf8fc;
  84. --bg-mid: #f4f2f8;
  85. --bg-cool: #eef1f8;
  86. }
  87. .welcome-bacheca__bg[data-bg="soft"]::before {
  88. opacity: 0.55;
  89. }
  90. .welcome-bacheca__bg[data-bg="bold"] {
  91. --bg-warm: #ffe8d4;
  92. --bg-mid: #ecd8f5;
  93. --bg-cool: #d8e4f8;
  94. }
  95. .welcome-bacheca__bg[data-bg="bold"]::before {
  96. background:
  97. radial-gradient(ellipse 80% 60% at 5% 15%, rgba(245, 130, 32, 0.55) 0%, transparent 55%),
  98. radial-gradient(ellipse 75% 55% at 98% 88%, rgba(96, 45, 145, 0.48) 0%, transparent 52%),
  99. radial-gradient(ellipse 50% 40% at 50% 5%, rgba(21, 38, 92, 0.22) 0%, transparent 48%);
  100. }
  101. .welcome-bacheca__bg-stripe {
  102. position: absolute;
  103. top: 0;
  104. left: 0;
  105. right: 0;
  106. height: 6px;
  107. z-index: 2;
  108. background: linear-gradient(
  109. 90deg,
  110. var(--fest-orange) 0%,
  111. var(--fest-purple) 50%,
  112. var(--fest-navy) 100%
  113. );
  114. box-shadow: 0 3px 16px rgba(96, 45, 145, 0.25);
  115. }
  116. .welcome-bacheca__bg-pattern {
  117. position: absolute;
  118. inset: 0;
  119. opacity: 0.55;
  120. background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 4L52 28L28 52L4 28Z' stroke='%23f58220' stroke-opacity='.22' stroke-width='.7' fill='none'/%3E%3Cpath d='M28 12L44 28L28 44L12 28Z' stroke='%23602d91' stroke-opacity='.18' stroke-width='.55' fill='none'/%3E%3Ccircle cx='28' cy='28' r='1.35' fill='%2315265c' fill-opacity='.15'/%3E%3C/svg%3E");
  121. background-size: 56px 56px;
  122. mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  123. }
  124. .welcome-bacheca__bg-glow {
  125. position: absolute;
  126. border-radius: 50%;
  127. filter: blur(80px);
  128. will-change: transform;
  129. mix-blend-mode: multiply;
  130. }
  131. .welcome-bacheca__bg-glow--orange {
  132. width: min(58vw, 520px);
  133. height: min(58vw, 520px);
  134. top: -14%;
  135. right: -10%;
  136. background: rgba(245, 130, 32, 0.45);
  137. mix-blend-mode: normal;
  138. }
  139. .welcome-bacheca__bg-glow--purple {
  140. width: min(54vw, 460px);
  141. height: min(54vw, 460px);
  142. bottom: -12%;
  143. left: -8%;
  144. background: rgba(96, 45, 145, 0.38);
  145. mix-blend-mode: normal;
  146. }
  147. .welcome-bacheca__bg-glow--navy {
  148. width: min(44vw, 400px);
  149. height: min(44vw, 400px);
  150. top: 42%;
  151. left: 48%;
  152. transform: translate(-50%, -50%);
  153. background: rgba(21, 38, 92, 0.18);
  154. filter: blur(100px);
  155. mix-blend-mode: normal;
  156. }
  157. /* Masthead (logo + bacheca eventi) */
  158. .welcome-bacheca__masthead {
  159. margin-bottom: 2rem;
  160. padding: 1.35rem 1.35rem 1.5rem;
  161. border-radius: calc(var(--fest-radius) + 0.15rem);
  162. background: rgba(255, 255, 255, 0.9);
  163. backdrop-filter: blur(14px);
  164. border: 1px solid rgba(255, 255, 255, 0.95);
  165. box-shadow: 0 8px 32px rgba(21, 38, 92, 0.09);
  166. }
  167. .welcome-bacheca__masthead-row {
  168. display: flex;
  169. flex-wrap: wrap;
  170. align-items: center;
  171. justify-content: space-between;
  172. gap: 1rem;
  173. margin-bottom: 1.35rem;
  174. padding-bottom: 1.25rem;
  175. border-bottom: 1px solid rgba(21, 38, 92, 0.08);
  176. }
  177. .welcome-bacheca__brand {
  178. max-width: min(200px, 50vw);
  179. flex-shrink: 0;
  180. }
  181. .welcome-bacheca__logo {
  182. display: block;
  183. width: 100%;
  184. height: auto;
  185. max-height: 3.25rem;
  186. object-fit: contain;
  187. object-position: left center;
  188. }
  189. .welcome-bacheca__masthead-actions {
  190. display: flex;
  191. flex-wrap: wrap;
  192. gap: 0.5rem;
  193. }
  194. .welcome-bacheca__masthead-body {
  195. max-width: 40rem;
  196. }
  197. .welcome-bacheca__btn {
  198. display: inline-flex;
  199. align-items: center;
  200. justify-content: center;
  201. gap: 0.35rem;
  202. padding: 0.5rem 1rem;
  203. font-size: 0.875rem;
  204. font-weight: 600;
  205. border-radius: 0.5rem;
  206. text-decoration: none;
  207. border: 1px solid transparent;
  208. transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  209. }
  210. .welcome-bacheca__btn--ghost {
  211. color: var(--fest-navy);
  212. background: #fff;
  213. border-color: rgba(21, 38, 92, 0.2);
  214. }
  215. .welcome-bacheca__btn--ghost:hover {
  216. color: var(--fest-navy);
  217. background: #fff;
  218. border-color: var(--fest-navy);
  219. }
  220. .welcome-bacheca__btn--primary {
  221. color: #fff;
  222. background: linear-gradient(135deg, var(--fest-orange) 0%, var(--fest-orange-soft) 100%);
  223. box-shadow: 0 3px 12px rgba(245, 130, 32, 0.3);
  224. }
  225. .welcome-bacheca__btn--primary:hover {
  226. color: #fff;
  227. box-shadow: 0 4px 16px rgba(245, 130, 32, 0.38);
  228. }
  229. .welcome-bacheca__eyebrow {
  230. display: inline-flex;
  231. align-items: center;
  232. gap: 0.45rem;
  233. margin: 0 0 0.65rem;
  234. font-size: 0.75rem;
  235. font-weight: 700;
  236. letter-spacing: 0.12em;
  237. text-transform: uppercase;
  238. color: var(--fest-purple);
  239. }
  240. .welcome-bacheca__live-dot {
  241. width: 0.5rem;
  242. height: 0.5rem;
  243. border-radius: 50%;
  244. background: #22c55e;
  245. box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  246. animation: welcome-pulse 2s ease-in-out infinite;
  247. }
  248. @keyframes welcome-pulse {
  249. 0%, 100% { opacity: 1; transform: scale(1); }
  250. 50% { opacity: 0.65; transform: scale(0.92); }
  251. }
  252. .welcome-bacheca__title {
  253. font-size: clamp(1.35rem, 4vw, 1.85rem);
  254. font-weight: 800;
  255. color: var(--fest-navy);
  256. margin: 0 0 0.5rem;
  257. line-height: 1.15;
  258. letter-spacing: -0.03em;
  259. }
  260. .welcome-bacheca__lead {
  261. font-size: 1rem;
  262. line-height: 1.6;
  263. color: var(--fest-text-muted);
  264. margin: 0;
  265. max-width: 32rem;
  266. }
  267. /* Board */
  268. .welcome-bacheca__board {
  269. margin-bottom: 1rem;
  270. }
  271. .welcome-bacheca__board-head {
  272. display: flex;
  273. align-items: center;
  274. justify-content: space-between;
  275. gap: 1rem;
  276. margin-bottom: 1.15rem;
  277. padding: 0 0.15rem;
  278. }
  279. .welcome-bacheca__board-title {
  280. display: flex;
  281. align-items: center;
  282. gap: 0.4rem;
  283. margin: 0;
  284. font-size: 1rem;
  285. font-weight: 700;
  286. color: var(--fest-navy);
  287. }
  288. .welcome-bacheca__board-title i {
  289. color: var(--fest-orange);
  290. font-size: 1.2rem;
  291. }
  292. /* Grid eventi */
  293. .welcome-bacheca__grid {
  294. display: grid;
  295. grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  296. gap: 1.25rem;
  297. padding: 0;
  298. margin: 0;
  299. }
  300. @media (min-width: 900px) {
  301. .welcome-bacheca__grid {
  302. grid-template-columns: repeat(2, 1fr);
  303. }
  304. .welcome-bacheca__card--featured {
  305. grid-column: span 2;
  306. }
  307. .welcome-bacheca__card--featured .welcome-bacheca__card-cover {
  308. min-height: 11rem;
  309. }
  310. .welcome-bacheca__card--featured .welcome-bacheca__card-cover-logo {
  311. width: 5.5rem;
  312. height: 5.5rem;
  313. }
  314. }
  315. @media (min-width: 1200px) {
  316. .welcome-bacheca__grid {
  317. grid-template-columns: repeat(3, 1fr);
  318. }
  319. .welcome-bacheca__card--featured {
  320. grid-column: span 2;
  321. }
  322. }
  323. .welcome-bacheca__card {
  324. position: relative;
  325. min-width: 0;
  326. }
  327. .welcome-bacheca__card-hit {
  328. display: flex;
  329. flex-direction: column;
  330. width: 100%;
  331. height: 100%;
  332. padding: 0;
  333. text-align: left;
  334. border: none;
  335. border-radius: var(--fest-radius);
  336. background: #fff;
  337. box-shadow:
  338. 0 1px 2px rgba(21, 38, 92, 0.05),
  339. 0 10px 28px rgba(21, 38, 92, 0.08);
  340. cursor: pointer;
  341. overflow: hidden;
  342. transition:
  343. transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
  344. box-shadow 0.22s ease;
  345. }
  346. .welcome-bacheca__card-hit:hover {
  347. transform: translateY(-6px) scale(1.01);
  348. box-shadow:
  349. 0 4px 8px rgba(21, 38, 92, 0.06),
  350. 0 20px 40px rgba(21, 38, 92, 0.14);
  351. }
  352. .welcome-bacheca__card-hit:focus-visible {
  353. outline: 2px solid var(--fest-orange);
  354. outline-offset: 3px;
  355. }
  356. .welcome-bacheca__card-pin {
  357. position: absolute;
  358. top: 0.65rem;
  359. right: 0.75rem;
  360. z-index: 3;
  361. width: 2rem;
  362. height: 2rem;
  363. display: flex;
  364. align-items: center;
  365. justify-content: center;
  366. border-radius: 50%;
  367. background: #fff;
  368. color: var(--fest-orange);
  369. font-size: 1.1rem;
  370. box-shadow: 0 4px 12px rgba(21, 38, 92, 0.15);
  371. transform: rotate(12deg);
  372. transition: transform 0.2s ease;
  373. }
  374. .welcome-bacheca__card-hit:hover .welcome-bacheca__card-pin {
  375. transform: rotate(0deg) scale(1.08);
  376. }
  377. .welcome-bacheca__card-cover {
  378. position: relative;
  379. display: flex;
  380. align-items: center;
  381. justify-content: center;
  382. min-height: 8.5rem;
  383. background: linear-gradient(
  384. 135deg,
  385. var(--card-accent, var(--fest-orange)) 0%,
  386. color-mix(in srgb, var(--card-accent, var(--fest-orange)) 55%, var(--fest-purple)) 100%
  387. );
  388. overflow: hidden;
  389. }
  390. .welcome-bacheca__card-cover-img {
  391. position: absolute;
  392. inset: 0;
  393. width: 100%;
  394. height: 100%;
  395. object-fit: cover;
  396. opacity: 0.55;
  397. }
  398. .welcome-bacheca__card-cover-shade {
  399. position: absolute;
  400. inset: 0;
  401. background: linear-gradient(
  402. 180deg,
  403. rgba(21, 38, 92, 0.05) 0%,
  404. rgba(21, 38, 92, 0.35) 100%
  405. );
  406. }
  407. .welcome-bacheca__card-cover-logo {
  408. position: relative;
  409. z-index: 1;
  410. width: 4.25rem;
  411. height: 4.25rem;
  412. display: flex;
  413. align-items: center;
  414. justify-content: center;
  415. border-radius: 1rem;
  416. background: #fff;
  417. box-shadow: 0 8px 24px rgba(21, 38, 92, 0.2);
  418. overflow: hidden;
  419. }
  420. .welcome-bacheca__card-cover-logo img {
  421. width: 82%;
  422. height: 82%;
  423. object-fit: contain;
  424. }
  425. .welcome-bacheca__card-avatar {
  426. display: flex;
  427. align-items: center;
  428. justify-content: center;
  429. width: 100%;
  430. height: 100%;
  431. font-size: 1.1rem;
  432. font-weight: 800;
  433. color: #fff;
  434. background: linear-gradient(135deg, var(--card-accent, var(--fest-orange)), var(--fest-purple));
  435. }
  436. .welcome-bacheca__card-content {
  437. display: flex;
  438. flex-direction: column;
  439. flex: 1;
  440. gap: 0.5rem;
  441. padding: 1.1rem 1.15rem 1.2rem;
  442. }
  443. .welcome-bacheca__card-meta {
  444. display: flex;
  445. flex-wrap: wrap;
  446. align-items: center;
  447. gap: 0.4rem;
  448. }
  449. .welcome-bacheca__card-badge {
  450. font-size: 0.65rem;
  451. font-weight: 700;
  452. letter-spacing: 0.05em;
  453. text-transform: uppercase;
  454. color: #0d7a4a;
  455. background: rgba(13, 122, 74, 0.12);
  456. padding: 0.2rem 0.5rem;
  457. border-radius: 2rem;
  458. }
  459. .welcome-bacheca__card-chip {
  460. display: inline-flex;
  461. align-items: center;
  462. gap: 0.25rem;
  463. font-size: 0.72rem;
  464. font-weight: 600;
  465. color: var(--fest-purple);
  466. background: rgba(96, 45, 145, 0.08);
  467. padding: 0.2rem 0.5rem;
  468. border-radius: 2rem;
  469. }
  470. .welcome-bacheca__card-title {
  471. margin: 0;
  472. font-size: 1.15rem;
  473. font-weight: 800;
  474. color: var(--fest-navy);
  475. line-height: 1.25;
  476. letter-spacing: -0.02em;
  477. }
  478. .welcome-bacheca__card-desc {
  479. margin: 0;
  480. font-size: 0.88rem;
  481. line-height: 1.5;
  482. color: var(--fest-text-muted);
  483. flex: 1;
  484. }
  485. .welcome-bacheca__card-desc--muted {
  486. font-style: italic;
  487. opacity: 0.85;
  488. }
  489. .welcome-bacheca__card-cta {
  490. display: inline-flex;
  491. align-items: center;
  492. gap: 0.25rem;
  493. margin-top: 0.35rem;
  494. font-size: 0.85rem;
  495. font-weight: 700;
  496. color: var(--fest-orange);
  497. transition: gap 0.15s ease;
  498. }
  499. .welcome-bacheca__card-hit:hover .welcome-bacheca__card-cta {
  500. gap: 0.45rem;
  501. }
  502. .welcome-bacheca__card-cta i {
  503. font-size: 1.15rem;
  504. }
  505. /* Empty */
  506. .welcome-bacheca__empty {
  507. text-align: center;
  508. padding: 3.5rem 1.5rem;
  509. background: rgba(255, 255, 255, 0.92);
  510. border-radius: var(--fest-radius);
  511. border: 1px dashed rgba(21, 38, 92, 0.12);
  512. box-shadow: var(--fest-shadow);
  513. }
  514. .welcome-bacheca__empty-icon {
  515. width: 4rem;
  516. height: 4rem;
  517. margin: 0 auto 1rem;
  518. display: flex;
  519. align-items: center;
  520. justify-content: center;
  521. border-radius: 50%;
  522. background: linear-gradient(135deg, rgba(245, 130, 32, 0.15), rgba(96, 45, 145, 0.12));
  523. color: var(--fest-purple);
  524. font-size: 1.75rem;
  525. }
  526. .welcome-bacheca__empty-title {
  527. font-size: 1.15rem;
  528. font-weight: 700;
  529. color: var(--fest-navy);
  530. margin: 0 0 0.5rem;
  531. }
  532. .welcome-bacheca__empty-text {
  533. color: var(--fest-text-muted);
  534. margin: 0 0 1.25rem;
  535. max-width: 22rem;
  536. margin-inline: auto;
  537. }
  538. /* Footer */
  539. .welcome-bacheca__footer {
  540. margin-top: 2.5rem;
  541. font-size: 0.8rem;
  542. color: #6b7280;
  543. text-align: center;
  544. }
  545. /* Modal */
  546. .welcome-bacheca__modal {
  547. border-radius: 1rem;
  548. border: none;
  549. box-shadow: 0 16px 48px rgba(21, 38, 92, 0.18);
  550. }
  551. .welcome-bacheca__modal-head {
  552. display: flex;
  553. align-items: center;
  554. gap: 1rem;
  555. flex: 1;
  556. min-width: 0;
  557. }
  558. .welcome-bacheca__modal-media {
  559. flex-shrink: 0;
  560. width: 3.25rem;
  561. height: 3.25rem;
  562. display: flex;
  563. align-items: center;
  564. justify-content: center;
  565. border-radius: 0.65rem;
  566. background: rgba(21, 38, 92, 0.06);
  567. overflow: hidden;
  568. }
  569. .welcome-bacheca__modal-logo {
  570. width: 100%;
  571. height: 100%;
  572. object-fit: contain;
  573. padding: 0.2rem;
  574. }
  575. .welcome-bacheca__modal-avatar {
  576. display: flex;
  577. align-items: center;
  578. justify-content: center;
  579. width: 100%;
  580. height: 100%;
  581. font-weight: 700;
  582. font-size: 0.9rem;
  583. color: #fff;
  584. background: linear-gradient(135deg, var(--card-accent, var(--fest-orange)), var(--fest-purple));
  585. }
  586. .welcome-bacheca__modal-title {
  587. font-size: 1.1rem;
  588. font-weight: 700;
  589. color: var(--fest-navy);
  590. }
  591. .welcome-bacheca__modal-desc {
  592. font-size: 0.85rem;
  593. color: var(--fest-text-muted);
  594. line-height: 1.4;
  595. }
  596. .welcome-bacheca__modal-hint {
  597. font-size: 0.8rem;
  598. font-weight: 600;
  599. text-transform: uppercase;
  600. letter-spacing: 0.05em;
  601. color: var(--fest-text-muted);
  602. margin-bottom: 0.75rem;
  603. }
  604. .welcome-bacheca__modal-actions {
  605. display: flex;
  606. flex-direction: column;
  607. gap: 0.5rem;
  608. }
  609. .welcome-bacheca__action {
  610. display: flex;
  611. align-items: center;
  612. gap: 0.85rem;
  613. width: 100%;
  614. padding: 0.75rem 0.85rem;
  615. text-align: left;
  616. text-decoration: none;
  617. color: var(--fest-text);
  618. background: #f8f9fc;
  619. border: 1px solid rgba(21, 38, 92, 0.08);
  620. border-radius: 0.65rem;
  621. transition: background 0.15s ease, border-color 0.15s ease;
  622. }
  623. button.welcome-bacheca__action {
  624. font: inherit;
  625. }
  626. .welcome-bacheca__action:not(.is-disabled):hover {
  627. background: #fff;
  628. border-color: rgba(21, 38, 92, 0.16);
  629. color: var(--fest-navy);
  630. }
  631. .welcome-bacheca__action.is-disabled {
  632. opacity: 0.55;
  633. cursor: not-allowed;
  634. }
  635. .welcome-bacheca__action strong {
  636. display: block;
  637. font-size: 0.9rem;
  638. font-weight: 600;
  639. color: var(--fest-navy);
  640. }
  641. .welcome-bacheca__action small {
  642. display: block;
  643. font-size: 0.78rem;
  644. color: var(--fest-text-muted);
  645. margin-top: 0.1rem;
  646. }
  647. .welcome-bacheca__action-icon {
  648. flex-shrink: 0;
  649. width: 2.25rem;
  650. height: 2.25rem;
  651. display: flex;
  652. align-items: center;
  653. justify-content: center;
  654. border-radius: 0.5rem;
  655. font-size: 1.15rem;
  656. background: rgba(21, 38, 92, 0.08);
  657. color: var(--fest-navy);
  658. }
  659. .welcome-bacheca__action-icon--orange {
  660. background: rgba(245, 130, 32, 0.15);
  661. color: #c45f00;
  662. }
  663. .welcome-bacheca__action-icon--purple {
  664. background: rgba(96, 45, 145, 0.12);
  665. color: var(--fest-purple);
  666. }
  667. .welcome-bacheca__action-icon--navy {
  668. background: rgba(21, 38, 92, 0.1);
  669. color: var(--fest-navy);
  670. }
  671. @media (max-width: 575.98px) {
  672. .welcome-bacheca__masthead {
  673. padding: 1.1rem 1rem 1.25rem;
  674. }
  675. .welcome-bacheca__masthead-row {
  676. margin-bottom: 1rem;
  677. padding-bottom: 1rem;
  678. }
  679. .welcome-bacheca__masthead-actions {
  680. width: 100%;
  681. }
  682. .welcome-bacheca__masthead-actions .welcome-bacheca__btn {
  683. flex: 1;
  684. }
  685. .welcome-bacheca__grid {
  686. grid-template-columns: 1fr;
  687. }
  688. .welcome-bacheca__card--featured {
  689. grid-column: span 1;
  690. }
  691. }