/* Raffstoren Page Styles */
.raffstoren-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
    margin: -4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.raffstoren-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    grid-column: 2; /* Video in die zweite Spalte verschieben */
}

.raffstoren-video video {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.raffstoren-info {
    background: rgba(166, 111, 20, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 1; /* Text in die erste Spalte verschieben */
}

.raffstoren-info h2 {
    color: rgba(166, 111, 20, 1);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.raffstoren-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .raffstoren-grid {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem;
        grid-template-columns: 1fr;
    }
    
    .raffstoren-video,
    .raffstoren-info {
        grid-column: 1; /* Im mobilen Layout alles in eine Spalte */
    }
}