﻿.agency-list {
    padding: 60px 20px;
 
    color: #fff;
}

.title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

/* لیست */
.list-wrap {
    max-width: 1000px;
    margin: auto;
}

/* آیتم */
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #1e293b;
    gap: 20px;
    transition: 0.3s;text-align:right
}

    .list-item:hover {
        transform: translateX(-10px);
    }

/* متن */
.text {
    flex: 1;
}

    .text h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .text p {
        color: #383838;
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.8;
    }

    .text a {
        color: #38bdf8;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
    }

        .text a:hover {
            color: #0ea5e9;
        }

/* تصویر */
.image {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

    .image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: 0.4s;
    }

.list-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .list-item {
        flex-direction: column;
        text-align: center;
    }

    .image {
        width: 100%;
        height: 200px;
    }
}