/* ===============================================
   mendchilgee.css — Мэндчилгээ хуудас
   =============================================== */

.greeting-wrapper {
    background: #f5f7fb;
    padding: 60px 20px;
}

.greeting-card {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(180deg, #0b2c4d, #428edb);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 360px 1fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.greeting-left {
    padding: 30px;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.greeting-left img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.greeting-right {
    padding: 40px 50px;
    color: #ffffff;
}

.greeting-right h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.greeting-right p {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
    color: #e6ebf5;
}

@media (max-width: 768px) {
    .greeting-card {
        grid-template-columns: 1fr;
    }
    .greeting-right {
        padding: 28px 24px;
    }
}