.idx-wrap {
max-width: 1100px;
margin: 0 auto;
padding: 2rem 0 3rem;
} .idx-hero {
display: grid;
grid-template-columns: 1fr 1fr;
border: 1px solid #252525;
border-radius: 8px;
overflow: hidden;
text-decoration: none;
margin-bottom: 1rem;
transition: border-color 0.2s ease;
}
.idx-hero:hover { border-color: #444; }
.idx-hero-img { background: #0d0d1a; min-height: 260px; overflow: hidden; }
.idx-hero-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.idx-hero-img--empty {
display: flex; align-items: center; justify-content: center; min-height: 260px;
}
.idx-hero-img--empty .ti { font-size: 48px; color: #333; }
.idx-hero-body {
padding: 2rem;
background: #0d0d0d;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.idx-hero-foot {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1.25rem;
}
.idx-title--hero {
font-size: 22px !important;
font-weight: bold !important;
color: #f0f0f0 !important;
line-height: 1.3;
margin: 10px 0 12px !important;
}
.idx-excerpt {
font-size: 15px;
color: #999;
line-height: 1.65;
margin: 0;
}
.idx-read-more {
font-size: 14px;
color: #00b4ff;
display: flex;
align-items: center;
gap: 4px;
white-space: nowrap;
} .idx-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.idx-card {
display: flex;
flex-direction: column;
border: 1px solid #252525;
border-radius: 8px;
overflow: hidden;
text-decoration: none;
background: #0d0d0d;
transition: border-color 0.2s ease;
}
.idx-card:hover { border-color: #444; }
.idx-card-img { overflow: hidden; }
.idx-card-img img { width: 100%; height: 130px; object-fit: cover; display: block; }
.idx-card-body {
padding: 16px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 10px;
}
.idx-card-excerpt {
font-size: 14px;
color: #888;
line-height: 1.6;
margin: 4px 0 0;
}
.idx-title {
font-size: 16px !important;
font-weight: bold !important;
color: #e8e8e8 !important;
line-height: 1.35;
margin: 8px 0 0 !important;
}
.idx-meta {
font-size: 13px;
color: #666;
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.idx-meta .ti { font-size: 13px; } .idx-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
padding: 4px 9px;
border-radius: 4px;
border: 1px solid #2a2a2a;
color: #888;
background: #111;
}
.idx-badge .ti { font-size: 13px; }
.idx-badge--release,
.idx-badge--releases,
.idx-badge--pieces      { border-color: #0f6e56; color: #5DCAA5; background: #040f0b; }
.idx-badge--essay,
.idx-badge--essays,
.idx-badge--development,
.idx-badge--dev         { border-color: #534AB7; color: #AFA9EC; background: #08071a; }
.idx-badge--experiment,
.idx-badge--experiments { border-color: #993C1D; color: #F0997B; background: #100604; }
.idx-badge--presentation,
.idx-badge--presentations { border-color: #185FA5; color: #85B7EB; background: #040c14; }
.idx-badge--performance,
.idx-badge--events      { border-color: #854F0B; color: #EF9F27; background: #0f0700; }
.idx-badge--news,
.idx-badge--listen      { border-color: #3B6D11; color: #97C459; background: #050b02; }
.idx-badge--view        { border-color: #534AB7; color: #AFA9EC; background: #08071a; }
.idx-badge--read        { border-color: #185FA5; color: #85B7EB; background: #040c14; } @media (max-width: 768px) {
.idx-hero { grid-template-columns: 1fr; }
.idx-hero-img, .idx-hero-img img { height: 200px; min-height: 200px; }
.idx-grid { grid-template-columns: 1fr; }
}