/* ==========================================================================
   Empire Petroleum – Classic Vendor List ([ep_vendors_classic])
   Logo-left / details-right row layout.
   Font is intentionally left to the theme's core CSS (no font-family set).
   ========================================================================== */

.epvc-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.epvc-row {
    align-items: flex-start;
    background: #f6f7f9;
    display: flex;
    gap: 2.5rem;
    padding: 2rem;
}

/* ---- Logo column ---- */
.epvc-row__logo {
    align-items: center;
    background: #fff;
    border-radius: .25rem;
    display: flex;
    flex-shrink: 0;
    height: 120px;
    justify-content: center;
    width: 160px;
}

.epvc-row__img {
    display: block;
    max-height: 80px;
    max-width: 130px;
    object-fit: contain;
    width: auto;
}

/* ---- Details column ---- */
.epvc-row__details {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .4rem;
    min-width: 0;
}

.epvc-row__title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.epvc-row__title a {
    color: #2271b1;
    text-decoration: none;
}

.epvc-row__title a:hover {
    text-decoration: underline;
}

.epvc-row__cats {
    color: #4a4a4a;
    font-size: .95rem;
    line-height: 1.4;
    margin-bottom: .3rem;
}

.epvc-row__desc {
    color: #4a4a4a;
    line-height: 1.65;
    text-align: justify;
}

.epvc-row__desc p {
    margin: 0 0 .75em;
}
.epvc-row__desc p:last-child {
    margin-bottom: 0;
}

.epvc-row__desc a {
    color: #2271b1;
    text-decoration: none;
}
.epvc-row__desc a:hover {
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .epvc-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    .epvc-row__logo {
        height: 100px;
        width: 100%;
    }
}
