.Blok_03_teasers {
    padding: 20px 20px 80px 20px;
    max-width: 1250px;
    margin: 0 auto;
    background-color: #000000;
}

.teasers-section {
    border-top: 1px solid rgba(164, 178, 164, 0.15);
    padding-top: 60px;
}

.teasers-section h2 {
    font-family: 'Playfair Display', serif;
    color: #a4b2a4;
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.teasers-grid {
    /*
    display: flex;
    gap: 40px;
    */
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.teaser-item {
    flex: 1;
    background: linear-gradient(135deg, #050808 0%, #0a0f0f 100%);
    border-left: 3px solid #a4b2a4;
    padding: 30px;
}

.teaser-item h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.teaser-item p {
    font-family: 'Lora', serif;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.teaser-link {
    font-family: 'Lora', serif;
    color: #a4b2a4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.teaser-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .teasers-grid { flex-direction: column; gap: 30px; display: flex;}
}
