Changes for page Prepare
Last modified by Veronika Kocher on Friday, 18 Sep 2026 16:47
From version 26.1
edited by Veronika Kocher
on Monday, 31 Aug 2026 13:11
on Monday, 31 Aug 2026 13:11
Change comment:
There is no comment for this version
To version 28.1
edited by Veronika Kocher
on Monday, 31 Aug 2026 13:31
on Monday, 31 Aug 2026 13:31
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,12 +1,13 @@ 1 1 {{html clean="false"}} 2 + 2 2 <style> 3 - .arsn- enable {4 + .arsn-phase { 4 4 max-width: 1400px; 5 5 margin: 0 auto; 6 6 color: #322f2b; 7 7 } 8 8 9 - .arsn- enable * {10 + .arsn-phase * { 10 10 box-sizing: border-box; 11 11 } 12 12 ... ... @@ -22,9 +22,139 @@ 22 22 box-shadow: 0 1px 3px rgba(0,0,0,.035); 23 23 } 24 24 26 + .arsn-hero-image { 27 + height: 138px; 28 + overflow: hidden; 29 + border-radius: 11px 11px 0 0; 30 + background: #f1eee9; 31 + } 32 + 33 + .arsn-hero-image img { 34 + width: 100%; 35 + height: 100%; 36 + object-fit: cover; 37 + display: block; 38 + } 39 + 40 + .arsn-progress { 41 + position: relative; 42 + display: grid; 43 + grid-template-columns: repeat(3, minmax(0,1fr)); 44 + gap: 14px; 45 + margin: 0 0 26px 0; 46 + padding: 4px 0 0 0; 47 + } 48 + 49 + .arsn-progress:before { 50 + content: ""; 51 + position: absolute; 52 + top: 21px; 53 + left: 9%; 54 + right: 9%; 55 + height: 2px; 56 + background: #e9cfc2; 57 + z-index: 0; 58 + } 59 + 60 + .arsn-step { 61 + position: relative; 62 + z-index: 1; 63 + text-align: center; 64 + } 65 + 66 + .arsn-step-dot { 67 + width: 14px; 68 + height: 14px; 69 + margin: 0 auto 7px auto; 70 + border-radius: 50%; 71 + border: 3px solid #fff; 72 + box-shadow: 0 0 0 1px #d5cfc7; 73 + background: #d8d2ca; 74 + } 75 + 76 + .arsn-step.active .arsn-step-dot { 77 + background: #e94b13; 78 + box-shadow: 0 0 0 1px #e94b13; 79 + } 80 + 81 + .arsn-step.done .arsn-step-dot { 82 + background: #8c837a; 83 + box-shadow: 0 0 0 1px #8c837a; 84 + } 85 + 86 + .arsn-step-label { 87 + font-size: 11px; 88 + font-weight: 700; 89 + letter-spacing: .06em; 90 + color: #746d65; 91 + } 92 + 93 + .arsn-step.active .arsn-step-label { 94 + color: #7d4a37; 95 + } 96 + 97 + .arsn-step-desc { 98 + margin-top: 3px; 99 + font-size: 13px; 100 + color: #6a655e; 101 + } 102 + 103 + .arsn-focus-grid { 104 + display: grid; 105 + grid-template-columns: repeat(3, minmax(230px,1fr)); 106 + gap: 12px; 107 + } 108 + 109 + .arsn-focus-group { 110 + padding: 13px 14px; 111 + background: rgba(255,255,255,.52); 112 + border: 1px solid #cfe8ef; 113 + border-radius: 8px; 114 + } 115 + 116 + .arsn-focus-group strong { 117 + display: block; 118 + margin-bottom: 6px; 119 + color: #2f5661; 120 + } 121 + 122 + .arsn-focus-group ul { 123 + margin: 0 0 0 17px; 124 + padding: 0; 125 + color: #365862; 126 + } 127 + 128 + .arsn-focus-group li { 129 + margin: 4px 0; 130 + } 131 + 132 + .arsn-outcome-grid { 133 + display: grid; 134 + grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); 135 + gap: 10px; 136 + } 137 + 138 + .arsn-outcome { 139 + position: relative; 140 + padding: 12px 13px 12px 36px; 141 + background: #fcfbf8; 142 + border: 1px solid #e3ded6; 143 + border-radius: 8px; 144 + color: #4f4a44; 145 + } 146 + 147 + .arsn-outcome:before { 148 + content: "✓"; 149 + position: absolute; 150 + left: 13px; 151 + top: 10px; 152 + color: #e94b13; 153 + font-weight: 800; 154 + } 155 + 25 25 .arsn-area-grid { 26 26 display: grid; 27 - grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));158 + grid-template-columns: repeat(auto-fit, minmax(310px,1fr)); 28 28 gap: 18px; 29 29 align-items: stretch; 30 30 } ... ... @@ -48,17 +48,29 @@ 48 48 } 49 49 50 50 .arsn-area-label { 51 - display: inline-block; 182 + display: inline-flex; 183 + align-items: center; 184 + gap: 7px; 52 52 padding: 5px 8px; 53 53 margin-bottom: 9px; 54 54 border-radius: 5px; 55 - background: #f3efe8; 56 - color: #4f4a44; 57 57 font-size: 12px; 58 58 font-weight: 700; 59 59 letter-spacing: .065em; 60 60 } 61 61 193 + .arsn-area-number { 194 + opacity: .72; 195 + } 196 + 197 + .arsn-area-action { 198 + margin-left: 2px; 199 + font-weight: 600; 200 + opacity: .74; 201 + letter-spacing: .02em; 202 + text-transform: none; 203 + } 204 + 62 62 .arsn-area h4 { 63 63 font-size: 19px; 64 64 line-height: 1.3; ... ... @@ -99,334 +99,245 @@ 99 99 gap: 12px; 100 100 } 101 101 102 - @media (max-width: 700px) { 103 - .arsn-phase-grid, 245 + .arsn-related-grid { 246 + display: grid; 247 + grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); 248 + gap: 8px; 249 + } 250 + 251 + .arsn-related-link { 252 + display: block; 253 + padding: 9px 10px; 254 + border: 1px solid #e9e4dc; 255 + border-left: 3px solid #e94b13; 256 + border-radius: 6px; 257 + background: #fffdf9; 258 + color: #252321; 259 + text-decoration: none; 260 + font-weight: 600; 261 + } 262 + 263 + .arsn-related-link:hover, 264 + .arsn-related-link:focus { 265 + background: #fff7f1; 266 + text-decoration: none; 267 + } 268 + 269 + .arsn-tip { 270 + padding: 12px 15px; 271 + border: 1px solid #c7e5ed; 272 + border-left: 4px solid #21b6d7; 273 + background: #eaf6f9; 274 + border-radius: 7px; 275 + color: #365e68; 276 + font-size: 13px; 277 + } 278 + 279 + .arsn-tip strong { 280 + color: #2d5661; 281 + } 282 + 283 + @media (max-width: 800px) { 104 104 .arsn-focus-grid { 105 - grid-template-columns: 1fr !important;285 + grid-template-columns: 1fr; 106 106 } 107 107 } 288 + 289 + @media (max-width: 700px) { 290 + .arsn-progress:before { 291 + display: none; 292 + } 293 + .arsn-progress { 294 + grid-template-columns: 1fr; 295 + gap: 8px; 296 + } 297 + .arsn-step { 298 + text-align: left; 299 + display: grid; 300 + grid-template-columns: 24px 1fr; 301 + column-gap: 8px; 302 + align-items: center; 303 + } 304 + .arsn-step-dot { 305 + margin: 0; 306 + } 307 + .arsn-step-desc { 308 + grid-column: 2; 309 + } 310 + } 108 108 </style> 109 109 110 -<div class="arsn- enable">313 +<div class="arsn-phase"> 111 111 112 - <!-- HERO: IVORY + ORANGE LEITAKZENT --> 113 - <section class="arsn-card" style=" 114 - margin:0 0 18px 0; 115 - padding:20px 22px 21px 22px; 116 - border:1px solid #e3ded6; 117 - border-left:6px solid #e94b13; 118 - background:#fcfbf8; 119 - "> 120 - <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:6px;"> 121 - PROJECT PHASE 1 · ENABLE 315 + <section class="arsn-card" style="margin:0 0 18px 0;border:1px solid #e3ded6;border-left:6px solid #e94b13;background:#fcfbf8;overflow:hidden;"> 316 + <div class="arsn-hero-image"> 317 + <img src="https://xwiki.uni-ak.ac.at/bin/download/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/enable.png" alt="Enable — planning and setting up an artistic or research project" /> 122 122 </div> 123 - 124 - <h2 style="font-size:28px;line-height:1.18;margin:0 0 9px 0;color:#2c2926;"> 125 - I develop my project idea — I plan, fund & set up my project 126 - </h2> 127 - 128 - <p style="font-size:15px;line-height:1.58;color:#5e5953;max-width:1080px;margin:0;"> 129 - Before active project work begins, clarify how the project will be organised, funded and supported, 130 - what materials and research outputs are expected, and how rights, responsibilities, infrastructure 131 - and data management will be handled from the start. 132 - </p> 319 + <div style="padding:18px 22px 21px 22px;"> 320 + <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:6px;">PROJECT PHASE 1 · ENABLE</div> 321 + <h2 style="font-size:28px;line-height:1.18;margin:0 0 9px 0;color:#2c2926;">I develop my project idea — I plan, fund & set up my project</h2> 322 + <p style="font-size:15px;line-height:1.58;color:#5e5953;max-width:1080px;margin:0;"> 323 + Before active project work begins, clarify how the project will be organised, funded and supported, 324 + what materials and research outputs are expected, and how rights, responsibilities, infrastructure 325 + and data management will be handled from the start. 326 + </p> 327 + </div> 133 133 </section> 134 134 135 - <!-- PHASE ORIENTATION --> 136 - <section class="arsn-phase-grid" style=" 137 - display:grid; 138 - grid-template-columns:repeat(3,minmax(210px,1fr)); 139 - gap:10px; 140 - margin:0 0 26px 0; 141 - "> 142 - <div style=" 143 - padding:12px 14px; 144 - border-radius:8px; 145 - background:#eaf6f9; 146 - border:1px solid #cfe8ef; 147 - border-top:4px solid #e94b13; 148 - "> 149 - <div class="arsn-eyebrow" style="font-size:11px;color:#3f6871;">1 · ENABLE</div> 150 - <div style="margin-top:4px;font-weight:700;color:#2f4e56;">Plan & set up</div> 330 + <div class="arsn-progress"> 331 + 332 + <div class="arsn-step active"> 333 + <div class="arsn-step-dot"></div> 334 + <div class="arsn-step-label">1 · ENABLE</div> 335 + <div class="arsn-step-desc">Plan & set up</div> 151 151 </div> 152 152 153 - <div style=" 154 - padding:12px 14px; 155 - border-radius:8px; 156 - background:#fcfbf8; 157 - border:1px solid #e3ded6; 158 - border-top:3px solid #21b6d7; 159 - "> 160 - <div class="arsn-eyebrow" style="font-size:11px;color:#77716a;">2 · WORK & MANAGE</div> 161 - <div style="margin-top:4px;color:#6a655e;">Run & document</div> 338 + <div class="arsn-step"> 339 + <div class="arsn-step-dot"></div> 340 + <div class="arsn-step-label">2 · WORK & MANAGE</div> 341 + <div class="arsn-step-desc">Run & document</div> 162 162 </div> 163 163 164 - <div style=" 165 - padding:12px 14px; 166 - border-radius:8px; 167 - background:#fcfbf8; 168 - border:1px solid #e3ded6; 169 - border-top:3px solid #38b76a; 170 - "> 171 - <div class="arsn-eyebrow" style="font-size:11px;color:#77716a;">3 · PUBLISH & SHARE</div> 172 - <div style="margin-top:4px;color:#6a655e;">Publish, preserve & hand over</div> 344 + <div class="arsn-step"> 345 + <div class="arsn-step-dot"></div> 346 + <div class="arsn-step-label">3 · PUBLISH & SHARE</div> 347 + <div class="arsn-step-desc">Publish, preserve & hand over</div> 173 173 </div> 174 - </section>349 +</div> 175 175 176 - <!-- FOCUS NOW: INFOBLUE --> 177 - <section class="arsn-card" style=" 178 - margin:0 0 29px 0; 179 - padding:19px 21px; 180 - background:#eaf6f9; 181 - border:1px solid #cfe8ef; 182 - border-left:5px solid #21b6d7; 183 - "> 351 + <section class="arsn-card" style="margin:0 0 22px 0;padding:19px 21px;background:#eaf6f9;border:1px solid #cfe8ef;border-left:5px solid #21b6d7;"> 184 184 <div class="arsn-eyebrow" style="color:#3f6871;margin-bottom:5px;">RIGHT NOW</div> 185 185 <h3 style="font-size:22px;margin:0 0 8px 0;color:#2f4e56;">What should I be focusing on now?</h3> 354 + <p style="margin:0 0 15px 0;color:#49636a;">You do not need every detail fixed before you start. You do need enough shared decisions to make the project workable, responsible and easy to continue.</p> 186 186 187 - <p style="margin:0 0 15px 0;color:#49636a;"> 188 - You do not need every detail fixed before you start. You do need enough shared decisions 189 - to make the project workable, responsible and easy to continue. 190 - </p> 356 + <div class="arsn-focus-grid"> 357 + <div class="arsn-focus-group"> 358 + <strong>Project</strong> 359 + <ul> 360 + <li>What is the scope, and who is responsible for which decisions?</li> 361 + <li>Which funding opportunities and funder requirements apply?</li> 362 + <li>What data, materials and outputs will be created, collected or reused?</li> 363 + <li>Do I need a Data Management Plan?</li> 364 + </ul> 365 + </div> 191 191 192 - <div class="arsn-focus-grid" style=" 193 - display:grid; 194 - grid-template-columns:repeat(2,minmax(310px,1fr)); 195 - gap:8px 26px; 196 - color:#364b50; 197 - "> 198 - <div>• What is the scope of the project, and who is responsible for which tasks and decisions?</div> 199 - <div>• Which funding opportunities and funder requirements apply?</div> 200 - <div>• What data, materials, documentation and artistic or research outputs will be created, collected or reused?</div> 201 - <div>• Do I need a Data Management Plan, and what should it cover?</div> 202 - <div>• Which copyright, permissions, licences or third-party rights need to be clarified early?</div> 203 - <div>• Will the project involve personal, sensitive, confidential or ethically complex materials?</div> 204 - <div>• How should files and folders be organised and named from the beginning?</div> 205 - <div>• Where will project materials be stored, how will they be backed up, and who should have access?</div> 206 - <div>• Which institutional infrastructure, services and tools are appropriate?</div> 207 - <div>• How should collaboration, shared accounts, access groups and handover responsibilities be set up?</div> 208 - <div>• What is the minimum setup needed if this is a small or low-complexity project?</div> 209 - <div>• Which decisions should be reviewed again as the project develops?</div> 367 + <div class="arsn-focus-group"> 368 + <strong>Rights & responsibilities</strong> 369 + <ul> 370 + <li>Which copyright, permissions or licences need to be clarified?</li> 371 + <li>Will personal, sensitive, confidential or ethically complex materials be involved?</li> 372 + <li>Which decisions should be documented from the beginning?</li> 373 + <li>Who will be responsible for shared accounts, access and handover?</li> 374 + </ul> 375 + </div> 376 + 377 + <div class="arsn-focus-group"> 378 + <strong>Working setup</strong> 379 + <ul> 380 + <li>How should files and folders be organised and named?</li> 381 + <li>Where will materials be stored and backed up?</li> 382 + <li>Who should have access?</li> 383 + <li>Which infrastructure, services and tools are appropriate?</li> 384 + </ul> 385 + </div> 210 210 </div> 211 211 </section> 212 212 213 - <!-- AREA INTRO --> 389 + <section style="margin:0 0 28px 0;"> 390 + <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:5px;">BY THE END OF THIS PHASE</div> 391 + <h3 style="font-size:21px;margin:0 0 10px 0;color:#35312d;">You should have a workable project setup</h3> 392 + <div class="arsn-outcome-grid"> 393 + <div class="arsn-outcome">a clear project scope and named responsibilities</div> 394 + <div class="arsn-outcome">a basic plan for data, materials and expected outputs</div> 395 + <div class="arsn-outcome">key rights, ethics and protection issues identified</div> 396 + <div class="arsn-outcome">agreed storage, backup, access and collaboration arrangements</div> 397 + </div> 398 + </section> 399 + 214 214 <div style="margin:0 0 15px 0;"> 215 215 <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:4px;">EXPLORE THIS PHASE</div> 216 216 <h3 style="font-size:24px;margin:0 0 5px 0;color:#35312d;">Four areas to get your project ready</h3> 217 - <p style="margin:0;color:#6a655e;"> 218 - Start with the area that matches what you need to decide or set up now. 219 - </p> 403 + <p style="margin:0;color:#6a655e;">Start with the area that matches what you need to decide or set up now.</p> 220 220 </div> 221 221 222 - <!-- FOUR AREAS --> 223 223 <div class="arsn-area-grid" style="margin-bottom:30px;"> 224 - 225 225 <section class="arsn-area" style="border-top:4px solid #21b6d7;"> 226 226 <div class="arsn-area-head"> 227 - <div class="arsn-area-label" style="background:#eaf6f9;color:#355f69;">START HERE</div> 409 + <div class="arsn-area-label" style="background:#eaf6f9;color:#355f69;"><span class="arsn-area-number">01</span> START HERE <span class="arsn-area-action">· Orient</span></div> 228 228 <h4>Orient yourself and choose the right level of setup</h4> 229 - <p> 230 - Use these pages if you are just starting out, unsure which topics apply, 231 - or need a practical minimum setup for a smaller project. 232 - </p> 411 + <p>Use these pages if you are just starting out, unsure which topics apply, or need a practical minimum setup for a smaller project.</p> 233 233 </div> 234 - 235 235 <div class="arsn-area-body"> 236 - <a class="arsn-topic" 237 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Get%20Started/" 238 - style="border-left:3px solid #21b6d7;"> 239 - Get Started 240 - </a> 241 - 242 - <a class="arsn-topic" 243 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Quick%20Start%20for%20Small%20Projects/" 244 - style="border-left:3px solid #21b6d7;"> 245 - Quick Start for Small Projects 246 - </a> 414 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Get%20Started/" style="border-left:3px solid #21b6d7;">Get Started</a> 415 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Quick%20Start%20for%20Small%20Projects/" style="border-left:3px solid #21b6d7;">Quick Start for Small Projects</a> 247 247 </div> 248 248 </section> 249 249 250 250 <section class="arsn-area" style="border-top:4px solid #e94b13;"> 251 251 <div class="arsn-area-head"> 252 - <div class="arsn-area-label" style="background:#f7e6dd;color:#7b4430;">PLAN & ORGANISE</div> 421 + <div class="arsn-area-label" style="background:#f7e6dd;color:#7b4430;"><span class="arsn-area-number">02</span> PLAN & ORGANISE <span class="arsn-area-action">· Decide</span></div> 253 253 <h4>Define what the project needs and how it will be organised</h4> 254 - <p> 255 - Clarify scope, responsibilities, funding conditions, expected materials and outputs, 256 - and the basic data-management approach before active work begins. 257 - </p> 423 + <p>Clarify scope, responsibilities, funding conditions, expected materials and outputs, and the basic data-management approach before active work begins.</p> 258 258 </div> 259 - 260 260 <div class="arsn-area-body"> 261 - <a class="arsn-topic" 262 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Project%20Planning%20%26%20Organisation/" 263 - style="border-left:3px solid #e94b13;"> 264 - Project Planning & Organisation 265 - </a> 266 - 267 - <a class="arsn-topic" 268 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Funding%20%26%20Funder%20Requirements/" 269 - style="border-left:3px solid #e94b13;"> 270 - Funding & Funder Requirements 271 - </a> 272 - 273 - <a class="arsn-topic" 274 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Identify%20Your%20Data%20%26%20Research%20Outputs/" 275 - style="border-left:3px solid #e94b13;"> 276 - Identify Your Data & Research Outputs 277 - </a> 278 - 279 - <a class="arsn-topic" 280 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Plan%20Your%20Data%20Management/" 281 - style="border-left:3px solid #e94b13;"> 282 - Plan Your Data Management 283 - </a> 284 - 285 - <a class="arsn-topic" 286 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/File%20Organisation%20%26%20Naming/" 287 - style="border-left:3px solid #e94b13;"> 288 - File Organisation & Naming 289 - </a> 426 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Project%20Planning%20%26%20Organisation/" style="border-left:3px solid #e94b13;">Project Planning & Organisation</a> 427 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Funding%20%26%20Funder%20Requirements/" style="border-left:3px solid #e94b13;">Funding & Funder Requirements</a> 428 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Identify%20Your%20Data%20%26%20Research%20Outputs/" style="border-left:3px solid #e94b13;">Identify Your Data & Research Outputs</a> 429 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Plan%20Your%20Data%20Management/" style="border-left:3px solid #e94b13;">Plan Your Data Management</a> 430 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/File%20Organisation%20%26%20Naming/" style="border-left:3px solid #e94b13;">File Organisation & Naming</a> 290 290 </div> 291 291 </section> 292 292 293 293 <section class="arsn-area" style="border-top:4px solid #f0aa00;"> 294 294 <div class="arsn-area-head"> 295 - <div class="arsn-area-label" style="background:#fff3d5;color:#7a5b12;">PROTECT & CLARIFY</div> 436 + <div class="arsn-area-label" style="background:#fff3d5;color:#7a5b12;"><span class="arsn-area-number">03</span> PROTECT & CLARIFY <span class="arsn-area-action">· Check</span></div> 296 296 <h4>Clarify rights, permissions, protection needs and responsibilities</h4> 297 - <p> 298 - Identify legal, ethical or data-protection issues early enough to obtain permissions, 299 - make agreements and avoid unnecessary restrictions later. 300 - </p> 438 + <p>Identify legal, ethical or data-protection issues early enough to obtain permissions, make agreements and avoid unnecessary restrictions later.</p> 301 301 </div> 302 - 303 303 <div class="arsn-area-body"> 304 - <a class="arsn-topic" 305 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Copyright%2C%20Rights%20%26%20Licences/" 306 - style="border-left:3px solid #f0aa00;"> 307 - Copyright, Rights & Licences 308 - </a> 309 - 310 - <a class="arsn-topic" 311 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Data%20Protection%20%26%20Ethics/" 312 - style="border-left:3px solid #f0aa00;"> 313 - Data Protection & Ethics 314 - </a> 441 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Copyright%2C%20Rights%20%26%20Licences/" style="border-left:3px solid #f0aa00;">Copyright, Rights & Licences</a> 442 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Data%20Protection%20%26%20Ethics/" style="border-left:3px solid #f0aa00;">Data Protection & Ethics</a> 315 315 </div> 316 316 </section> 317 317 318 318 <section class="arsn-area" style="border-top:4px solid #38b76a;"> 319 319 <div class="arsn-area-head"> 320 - <div class="arsn-area-label" style="background:#e6f3e9;color:#3f6d4b;">SET UP INFRASTRUCTURE & COLLABORATION</div> 448 + <div class="arsn-area-label" style="background:#e6f3e9;color:#3f6d4b;"><span class="arsn-area-number">04</span> SET UP INFRASTRUCTURE & COLLABORATION <span class="arsn-area-action">· Prepare</span></div> 321 321 <h4>Create a working environment the project can actually use</h4> 322 - <p> 323 - Decide where project materials live, how they are backed up and protected, 324 - which tools are appropriate and how access and collaboration will work. 325 - </p> 450 + <p>Decide where project materials live, how they are backed up and protected, which tools are appropriate and how access and collaboration will work.</p> 326 326 </div> 327 - 328 328 <div class="arsn-area-body"> 329 - <a class="arsn-topic" 330 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Storage%2C%20Backup%20%26%20Security/" 331 - style="border-left:3px solid #38b76a;"> 332 - Storage, Backup & Security 333 - </a> 334 - 335 - <a class="arsn-topic" 336 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Infrastructure%2C%20Services%20%26%20Tools/" 337 - style="border-left:3px solid #38b76a;"> 338 - Infrastructure, Services & Tools 339 - </a> 340 - 341 - <a class="arsn-topic" 342 - href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Collaboration%20Setup/" 343 - style="border-left:3px solid #38b76a;"> 344 - Collaboration Setup 345 - </a> 453 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Storage%2C%20Backup%20%26%20Security/" style="border-left:3px solid #38b76a;">Storage, Backup & Security</a> 454 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Infrastructure%2C%20Services%20%26%20Tools/" style="border-left:3px solid #38b76a;">Infrastructure, Services & Tools</a> 455 + <a class="arsn-topic" href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/Collaboration%20Setup/" style="border-left:3px solid #38b76a;">Collaboration Setup</a> 346 346 </div> 347 347 </section> 348 - 349 349 </div> 350 350 351 - <!-- NEXT PHASE: IVORY + ORANGE --> 352 - <section class="arsn-card" style=" 353 - margin:0 0 27px 0; 354 - padding:18px 20px; 355 - background:#fcfbf8; 356 - border:1px solid #e3ded6; 357 - border-left:5px solid #e94b13; 358 - "> 460 + <section class="arsn-card" style="margin:0 0 27px 0;padding:18px 20px;background:#fcfbf8;border:1px solid #e3ded6;border-left:5px solid #e94b13;"> 359 359 <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:5px;">NEXT PHASE</div> 360 360 <h3 style="font-size:21px;margin:0 0 7px 0;color:#43332d;">Continue in Work & Manage</h3> 361 - 362 - <p style="margin:0 0 13px 0;color:#68564e;line-height:1.5;"> 363 - The setup decisions made here should guide the project, but they are not fixed forever. 364 - During active project work, organise, document, secure and review how the project is actually working. 365 - </p> 366 - 367 - <a href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Work%20%26%20Manage/" 368 - class="btn btn-default" 369 - style="background:#fff7f1;border-color:#e4cabc;color:#493a34;"> 370 - Continue to Work & Manage 371 - </a> 463 + <p style="margin:0 0 13px 0;color:#68564e;line-height:1.5;">The setup decisions made here should guide the project, but they are not fixed forever. During active project work, organise, document, secure and review how the project is actually working.</p> 464 + <a href="https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Work%20%26%20Manage/" class="btn btn-default" style="background:#fff7f1;border-color:#e4cabc;color:#493a34;">Continue to Work & Manage</a> 372 372 </section> 373 373 374 - <!-- PRACTICAL RESOURCES --> 375 375 <div style="margin:0 0 13px 0;"> 376 376 <div class="arsn-eyebrow" style="color:#8a4d36;margin-bottom:4px;">USEFUL MATERIALS</div> 377 377 <h3 style="font-size:22px;margin:0 0 4px 0;color:#35312d;">Practical resources</h3> 378 - <p style="margin:0;color:#6a655e;"> 379 - Use concise guides when you need a reference, a procedure or something you can apply directly. 380 - </p> 381 381 </div> 382 382 383 383 <div class="arsn-resource-grid" style="margin-bottom:27px;"> 384 - <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #21b6d7;border-radius:9px;"> 385 - <strong style="color:#3a5d66;">Info Sheets</strong> 386 - <div style="margin-top:5px;color:#625d56;">Short reference guides for common questions and decisions.</div> 387 - </div> 388 - 389 - <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #e94b13;border-radius:9px;"> 390 - <strong style="color:#503a31;">Tutorials</strong> 391 - <div style="margin-top:5px;color:#625d56;">Step-by-step instructions for specific tasks and workflows.</div> 392 - </div> 393 - 394 - <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #38b76a;border-radius:9px;"> 395 - <strong style="color:#3f6b4b;">Checklists & Templates</strong> 396 - <div style="margin-top:5px;color:#625d56;">Reusable aids for planning, documenting and reviewing your project setup.</div> 397 - </div> 473 + <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #21b6d7;border-radius:9px;"><strong style="color:#3a5d66;">Info Sheets</strong><div style="margin-top:5px;color:#625d56;">Short reference guides for common questions and decisions.</div></div> 474 + <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #e94b13;border-radius:9px;"><strong style="color:#503a31;">Tutorials</strong><div style="margin-top:5px;color:#625d56;">Step-by-step instructions for specific tasks and workflows.</div></div> 475 + <div style="padding:15px 16px;background:#fcfbf8;border:1px solid #e3ded6;border-top:3px solid #38b76a;border-radius:9px;"><strong style="color:#3f6b4b;">Checklists & Templates</strong><div style="margin-top:5px;color:#625d56;">Reusable aids for planning, documenting and reviewing your project setup.</div></div> 398 398 </div> 399 399 400 - <!-- HELP --> 401 - <aside style=" 402 - margin:0 0 14px 0; 403 - padding:16px 18px; 404 - border:1px solid #c7e5ed; 405 - border-left:5px solid #21b6d7; 406 - background:#e5f5f9; 407 - border-radius:8px; 408 - "> 478 + <aside style="margin:0 0 14px 0;padding:16px 18px;border:1px solid #c7e5ed;border-left:5px solid #21b6d7;background:#e5f5f9;border-radius:8px;"> 409 409 <strong style="color:#2d5661;">Need help?</strong> 410 - <div style="margin-top:5px;color:#365e68;line-height:1.5;"> 411 - Not sure which requirements, services or next steps apply to your project? 412 - Contact Art & Research Services for project-specific support. 413 - </div> 480 + <div style="margin-top:5px;color:#365e68;line-height:1.5;">Not sure which requirements, services or next steps apply to your project? Contact Art & Research Services for project-specific support.</div> 414 414 </aside> 415 415 416 - <!-- RULE OF THUMB --> 417 - <aside style=" 418 - padding:16px 18px; 419 - border:1px solid #e3ded6; 420 - border-left:5px solid #e94b13; 421 - background:#fcfbf8; 422 - border-radius:8px; 423 - "> 424 - <strong style="color:#744531;">A useful rule of thumb</strong> 425 - <div style="margin-top:5px;color:#67564e;line-height:1.5;"> 426 - Plan early, document decisions, and review them as the project changes. 427 - A simple setup that is actually used is usually more effective than a complex plan that is never updated. 428 - </div> 429 - </aside> 483 + <div class="arsn-tip"><strong>Tip · A useful rule of thumb:</strong> Plan early, document decisions, and review them as the project changes. A simple setup that is actually used is usually more effective than a complex plan that is never updated.</div> 430 430 431 431 </div> 432 432 {{/html}}