.block-post-teaser-list {
  padding: 8rem 0;
}
.post-teaser-container .post-teaser {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    display: block;
    text-decoration: none;
    padding-bottom: 5rem;
}
.post-teaser-container .post-teaser .image {
  height: 23.667rem;
}
.post-teaser-container .post-teaser img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.post-teaser-container .post-teaser .post-teaser-content {
    padding: 2rem;
}
[data-theme="dark"] .post-teaser-container .post-teaser .post-teaser-content {
    background: var(--bg-gradient-bottom);
}
.post-teaser-container .post-teaser .post-teaser-content .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.block-post-teaser-list .post-teaser .post-teaser-content .author {
    display: inline-block;
}
.post-teaser .post-teaser-content .post-meta .tag,
.post-teaser .post-teaser-content .post-meta .reading-time {
    position: relative;
    display: inline-block;
}
.post-teaser .post-teaser-content .post-meta .tag:not(:last-child):after {
    content: ',';
}
.post-teaser .post-teaser-content .post-meta .reading-time:before {
    content: ' | ';
}
.post-teaser-container .post-teaser .post-teaser-content .title {
    font-weight: var(--font-weight-semi-bold);
    height: 4.375rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-teaser-container .post-teaser .icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 3rem !important;
    margin-left: auto;
    transition: margin 0.3s ease;
}
.post-teaser-container .post-teaser:hover .icon {
    margin-right: -0.5rem;
}

/* Responsive */
@media only screen and (max-width: 1440px) {
    .block-post-teaser-list {
        padding: 6rem 0;
    }
}

@media only screen and (max-width: 1199px) {
    .post-teaser-container .row {
        --bs-gutter-y: 2rem;
    }
}

@media only screen and (max-width: 991px) {
    .block-post-teaser-list {
        padding: 4rem 0;
    }
    .post-teaser-container .post-teaser .image {
        height: 24.75rem;
    }
    .post-teaser-container .post-teaser .post-teaser-content .title {
        margin-bottom: calc(1rem + 1.25rem);
    }
    .block-post-teaser-list .btn {
        margin-top: 4rem;
    }
}