.comic-weekly h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1f2937;
}

/* 曜日タブ */
.weekly-day-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}
.weekly-day-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    padding: 10px 4px 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}
.weekly-day-tab:hover {
    color: #374151;
    background: #f9fafb;
}
.weekly-day-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}
.weekly-day-tab-label {
    font-size: 1.1rem;
}
.weekly-day-tab-count {
    font-size: 0.7rem;
    font-weight: 400;
    color: #9ca3af;
}
.weekly-day-tab.active .weekly-day-tab-count {
    color: #60a5fa;
}

/* サイトフィルタ */
.weekly-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.weekly-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.weekly-filter-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.weekly-filter-btn.active {
    background: #2563eb;
    color: #fff;
}
.weekly-filter-count {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* グリッド */
.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

/* カード */
.weekly-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s;
}
.weekly-card:hover {
    transform: translateY(-2px);
}
.weekly-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
}
.weekly-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.weekly-card-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.7rem;
    color: #9ca3af;
}
.weekly-card-site {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px 6px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.65rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weekly-card-title {
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.weekly-card-authors {
    font-size: 0.68rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .weekly-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    .weekly-card-title {
        font-size: 0.72rem;
    }
}
