/* Publications Shortcode (Cards) */
.obs-last-publications {
    display: flex;
    gap: 2.4rem;
    margin: 3rem 0;
    overflow-x: auto;
    padding-bottom: 1rem; /* Space for scrollbar if needed */
}
.obs-pub-card {
    flex: 0 0 234px;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: 1.6rem;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
    border-radius: 8px;
    padding-bottom: 2rem;
}

.obs-pub-image {
    aspect-ratio: 4 / 3;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

div.obs-last-publications a.obs-pub-card {
    text-decoration: none;
}

.obs-pub-card h3.obs-pub-title {
    margin: 0;
    padding: 0 2rem;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.176px;
}

.obs-pub-card .obs-pub-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0 2rem;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.154px;

    .restricted-icon {
        color: #3c3c3c;
    }
}
