/* =====================================
   Info Card
   ===================================== */

.info-card {

    width: 100%;

    margin: 40px 0;

    padding: 30px;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 12px;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);

}


/* =====================================
   Header
   ===================================== */

.info-header {

    margin-bottom: 25px;

    border-bottom: 3px solid #333;

    padding-bottom: 12px;

}


.info-header h2 {

    margin: 0;

}


/* =====================================
   Bild
   ===================================== */

.info-image {

    text-align: center;

    margin-bottom: 25px;

}


.info-card.has-image .info-image img {

    display: block;

    width: 100%;

    max-width: 350px;

    height: auto;

    margin: 0 auto;

    border-radius: 12px;

    object-fit: cover;

}


/* =====================================
   Text
   ===================================== */

.info-text {

    font-size: 0.95rem;

    line-height: 1.7;

    margin-bottom: 25px;

}


/* =====================================
   Buttons
   ===================================== */

.info-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

}


.info-button {

    display: inline-block;

    padding: 10px 22px;

    background: #333;

    color: #fff;

    text-decoration: none;

    border-radius: 8px;

    transition: all .2s ease;

}


.info-button:hover {

    background: #555;

    transform: translateY(-2px);

}


/* =====================================
   Responsive
   ===================================== */

@media (max-width: 768px) {

    .info-card {

        padding: 20px;

        margin: 20px 0;

    }

    .info-card.has-image .info-image img {

        max-width: 100%;

    }

    .info-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .info-button {

        text-align: center;

    }

}
