Partner werden: Sponsoring-Argumente & Werbekanäle
Überarbeitete Seite /partner-werden mit Argument-Karten (sponsor-arguments) und einer Übersicht der Werbekanäle (sponsor-channels) aus data/partner-werden.json, inkl. zugehöriger Icons. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HGzc6GhWhmLJt1jC2q1SRZ
This commit is contained in:
@@ -595,6 +595,192 @@
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
/* === sponsor-arguments === */
|
||||
.sponsor-arguments__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 2.5rem 3rem;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.sponsor-arguments__item {
|
||||
display: flex;
|
||||
gap: 1.25rem;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.sponsor-arguments__icon {
|
||||
flex-shrink: 0;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
background: var(--clr-accent);
|
||||
border-radius: 8px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 1.1rem;
|
||||
color: #fff;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.sponsor-arguments__title {
|
||||
font-family: var(--ff-heading);
|
||||
font-size: var(--fs-675);
|
||||
text-transform: uppercase;
|
||||
line-height: var(--lh-heading);
|
||||
margin: 0 0 0.5rem;
|
||||
}
|
||||
|
||||
.sponsor-arguments__text {
|
||||
color: var(--clr-text-muted);
|
||||
font-size: var(--fs-500);
|
||||
line-height: var(--lh-body);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sponsor-arguments__grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* === sponsor-channels === */
|
||||
.sponsor-channels > .container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.sponsor-channels__intro {
|
||||
max-width: 65ch;
|
||||
margin-inline: auto;
|
||||
margin-top: 1rem;
|
||||
color: var(--clr-text-muted);
|
||||
}
|
||||
|
||||
.sponsor-channels__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.5rem;
|
||||
margin-top: 2.5rem;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.sponsor-channels__card {
|
||||
background: var(--clr-glass-bg);
|
||||
border: 1px solid var(--clr-glass-border);
|
||||
border-top: 3px solid var(--clr-accent);
|
||||
border-radius: var(--radius-card);
|
||||
padding: 2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
text-align: left;
|
||||
transition: background var(--transition), box-shadow var(--transition);
|
||||
}
|
||||
|
||||
.sponsor-channels__card:hover {
|
||||
background: rgb(255 255 255 / 0.07);
|
||||
box-shadow: 0 8px 32px rgb(0 0 0 / 0.35);
|
||||
}
|
||||
|
||||
.sponsor-channels__head {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.sponsor-channels__kicker {
|
||||
font-family: var(--ff-body);
|
||||
font-size: var(--fs-300);
|
||||
font-weight: var(--fw-bold);
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: var(--clr-text-muted);
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
.sponsor-channels__icon {
|
||||
width: 2.75rem;
|
||||
height: 2.75rem;
|
||||
background: var(--clr-accent);
|
||||
border-radius: 8px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 1.25rem;
|
||||
color: #fff;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.sponsor-channels__title {
|
||||
font-family: var(--ff-heading);
|
||||
font-size: var(--fs-700);
|
||||
text-transform: uppercase;
|
||||
line-height: var(--lh-heading);
|
||||
margin: 0 0 0.75rem;
|
||||
}
|
||||
|
||||
.sponsor-channels__desc {
|
||||
color: var(--clr-text-muted);
|
||||
font-size: var(--fs-500);
|
||||
line-height: var(--lh-body);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.sponsor-channels__divider {
|
||||
border: none;
|
||||
border-top: 1px solid var(--clr-glass-border);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
.sponsor-channels__features {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.625rem;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sponsor-channels__features li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.625rem;
|
||||
font-size: var(--fs-500);
|
||||
color: var(--clr-text);
|
||||
}
|
||||
|
||||
.sponsor-channels__check {
|
||||
flex-shrink: 0;
|
||||
font-size: 1rem;
|
||||
color: var(--clr-accent);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sponsor-channels__grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.sponsor-channels__title {
|
||||
font-size: var(--fs-700);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 769px) and (max-width: 992px) {
|
||||
.sponsor-channels__grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.sponsor-channels__card:last-child:nth-child(odd) {
|
||||
grid-column: 1 / -1;
|
||||
max-width: 50%;
|
||||
margin-inline: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* === persons (Ansprechpartner-Visitenkarten) === */
|
||||
.persons > .container {
|
||||
text-align: center;
|
||||
|
||||
Reference in New Issue
Block a user