.pg-popular {
    margin: 0;
}

.pg-popular__section + .pg-popular__section {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
}

.pg-popular__heading {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.pg-popular__list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pg-popular__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.pg-popular__item:hover {
    background-color: #fafafa;
    border-color: rgba(222, 113, 13, 0.48);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.pg-popular__image-link {
    display: block;
    width: 100%;
    overflow: visible;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.pg-popular__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-popular__image:hover {
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pg-popular__image--empty {
    min-height: 90px;
}

.pg-popular__content,
.pg-popular__text {
    min-width: 0;
}

.pg-popular__title {
    display: inline-block;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--link-color, #1d7989);
    text-decoration: none;
}

.pg-popular__title:hover,
.pg-popular__title:focus-visible {
    color: var(--link-hover-color, #de710d);
    text-decoration: underline;
}

.pg-popular__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.3rem;
    font-size: 0.76rem;
    line-height: 1.25;
    opacity: 0.68;
}

.pg-popular--image-first .pg-popular__image-link {
    order: 1;
    margin-bottom: 1rem;
}

.pg-popular--image-first .pg-popular__content {
    order: 2;
}

.pg-popular--title-first .pg-popular__content {
    order: 1;
}

.pg-popular--title-first .pg-popular__image-link {
    order: 2;
    margin-top: 10px;
}

