.btn-primary {
    display: inline-block;
    background: #08214f;
    color: white;
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

/* Produktauflistung */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    transition: .3s;
}


.product-image {
    height: 200px;
    background: #eee;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image img {
    filter: grayscale(100%) brightness(0.9);
    transition: all .3s ease;
}



.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-top: 0;
    margin-bottom:10px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    background: #2d6cdf;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
}

/* Headline */
.headline-block{
    margin:80px auto;
    max-width:1200px;
    text-align:center;
}

.headline-block__topline{
    color:#888;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.headline-block__headline{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
}

.headline-block__subheadline{
    max-width:800px;
    margin:0 auto;
    font-size:20px;
    line-height:1.7;
}