.citytech-blog-card {
    border-bottom: 1px solid #e5e5e5;
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 28px;
}

.citytech-blog-card__image img,
.citytech-blog-post__banner img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.citytech-blog-card__image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.citytech-blog-card__title {
    margin-top: 0;
}

.citytech-blog-meta {
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-bottom: 14px;
}

.citytech-blog-category-list,
.citytech-blog-comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.citytech-blog-category-list li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.citytech-blog-post__banner {
    margin: 20px 0 28px;
}

.citytech-blog-post__content {
    font-size: 1.6rem;
    line-height: 1.7;
}

.citytech-blog-related-products,
.citytech-blog-comments {
    margin-top: 48px;
}

.citytech-blog-related-products .product-items {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.citytech-blog-related-products .product-item {
    margin: 0;
    width: auto;
}

.citytech-blog-comment {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.citytech-blog-comment__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 8px;
}

.citytech-blog-comment__meta time {
    color: #666;
}

.citytech-blog-comment-form {
    margin-top: 32px;
}

@media (max-width: 767px) {
    .citytech-blog-card {
        grid-template-columns: 1fr;
    }

    .citytech-blog-related-products .product-items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 479px) {
    .citytech-blog-related-products .product-items {
        grid-template-columns: 1fr;
    }
}
