/* v1.0.4: emoji + smaller title font */
.tci-wrapper{
  background:#eaf8f0;
  border-radius:16px;
  padding:16px;
  margin:26px 0;
  box-shadow: inset 0 0 0 1px rgba(24,180,107,0.06);
}

.tci-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.tci-header::before,
.tci-header::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #a8e0c3;
  margin: 0 10px;
}

.tci-emoji {
  margin-right: 6px;
}

.tci-title {
  margin: 0;
  font-size: 18px; /* smaller */
  font-weight: 800;
  color: #1f2d24;
  white-space: nowrap;
}

.tci-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width:600px){
  .tci-grid{ gap:10px; }
}

.tci-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.tci-image{
  aspect-ratio:16/9;
  overflow:hidden;
}
.tci-image img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.tci-meta{
  padding:12px;
}
.tci-post-title{
  margin:0;
  font-size:15px; /* reduced */
  font-weight:700;
  color:#121212;
  line-height:1.35;
}
.tci-link{text-decoration:none;color:inherit}
.tci-link:focus{outline:2px solid #18b46b; outline-offset:3px;}
