/* SECTION: NEWS */ #newsletter .box, #social-media .box { align-items: flex-start; } #newsletter { flex-basis: 22rem; flex-grow: 64; } #social-media { flex-basis: 16rem; flex-grow: 1; flex-shrink: 1; } .form-container { position: relative; width: 100%; } .form { display: flex; flex-direction: column; flex-wrap: nowrap; gap: 1rem; } #newsletter-signup-form-mail-address { min-width: 18rem; } @media only screen and (max-width: 1000px) { #newsletter-signup-form-mail-address { min-width: 14rem; } } .form-feedback { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: center; } .form-feedback .centertext { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 0.5rem; } .form-feedback-wait { color: var(--color-blue); } .form-feedback-success { color: var(--color-green); } .form-feedback-failure { color: var(--color-red); } /* SECTION: RECOMMENDATIONS */ .card-list { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; align-items: stretch; gap: 1rem; } .card-list .card { flex-basis: calc(50% - 0.5rem); flex-grow: 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 1rem; max-width: 32rem; padding: 1rem; border-radius: 2rem; background-color: var(--color-bg-light); } .card-list .card img { align-self: center; width: 4rem; } .card-list .card .text { align-self: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0.5rem; text-align: left; } .card-list .card .text .title { color: var(--color-white); font-weight: bold; } .card-list .card:hover .text .title { text-decoration: underline; } .card-list .card .text .description { color: var(--color-gray); }