﻿/* === TANITIM KARTLARI - ORGANİZASYON UYUMLU === */

.promo-card {
    margin: 20px auto;
    display: flex;
    background-color: #e0f3e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 80, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
    width: 80%;
}

    .promo-card img {
        width: 50%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
        border: none;
    }

.promo-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #e0f3e8;
    padding: 10px 0;
}

.promo-title {
    background-color: #2f7a45;
    color: #fff;
    padding: 15px 20px;
    font-size: 1.0rem;
    font-weight: 650;
    width: auto;
    min-width: 100px;
    margin: 5px 10px;
    border-radius: 0px 10px 0px 0px;
    font-size: 1.1 rem;
}

.promo-description {
    background-color: #e0f3e8;
    color: #2f4f2f;
    padding: 10px;
    font-size: 1.0 rem;
    line-height: 1.6;
    height: auto;
    width: 90%;
    margin: 5px 10px;
    border-radius: 0px 10px 0px 0px;
    text-align:justify;
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    .promo-card {
        flex-direction: column;
        align-items: stretch;
        width: 95%;
    }

        .promo-card img {
            width: 100%;
            height: 220px;
        }

    .promo-text {
        width: 100%;
        padding: 10px 0;
    }

    .promo-title,
    .promo-description {
        padding: 12px 15px;
        font-size: 1.1rem;
        width:90%;
        text-align:center;
    }

    .promo-description {
        font-size: 0.95rem;
    }
}
