.tag-ads {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.tag-items {
    margin-top: 24px;
    width: 100%;
}


.tag-items a.tag-item {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tag-items a.tag-item .tag-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 40 / 21;
    overflow: hidden;
    transition: all 0.2s ease;
    /*background-color: #F2F2F2;*/
}

.tag-items a.tag-item .tag-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'DB Heavent', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.tag-items a:hover.tag-item .tag-thumbnail img {
    transform: scale(1.02);
}

.tag-items a.tag-item .tag-detail .tag-item-title {
    font-family: 'DB Heavent', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
    transition: all 0.2s ease;
}

.tag-items a:hover.tag-item .tag-detail .tag-item-title {
    color: #FF8300;
}

.tag-items a.tag-item .tag-detail .tag-metadata .tag-date {
    font-family: 'DB Heavent', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}