.automart-post-card {
    --automart-post-card-accent: var(--uicolor, #ff651c);
    --automart-post-card-text: #242831;
    --automart-post-card-muted: #777b83;
    --automart-post-card-meta-bg: #f7f4ef;
    --automart-post-card-divider: #efede8;
    width: 100%;
    max-width: 425px;
    min-width: 310px;
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow: visible;
    border: 0;
    border-bottom: 3px solid var(--automart-post-card-divider);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    color: var(--automart-post-card-text);
    text-align: left;
}

.automart-post-card,
.automart-post-card * {
    box-sizing: border-box;
}

.automart-post-card:hover {
    transform: none;
}

.automart-post-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 425 / 283;
    display: block;
    overflow: visible;
    background: #eef0f2;
    flex: 1;
}

.automart-post-card__media::before {
    display: none;
}

.automart-post-card__image-link {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.automart-post-card__image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all 500ms ease;
    object-fit: cover;
    align-items: center;
    justify-content: center;
}

.automart-post-card__image-layer--primary {
    z-index: 2;
}

.automart-post-card__image-layer--secondary {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.automart-post-card:hover .automart-post-card__image-link--has-hover-image .automart-post-card__image-layer--primary,
.automart-post-card:focus-within .automart-post-card__image-link--has-hover-image .automart-post-card__image-layer--primary {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.automart-post-card:hover .automart-post-card__image-link--has-hover-image .automart-post-card__image-layer--secondary,
.automart-post-card:focus-within .automart-post-card__image-link--has-hover-image .automart-post-card__image-layer--secondary {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.automart-post-card__media img,
.automart-post-card__image {
    object-fit: cover;
    object-position: center;
    transition: transform .2s ease;
}

.automart-post-card:hover .automart-post-card__media img,
.automart-post-card:hover .automart-post-card__image {
    transform: scale(1.035);
}

.automart-post-card:hover .automart-post-card__image-link--has-hover-image .automart-post-card__image-layer img,
.automart-post-card:hover .automart-post-card__image-link--has-hover-image .automart-post-card__image {
    transform: none;
}

.automart-post-card__media--empty .automart-post-card__image-link {
    background:
        linear-gradient(135deg, rgba(255, 101, 28, .1), transparent 48%),
        #eef0f2;
}

.automart-post-card__date {
    position: absolute;
    z-index: 3;
    bottom: 0px;
    left: 28px;
    width: 80px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--automart-post-card-accent);
    color: #ffffff;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.automart-post-card__date-day {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.03em;
}

.automart-post-card__date-month {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.automart-post-card__meta {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 16px 7px 16px;
    overflow: hidden;
    background: var(--automart-post-card-meta-bg);
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

.automart-post-card__meta-item {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
}

.automart-post-card__meta-item i {
    flex: 0 0 auto;
    color: var(--automart-post-card-accent);
    font-size: 14px;
}

.automart-post-card__meta-item span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.automart-post-card__category:hover,
.automart-post-card__category:focus-visible {
    color: var(--automart-post-card-text);
}

.automart-post-card__content {
    padding: 18px 18px 26px;
}

.automart-post-card__title {
    width: 100%;
    font-weight: 500;
    text-align: right;
}

.automart-post-card__title a:hover,
.automart-post-card__title a:focus-visible {
    color: var(--automart-post-card-accent);
}

.automart-post-card__excerpt {
    width: 100%;
    font-weight: 400;
}

.automart-post-card__read-more,
.automart-post-card .automart-post-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    border: 0;
    background: transparent;
    color: var(--uicolor);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: color .2s ease;
    flex-direction: row-reverse;
    cursor: pointer;
}

.automart-post-card__read-more i {
    color: #242831;
    font-size: 15px;
    transition: color .2s ease, transform .2s ease;
}

.automart-post-card__read-more:hover,
.automart-post-card__read-more:focus-visible,
.automart-post-card .automart-post-card__read-more:hover,
.automart-post-card .automart-post-card__read-more:focus-visible {
    color: var(--automart-post-card-accent);
}

.automart-post-card__read-more:hover i,
.automart-post-card__read-more:focus-visible i {
    color: var(--automart-post-card-accent);
    transform: translateX(-3px);
}

.automart-post-card__title a:focus-visible,
.automart-post-card__category:focus-visible,
.automart-post-card__read-more:focus-visible,
.automart-post-card__image-link:focus-visible {
    outline: 2px solid var(--automart-post-card-accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .automart-post-card__image-layer {
        transition-duration: 1ms;
    }
}

@media (max-width: 767px) {
    .automart-post-card {
    min-width: 250px;
    }

    .automart-post-card__date {
        left: 28px;
        width: 78px;
        height: 74px;
    }
}

@media (max-width: 420px) {
    .automart-post-card__date {
        left: 20px;
        width: 72px;
        height: 70px;
    }

    .automart-post-card__date-day {
        font-size: 26px;
    }

    .automart-post-card__meta {
        gap: 10px;
        font-size: 12px;
    }

    .automart-post-card__title {
        font-size: 21px;
    }

    .automart-post-card__excerpt {
        margin-top: 16px;
        font-size: 15px;
    }
}