:root {
	--out-box-a-background-hover: #172033;
}

[data-theme="dark"] {
	--out-box-a-background-hover: #5b8def;
}

.out-box-content {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 30px;
}

/* Seitentitel */
.title {
	text-align: center;
}

@font-face {
    font-family: 'LobsterTwo';
    src: url('../lib/fonts/Lobster_Two/LobsterTwo.woff2') format('woff2'),
        url('../lib/fonts/Lobster_Two/LobsterTwo.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

.title h1 {
	font-family: 'LobsterTwo';
	display: inline-block;
	padding: 0.5rem;
	background: linear-gradient(45deg, var(--color-invert), #f595b8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0;
}


/* Hinweisbereich */
.info-box {
    position: relative;
    margin: 30px 0 70px;
    padding: 25px 30px;
    background: linear-gradient(120deg, rgba(123, 176, 255, 0.35), rgba(255, 255, 255, 0.15));
    border-left: 3px solid #5b8def;
	color: var(--color-invert);
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.7;
}

.info-box strong {
    display: block;
    color: #417eff;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}


/* Kategorie-Bereich */
.categories {
    position: relative;
    padding-top: 20px;
}

.category-header {
    max-width: 750px;
    margin-bottom: 45px;
}

.category-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header h1::before {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #5b8def;
}


.category-description {
    color: #647084;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Navigation */
.navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #e4e8ef;
}

.navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    text-decoration: none;
	color: var(--color-invert);
    font-weight: 600;
    border: 1px solid #b1b1b163;
    border-radius: 100px;
    background: transparent;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.navigation a::after {
    content: "→";
    margin-left: 10px;
    opacity: .5;
    transition: transform .25s ease;
}


.navigation a:hover {
    background: var(--out-box-a-background-hover);
    color: #fff;
    border-color: #172033;
}


.navigation a:hover::after {
    transform: translateX(5px);
    opacity: 1;
}