#article {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

#article-class {
    text-align: left;
}

#article-images {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

#article-images img {
    width: 48%;
    border-radius: 20px;
    object-fit: cover;
}

.services p {
    text-align: center;
}

.services ul {
    font-size: 28px;
}

.services li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ccc;
    padding: 4px 0;
}

.price_name {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.price_value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
}


@media (max-width: 768px) {
    #article-class ul {
        font-size: 18px;
        padding: inherit;
    }

    #article-class li {
        flex-direction: column;
        align-items: center;
    }

    .price_name {
        max-width: 100%;
        white-space: normal;
        margin-bottom: 4px;
    }

    .price_value {
        min-width: auto;
        text-align: left;
        font-weight: 600;
    }
}
